2025-09-07T06:44:35.3139528Z Current runner version: '2.328.0' 2025-09-07T06:44:35.3147065Z Runner name: 'i-0d07037e5e35aebe8' 2025-09-07T06:44:35.3147923Z Runner group name: 'Default' 2025-09-07T06:44:35.3148812Z Machine name: 'EC2AMAZ-F4P7NAP' 2025-09-07T06:44:35.3151968Z ##[group]GITHUB_TOKEN Permissions 2025-09-07T06:44:35.3154371Z Contents: read 2025-09-07T06:44:35.3155073Z Metadata: read 2025-09-07T06:44:35.3155739Z ##[endgroup] 2025-09-07T06:44:35.3158023Z Secret source: Actions 2025-09-07T06:44:35.3158760Z Prepare workflow directory 2025-09-07T06:44:35.3687936Z Prepare all required actions 2025-09-07T06:44:35.3729465Z Getting action download info 2025-09-07T06:44:35.7764560Z Download action repository 'pytorch/test-infra@main' (SHA:548a4bc624d43a01cdf165a63b041f0ae014ddbd) 2025-09-07T06:47:03.0299862Z Download action repository 'pytorch/pytorch@main' (SHA:93fb23d6fae7c4e82c4239a1033e522088742634) 2025-09-07T06:48:13.6963018Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-09-07T06:48:13.8301232Z Download action repository 'seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-09-07T06:48:14.4801897Z Getting action download info 2025-09-07T06:48:14.6081023Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-09-07T06:48:14.8562402Z Uses: pytorch/pytorch/.github/workflows/_win-test.yml@refs/heads/main (93fb23d6fae7c4e82c4239a1033e522088742634) 2025-09-07T06:48:14.8566357Z ##[group] Inputs 2025-09-07T06:48:14.8566673Z build-environment: win-vs2022-cpu-py3 2025-09-07T06:48:14.8566971Z cuda-version: cpu 2025-09-07T06:48:14.8568073Z 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-09-07T06:48:14.8569175Z sync-tag: 2025-09-07T06:48:14.8569880Z timeout-minutes: 240 2025-09-07T06:48:14.8570413Z disable-monitor: false 2025-09-07T06:48:14.8570673Z monitor-log-interval: 5 2025-09-07T06:48:14.8571043Z monitor-data-collect-interval: 1 2025-09-07T06:48:14.8571391Z ##[endgroup] 2025-09-07T06:48:14.8571796Z Complete job name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T06:48:14.9187282Z ##[group]Run git config --global core.longpaths true 2025-09-07T06:48:14.9187847Z git config --global core.longpaths true 2025-09-07T06:48:14.9188206Z git config --global core.symlinks true 2025-09-07T06:48:14.9188552Z git config --global core.ignorecase false 2025-09-07T06:48:14.9188859Z  2025-09-07T06:48:14.9189201Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-09-07T06:48:14.9189767Z # the directory on Windows and prevent GHA from checking out as reported 2025-09-07T06:48:14.9190261Z # in https://github.com/actions/checkout/issues/1018 2025-09-07T06:48:14.9190631Z git config --global core.fsmonitor false 2025-09-07T06:48:14.9216212Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:48:14.9216892Z env: 2025-09-07T06:48:14.9217100Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:14.9217355Z ##[endgroup] 2025-09-07T06:48:15.7848678Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-09-07T06:48:15.7849143Z env: 2025-09-07T06:48:15.7849345Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:15.7849573Z ##[endgroup] 2025-09-07T06:48:15.8013318Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-09-07T06:48:15.8014172Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-09-07T06:48:15.8014873Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-09-07T06:48:15.8016674Z # handle tool 2025-09-07T06:48:15.8017070Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-09-07T06:48:15.8017521Z Foreach ($process In $processes) { 2025-09-07T06:48:15.8017810Z  Try { 2025-09-07T06:48:15.8018347Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-09-07T06:48:15.8019041Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-09-07T06:48:15.8019448Z  } 2025-09-07T06:48:15.8019642Z  Catch { 2025-09-07T06:48:15.8019935Z  Write-Output "No leftover $process process, continuing" 2025-09-07T06:48:15.8020312Z  Write-Output $_ 2025-09-07T06:48:15.8020535Z  } 2025-09-07T06:48:15.8020721Z } 2025-09-07T06:48:15.8020887Z  2025-09-07T06:48:15.8021361Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-09-07T06:48:15.8021927Z # for hung processes 2025-09-07T06:48:15.8022196Z Foreach ($process In $processes) { 2025-09-07T06:48:15.8022489Z  Try { 2025-09-07T06:48:15.8022876Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-09-07T06:48:15.8023326Z  } 2025-09-07T06:48:15.8023514Z  Catch { 2025-09-07T06:48:15.8023730Z  Write-Output $_ 2025-09-07T06:48:15.8023959Z  } 2025-09-07T06:48:15.8024156Z } 2025-09-07T06:48:15.8024363Z  2025-09-07T06:48:15.8024532Z Try { 2025-09-07T06:48:15.8024772Z  # Print all the processes for debugging 2025-09-07T06:48:15.8025356Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-09-07T06:48:15.8025802Z } 2025-09-07T06:48:15.8025984Z Catch { 2025-09-07T06:48:15.8026379Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-09-07T06:48:15.8026848Z  Write-Output $_ 2025-09-07T06:48:15.8027072Z } 2025-09-07T06:48:15.8043510Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:48:15.8044089Z env: 2025-09-07T06:48:15.8044299Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:15.8044567Z ##[endgroup] 2025-09-07T06:48:16.1701496Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:48:16.1761503Z Finished 2025-09-07T06:48:16.1963070Z No leftover python process, continuing 2025-09-07T06:48:16.2406016Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-09-07T06:48:16.2406729Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:9 char:5 2025-09-07T06:48:16.2407351Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:16.2407756Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.2408244Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:16.2409097Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:16.2409691Z 2025-09-07T06:48:16.2424344Z No leftover ninja process, continuing 2025-09-07T06:48:16.2433228Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-09-07T06:48:16.2433972Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:9 char:5 2025-09-07T06:48:16.2434525Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:16.2434942Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.2435471Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:16.2436920Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:16.2437528Z 2025-09-07T06:48:16.2447594Z No leftover cl process, continuing 2025-09-07T06:48:16.2457176Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-09-07T06:48:16.2457850Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:9 char:5 2025-09-07T06:48:16.2458391Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:16.2458805Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.2459264Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:16.2460104Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:16.2460706Z 2025-09-07T06:48:16.2469779Z No leftover nvcc process, continuing 2025-09-07T06:48:16.2479619Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-09-07T06:48:16.2480277Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:9 char:5 2025-09-07T06:48:16.2480825Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:16.2481228Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.2481702Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:16.2482553Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:16.2483148Z 2025-09-07T06:48:16.2509068Z No leftover sccache process, continuing 2025-09-07T06:48:16.2518594Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-09-07T06:48:16.2519289Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:9 char:5 2025-09-07T06:48:16.2519835Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:16.2520232Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.2520785Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:16.2521616Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:16.2522224Z 2025-09-07T06:48:16.2530421Z No leftover git process, continuing 2025-09-07T06:48:16.2541216Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-09-07T06:48:16.2541938Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:9 char:5 2025-09-07T06:48:16.2542508Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T06:48:16.2542952Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.2543451Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-09-07T06:48:16.2544252Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T06:48:16.2544870Z 2025-09-07T06:48:16.3793422Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:48:16.3794313Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:48:16.3794924Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:48:16.3795393Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:21 char:6 2025-09-07T06:48:16.3795959Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:16.3796385Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.3797057Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:48:16.3797756Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:48:16.3798312Z 2025-09-07T06:48:16.3821949Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:48:16.3822791Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:48:16.3823393Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:48:16.3823841Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:21 char:6 2025-09-07T06:48:16.3824385Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:16.3824808Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.3825360Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:48:16.3826109Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:48:16.3826670Z 2025-09-07T06:48:16.3849367Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:48:16.3850245Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:48:16.3850866Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:48:16.3851324Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:21 char:6 2025-09-07T06:48:16.3851885Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:16.3852321Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.3852748Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:48:16.3853456Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:48:16.3854013Z 2025-09-07T06:48:16.3878393Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:48:16.3879266Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:48:16.3879873Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:48:16.3880334Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:21 char:6 2025-09-07T06:48:16.3880886Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:16.3881317Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.3881738Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:48:16.3882446Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:48:16.3883001Z 2025-09-07T06:48:16.3907325Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:48:16.3908240Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:48:16.3908986Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:48:16.3909449Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:21 char:6 2025-09-07T06:48:16.3909996Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:16.3910408Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.3910847Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:48:16.3911530Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:48:16.3912193Z 2025-09-07T06:48:16.3936055Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:48:16.3936990Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:48:16.3937575Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:48:16.3938041Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:21 char:6 2025-09-07T06:48:16.3938587Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:16.3939016Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.3939446Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:48:16.3940138Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:48:16.3940693Z 2025-09-07T06:48:16.3964009Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-09-07T06:48:16.3964895Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-09-07T06:48:16.3965518Z deletion. (Exception from HRESULT: 0x800703FA). 2025-09-07T06:48:16.3966069Z At C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1:21 char:6 2025-09-07T06:48:16.3966656Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T06:48:16.4026697Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:48:16.4027147Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-09-07T06:48:16.4027848Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-09-07T06:48:16.4028414Z 2025-09-07T06:48:16.5168119Z Caption CommandLine ProcessId 2025-09-07T06:48:16.5168724Z 2025-09-07T06:48:16.5169428Z System Idle Process 0 2025-09-07T06:48:16.5169864Z 2025-09-07T06:48:16.5170802Z System 4 2025-09-07T06:48:16.5171187Z 2025-09-07T06:48:16.5171675Z Registry 168 2025-09-07T06:48:16.5172758Z 2025-09-07T06:48:16.5173044Z smss.exe 408 2025-09-07T06:48:16.5173422Z 2025-09-07T06:48:16.5174052Z csrss.exe 528 2025-09-07T06:48:16.5174447Z 2025-09-07T06:48:16.5175111Z csrss.exe 604 2025-09-07T06:48:16.5175502Z 2025-09-07T06:48:16.5176212Z wininit.exe 628 2025-09-07T06:48:16.5176708Z 2025-09-07T06:48:16.5177491Z winlogon.exe winlogon.exe 676 2025-09-07T06:48:16.5177935Z 2025-09-07T06:48:16.5178573Z services.exe 748 2025-09-07T06:48:16.5178977Z 2025-09-07T06:48:16.5180240Z lsass.exe C:\Windows\system32\lsass.exe 768 2025-09-07T06:48:16.5180743Z 2025-09-07T06:48:16.5181249Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 884 2025-09-07T06:48:16.5181911Z 2025-09-07T06:48:16.5182359Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 908 2025-09-07T06:48:16.5182908Z 2025-09-07T06:48:16.5183274Z fontdrvhost.exe "fontdrvhost.exe" 932 2025-09-07T06:48:16.5183755Z 2025-09-07T06:48:16.5184124Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-09-07T06:48:16.5184587Z 2025-09-07T06:48:16.5185506Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 144 2025-09-07T06:48:16.5186035Z 2025-09-07T06:48:16.5186490Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 472 2025-09-07T06:48:16.5187057Z 2025-09-07T06:48:16.5187511Z dwm.exe "dwm.exe" 832 2025-09-07T06:48:16.5187912Z 2025-09-07T06:48:16.5188817Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 1028 2025-09-07T06:48:16.5189487Z 2025-09-07T06:48:16.5190068Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-09-07T06:48:16.5190749Z 2025-09-07T06:48:16.5191317Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1252 2025-09-07T06:48:16.5191996Z 2025-09-07T06:48:16.5192463Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1344 2025-09-07T06:48:16.5193067Z 2025-09-07T06:48:16.5194063Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1372 2025-09-07T06:48:16.5194745Z 2025-09-07T06:48:16.5195199Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1396 2025-09-07T06:48:16.5195757Z 2025-09-07T06:48:16.5196300Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-09-07T06:48:16.5196896Z 2025-09-07T06:48:16.5198723Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1476 2025-09-07T06:48:16.5200592Z 2025-09-07T06:48:16.5201066Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1496 2025-09-07T06:48:16.5201688Z 2025-09-07T06:48:16.5202185Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1564 2025-09-07T06:48:16.5202755Z 2025-09-07T06:48:16.5203360Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1628 2025-09-07T06:48:16.5204061Z 2025-09-07T06:48:16.5204528Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1728 2025-09-07T06:48:16.5205083Z 2025-09-07T06:48:16.5205544Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1736 2025-09-07T06:48:16.5206090Z 2025-09-07T06:48:16.5206594Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1744 2025-09-07T06:48:16.5207192Z 2025-09-07T06:48:16.5207709Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1848 2025-09-07T06:48:16.5208242Z 2025-09-07T06:48:16.5208735Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1884 2025-09-07T06:48:16.5209864Z 2025-09-07T06:48:16.5210463Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1892 2025-09-07T06:48:16.5211099Z 2025-09-07T06:48:16.5211604Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1968 2025-09-07T06:48:16.5212205Z 2025-09-07T06:48:16.5212699Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2032 2025-09-07T06:48:16.5213333Z 2025-09-07T06:48:16.5213917Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1368 2025-09-07T06:48:16.5214559Z 2025-09-07T06:48:16.5215188Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2072 2025-09-07T06:48:16.5215910Z 2025-09-07T06:48:16.5216557Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2092 2025-09-07T06:48:16.5217251Z 2025-09-07T06:48:16.5218120Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2272 2025-09-07T06:48:16.5218704Z 2025-09-07T06:48:16.5219266Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2296 2025-09-07T06:48:16.5220065Z 2025-09-07T06:48:16.5220542Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2316 2025-09-07T06:48:16.5221107Z 2025-09-07T06:48:16.5221605Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2408 2025-09-07T06:48:16.5222169Z 2025-09-07T06:48:16.5222566Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2652 2025-09-07T06:48:16.5223053Z 2025-09-07T06:48:16.5223554Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2740 2025-09-07T06:48:16.5224143Z 2025-09-07T06:48:16.5224611Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2748 2025-09-07T06:48:16.5225168Z 2025-09-07T06:48:16.5225720Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2756 2025-09-07T06:48:16.5226281Z 2025-09-07T06:48:16.5226852Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2764 2025-09-07T06:48:16.5227586Z 2025-09-07T06:48:16.5228100Z svchost.exe C:\Windows\system32\svchost.exe -k localService -p -s RemoteRegistry 2772 2025-09-07T06:48:16.5228709Z 2025-09-07T06:48:16.5229266Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2780 2025-09-07T06:48:16.5229935Z 2025-09-07T06:48:16.5230416Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2788 2025-09-07T06:48:16.5230990Z 2025-09-07T06:48:16.5231477Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2796 2025-09-07T06:48:16.5232062Z 2025-09-07T06:48:16.5232561Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2804 2025-09-07T06:48:16.5233156Z 2025-09-07T06:48:16.5233544Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3040 2025-09-07T06:48:16.5234035Z 2025-09-07T06:48:16.5234738Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 2120 2025-09-07T06:48:16.5235458Z 2025-09-07T06:48:16.5235935Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 1108 2025-09-07T06:48:16.5236580Z 2025-09-07T06:48:16.5237227Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 2960 2025-09-07T06:48:16.5237954Z 2025-09-07T06:48:16.5238439Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3128 2025-09-07T06:48:16.5238992Z 2025-09-07T06:48:16.5239592Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3580 2025-09-07T06:48:16.5240278Z 2025-09-07T06:48:16.5240699Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3648 2025-09-07T06:48:16.5241204Z 2025-09-07T06:48:16.5241773Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4028 2025-09-07T06:48:16.5242435Z 2025-09-07T06:48:16.5242999Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a73055 /state1:0x41c64e6d 4204 2025-09-07T06:48:16.5243573Z 2025-09-07T06:48:16.5245219Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4492 2025-09-07T06:48:16.5247031Z 2025-09-07T06:48:16.5247744Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 4624 2025-09-07T06:48:16.5248529Z 2025-09-07T06:48:16.5248883Z vds.exe C:\Windows\System32\vds.exe 4864 2025-09-07T06:48:16.5249336Z 2025-09-07T06:48:16.5249906Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2336 2025-09-07T06:48:16.5250564Z 2025-09-07T06:48:16.5251262Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 3112 2025-09-07T06:48:16.5252066Z 2025-09-07T06:48:16.5253627Z 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 1640 2025-09-07T06:48:16.5255273Z 2025-09-07T06:48:16.5255668Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1504 2025-09-07T06:48:16.5256172Z 2025-09-07T06:48:16.5256840Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 2868 2025-09-07T06:48:16.5257459Z 2025-09-07T06:48:16.5258051Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 780 2025-09-07T06:48:16.5258810Z 2025-09-07T06:48:16.5259179Z msdtc.exe C:\Windows\System32\msdtc.exe 5048 2025-09-07T06:48:16.5259645Z 2025-09-07T06:48:16.5260222Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 2936 2025-09-07T06:48:16.5260871Z 2025-09-07T06:48:16.5261327Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1484 2025-09-07T06:48:16.5261874Z 2025-09-07T06:48:16.5262410Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 892 2025-09-07T06:48:16.5263025Z 2025-09-07T06:48:16.5263542Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 3240 2025-09-07T06:48:16.5264142Z 2025-09-07T06:48:16.5264503Z svchost.exe 2852 2025-09-07T06:48:16.5264878Z 2025-09-07T06:48:16.5265363Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4664 2025-09-07T06:48:16.5265993Z 2025-09-07T06:48:16.5266587Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 2136 2025-09-07T06:48:16.5267345Z 2025-09-07T06:48:16.5268014Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /ua /installsource core 3308 2025-09-07T06:48:16.5268779Z 2025-09-07T06:48:16.5269188Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3912 2025-09-07T06:48:16.5269679Z 2025-09-07T06:48:16.5270210Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 2676 2025-09-07T06:48:16.5270798Z 2025-09-07T06:48:16.5271329Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4272 2025-09-07T06:48:16.5271934Z 2025-09-07T06:48:16.5272427Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 5012 2025-09-07T06:48:16.5273005Z 2025-09-07T06:48:16.5273566Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4152 2025-09-07T06:48:16.5274140Z 2025-09-07T06:48:16.5274612Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4604 2025-09-07T06:48:16.5275103Z 2025-09-07T06:48:16.5275708Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /svc 4776 2025-09-07T06:48:16.5276412Z 2025-09-07T06:48:16.5277530Z MicrosoftEdge_X64_139.0.3405.125_139.0.3405.111.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\Install\{ED5B0FCD-D4FB-4A28-B7EA-E2BA3C493D02}\MicrosoftEdge_X64_139.0.3405.125_139.0.3405.111.exe" --msedgewebview --verbose-logging --do-not-launch-msedge --system-level 2156 2025-09-07T06:48:16.5278847Z 2025-09-07T06:48:16.5279373Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2120 2156 3696 2025-09-07T06:48:16.5280000Z 2025-09-07T06:48:16.5280402Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1196 2025-09-07T06:48:16.5280912Z 2025-09-07T06:48:16.5281196Z svchost.exe 3500 2025-09-07T06:48:16.5281589Z 2025-09-07T06:48:16.5282131Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s wuauserv 3964 2025-09-07T06:48:16.5282697Z 2025-09-07T06:48:16.5283109Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3120 2025-09-07T06:48:16.5284174Z 2025-09-07T06:48:16.5284973Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\2218ab63-483e-4674-abfb-288af61e227d.ps1'" 3956 2025-09-07T06:48:16.5285853Z 2025-09-07T06:48:16.5286430Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 1752 2025-09-07T06:48:16.5287107Z 2025-09-07T06:48:16.5287112Z 2025-09-07T06:48:16.5287130Z 2025-09-07T06:48:16.5550857Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-09-07T06:48:16.5551268Z with: 2025-09-07T06:48:16.5551850Z github-secret: *** 2025-09-07T06:48:16.5554138Z 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-09-07T06:48:16.5556440Z activate-with-label: false 2025-09-07T06:48:16.5556689Z label: with-ssh 2025-09-07T06:48:16.5556896Z remove-existing-keys: true 2025-09-07T06:48:16.5557173Z fail-silently: true 2025-09-07T06:48:16.5557380Z env: 2025-09-07T06:48:16.5557550Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:16.5557780Z ##[endgroup] 2025-09-07T06:48:16.7087101Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-09-07T06:48:16.7089302Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-09-07T06:48:16.7321837Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-09-07T06:48:16.7322241Z with: 2025-09-07T06:48:16.7322425Z no-sudo: true 2025-09-07T06:48:16.7322641Z submodules: recursive 2025-09-07T06:48:16.7322851Z fetch-depth: 0 2025-09-07T06:48:16.7323039Z env: 2025-09-07T06:48:16.7323207Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:16.7323425Z ##[endgroup] 2025-09-07T06:48:16.7406561Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-09-07T06:48:16.7407458Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-09-07T06:48:16.7428365Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:48:16.7428791Z env: 2025-09-07T06:48:16.7428978Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:16.7429280Z ##[endgroup] 2025-09-07T06:48:16.7834763Z ##[group]Run # Use all available CPUs for fetching 2025-09-07T06:48:16.7835138Z # Use all available CPUs for fetching 2025-09-07T06:48:16.7835438Z cd "${GITHUB_WORKSPACE}" 2025-09-07T06:48:16.7835895Z git config --global fetch.parallel 0 2025-09-07T06:48:16.7836233Z git config --global submodule.fetchJobs 0 2025-09-07T06:48:16.7836598Z  2025-09-07T06:48:16.7836953Z # Clean workspace. The default checkout action should also do this, but 2025-09-07T06:48:16.7837385Z # do it here as well just in case 2025-09-07T06:48:16.7837676Z if [[ -d .git ]]; then 2025-09-07T06:48:16.7837926Z  if [ -z "${NO_SUDO}" ]; then 2025-09-07T06:48:16.7838203Z  sudo git clean -ffdx 2025-09-07T06:48:16.7838439Z  else 2025-09-07T06:48:16.7838639Z  git clean -ffdx 2025-09-07T06:48:16.7838854Z  fi 2025-09-07T06:48:16.7839027Z fi 2025-09-07T06:48:16.7858921Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:48:16.7859429Z env: 2025-09-07T06:48:16.7859655Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:16.7859899Z NO_SUDO: true 2025-09-07T06:48:16.7860098Z ##[endgroup] 2025-09-07T06:48:16.8753677Z ##[group]Run actions/checkout@v4 2025-09-07T06:48:16.8753945Z with: 2025-09-07T06:48:16.8754160Z ref: 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:48:16.8754457Z fetch-depth: 0 2025-09-07T06:48:16.8754661Z submodules: recursive 2025-09-07T06:48:16.8754872Z show-progress: false 2025-09-07T06:48:16.8755100Z repository: pytorch/pytorch 2025-09-07T06:48:16.8755454Z token: *** 2025-09-07T06:48:16.8755647Z ssh-strict: true 2025-09-07T06:48:16.8755840Z ssh-user: git 2025-09-07T06:48:16.8756057Z persist-credentials: true 2025-09-07T06:48:16.8756285Z clean: true 2025-09-07T06:48:16.8756500Z sparse-checkout-cone-mode: true 2025-09-07T06:48:16.8756767Z fetch-tags: false 2025-09-07T06:48:16.8756968Z lfs: false 2025-09-07T06:48:16.8757163Z set-safe-directory: true 2025-09-07T06:48:16.8757379Z env: 2025-09-07T06:48:16.8757558Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:48:16.8757783Z ##[endgroup] 2025-09-07T06:48:17.0048449Z Syncing repository: pytorch/pytorch 2025-09-07T06:48:17.0049657Z ##[group]Getting Git version info 2025-09-07T06:48:17.0050050Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-09-07T06:48:17.0163754Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-09-07T06:48:17.0368885Z git version 2.51.0.windows.1 2025-09-07T06:48:17.0414424Z ##[endgroup] 2025-09-07T06:48:17.0425803Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\2db83190-414c-4e24-b764-7f1eafb0bf55\.gitconfig' 2025-09-07T06:48:17.0442927Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\2db83190-414c-4e24-b764-7f1eafb0bf55' before making global git config changes 2025-09-07T06:48:17.0445283Z Adding repository directory to the temporary git global config as a safe directory 2025-09-07T06:48:17.0453116Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:48:17.0678890Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-09-07T06:48:17.0684261Z ##[group]Initializing the repository 2025-09-07T06:48:17.0694583Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:48:17.1127440Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-09-07T06:48:17.1169687Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-09-07T06:48:17.1446914Z ##[endgroup] 2025-09-07T06:48:17.1447289Z ##[group]Disabling automatic garbage collection 2025-09-07T06:48:17.1457782Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-09-07T06:48:17.1684779Z ##[endgroup] 2025-09-07T06:48:17.1685164Z ##[group]Setting up auth 2025-09-07T06:48:17.1698255Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-09-07T06:48:17.1927110Z [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-09-07T06:48:18.5670652Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-09-07T06:48:18.5897062Z [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-09-07T06:48:18.9925785Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-09-07T06:48:19.0175243Z ##[endgroup] 2025-09-07T06:48:19.0175667Z ##[group]Fetching the repository 2025-09-07T06:48:19.0189560Z [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-09-07T06:49:10.4637438Z From https://github.com/pytorch/pytorch 2025-09-07T06:49:10.4637874Z * [new branch] 160583 -> origin/160583 2025-09-07T06:49:10.4638308Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-09-07T06:49:10.4638773Z * [new branch] 5addvllmbuild -> origin/5addvllmbuild 2025-09-07T06:49:10.4639333Z * [new branch] AaronWang04_addmmfusion_perftest -> origin/AaronWang04_addmmfusion_perftest 2025-09-07T06:49:10.4639974Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-09-07T06:49:10.4640532Z * [new branch] ISSUE-154849 -> origin/ISSUE-154849 2025-09-07T06:49:10.4641130Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-09-07T06:49:10.4641741Z * [new branch] NicoshevSVE128 -> origin/NicoshevSVE128 2025-09-07T06:49:10.4642262Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-09-07T06:49:10.4642834Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-09-07T06:49:10.4643375Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-09-07T06:49:10.4643893Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-09-07T06:49:10.4644444Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-09-07T06:49:10.4644950Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-09-07T06:49:10.4646174Z * [new branch] VLA_exp -> origin/VLA_exp 2025-09-07T06:49:10.4646728Z * [new branch] actually-run-mps-aot-inductor -> origin/actually-run-mps-aot-inductor 2025-09-07T06:49:10.4647414Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-09-07T06:49:10.4648043Z * [new branch] add-user-guide-structure -> origin/add-user-guide-structure 2025-09-07T06:49:10.4648596Z * [new branch] add-vllm-nightly-build -> origin/add-vllm-nightly-build 2025-09-07T06:49:10.4649144Z * [new branch] add_compile_benchmarking -> origin/add_compile_benchmarking 2025-09-07T06:49:10.4649651Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-09-07T06:49:10.4650101Z * [new branch] addsimde -> origin/addsimde 2025-09-07T06:49:10.4650630Z * [new branch] addvllmtest -> origin/addvllmtest 2025-09-07T06:49:10.4651091Z * [new branch] adi/acl_upgrade -> origin/adi/acl_upgrade 2025-09-07T06:49:10.4651540Z * [new branch] adi/test -> origin/adi/test 2025-09-07T06:49:10.4652109Z * [new branch] adi/test_bgemm -> origin/adi/test_bgemm 2025-09-07T06:49:10.4652580Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-09-07T06:49:10.4653055Z * [new branch] adi/test_onednn_v3.9 -> origin/adi/test_onednn_v3.9 2025-09-07T06:49:10.4653581Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-09-07T06:49:10.4654077Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-09-07T06:49:10.4654557Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-09-07T06:49:10.4655084Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-09-07T06:49:10.4655618Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-09-07T06:49:10.4656120Z * [new branch] alt-disable -> origin/alt-disable 2025-09-07T06:49:10.4656718Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-09-07T06:49:10.4657316Z * [new branch] angelayi/aoti_inductor_fx -> origin/angelayi/aoti_inductor_fx 2025-09-07T06:49:10.4657853Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-09-07T06:49:10.4658358Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-09-07T06:49:10.4659138Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-09-07T06:49:10.4660038Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-09-07T06:49:10.4660646Z * [new branch] angelayi/custom_op_subgraph -> origin/angelayi/custom_op_subgraph 2025-09-07T06:49:10.4661194Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-09-07T06:49:10.4661730Z * [new branch] angelayi/fake_cache_empty -> origin/angelayi/fake_cache_empty 2025-09-07T06:49:10.4662287Z * [new branch] angelayi/is_symbolic_tracing -> origin/angelayi/is_symbolic_tracing 2025-09-07T06:49:10.4662800Z * [new branch] angelayi/item -> origin/angelayi/item 2025-09-07T06:49:10.4663271Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-09-07T06:49:10.4663790Z * [new branch] angelayi/opoverload -> origin/angelayi/opoverload 2025-09-07T06:49:10.4664289Z * [new branch] angelayi/pattern -> origin/angelayi/pattern 2025-09-07T06:49:10.4664759Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-09-07T06:49:10.4665406Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-09-07T06:49:10.4665916Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-09-07T06:49:10.4666428Z * [new branch] angelayi/test_cpp -> origin/angelayi/test_cpp 2025-09-07T06:49:10.4666921Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-09-07T06:49:10.4667401Z * [new branch] aoti-cuda-alloc -> origin/aoti-cuda-alloc 2025-09-07T06:49:10.4667880Z * [new branch] aoti_target_windows -> origin/aoti_target_windows 2025-09-07T06:49:10.4668359Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-09-07T06:49:10.4668909Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-09-07T06:49:10.4669553Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-09-07T06:49:10.4670113Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-09-07T06:49:10.4670596Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-09-07T06:49:10.4671187Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-09-07T06:49:10.4671668Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-09-07T06:49:10.4672229Z * [new branch] atalman-patch-6 -> origin/atalman-patch-6 2025-09-07T06:49:10.4672732Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-09-07T06:49:10.4673250Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-09-07T06:49:10.4673751Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-09-07T06:49:10.4674263Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-09-07T06:49:10.4674888Z * [new branch] autoupdate-transformers-pin-via-pr -> origin/autoupdate-transformers-pin-via-pr 2025-09-07T06:49:10.4675524Z * [new branch] bahuang/dtensor_demo -> origin/bahuang/dtensor_demo 2025-09-07T06:49:10.4676009Z * [new branch] bahuang/test -> origin/bahuang/test 2025-09-07T06:49:10.4676429Z * [new branch] base/1.5 -> origin/base/1.5 2025-09-07T06:49:10.4676966Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-09-07T06:49:10.4677519Z * [new branch] bc-lint-config -> origin/bc-lint-config 2025-09-07T06:49:10.4678031Z * [new branch] bc-lint-test-new-config -> origin/bc-lint-test-new-config 2025-09-07T06:49:10.4678561Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-09-07T06:49:10.4679129Z * [new branch] benchmarker_compat_with_do_bench -> origin/benchmarker_compat_with_do_bench 2025-09-07T06:49:10.4679712Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-09-07T06:49:10.4680231Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-09-07T06:49:10.4680724Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-09-07T06:49:10.4681223Z * [new branch] bf/cg-custom-wrapper -> origin/bf/cg-custom-wrapper 2025-09-07T06:49:10.4681696Z * [new branch] bf/cg-or-error -> origin/bf/cg-or-error 2025-09-07T06:49:10.4682163Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-09-07T06:49:10.4682640Z * [new branch] bf/cg-skip-1-kernel -> origin/bf/cg-skip-1-kernel 2025-09-07T06:49:10.4683197Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-09-07T06:49:10.4683799Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-09-07T06:49:10.4684864Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-09-07T06:49:10.4685726Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-09-07T06:49:10.4686306Z * [new branch] bf/default-recompile-reason -> origin/bf/default-recompile-reason 2025-09-07T06:49:10.4686888Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-09-07T06:49:10.4687370Z * [new branch] bf/exp -> origin/bf/exp 2025-09-07T06:49:10.4687818Z * [new branch] bf/pa-non-divisible -> origin/bf/pa-non-divisible 2025-09-07T06:49:10.4688343Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-09-07T06:49:10.4688871Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-09-07T06:49:10.4689407Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-09-07T06:49:10.4689977Z * [new branch] bf/rope -> origin/bf/rope 2025-09-07T06:49:10.4690475Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-09-07T06:49:10.4691049Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-09-07T06:49:10.4691605Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-09-07T06:49:10.4692163Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-09-07T06:49:10.4692698Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-09-07T06:49:10.4693251Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-09-07T06:49:10.4693811Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-09-07T06:49:10.4694370Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-09-07T06:49:10.4694929Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-09-07T06:49:10.4695475Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-09-07T06:49:10.4696016Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-09-07T06:49:10.4696555Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-09-07T06:49:10.4697106Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-09-07T06:49:10.4697684Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-09-07T06:49:10.4698229Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-09-07T06:49:10.4698789Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-09-07T06:49:10.4699343Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-09-07T06:49:10.4699866Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-09-07T06:49:10.4700348Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-09-07T06:49:10.4700838Z * [new branch] brister/break_tensorbox -> origin/brister/break_tensorbox 2025-09-07T06:49:10.4701374Z * [new branch] brister/custom_fx_backend -> origin/brister/custom_fx_backend 2025-09-07T06:49:10.4702430Z * [new branch] brister/fx_custom_triton -> origin/brister/fx_custom_triton 2025-09-07T06:49:10.4702981Z * [new branch] brister/tensor_box_output -> origin/brister/tensor_box_output 2025-09-07T06:49:10.4703639Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-09-07T06:49:10.4704216Z * [new branch] c57382a49 -> origin/c57382a49 2025-09-07T06:49:10.4704643Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-09-07T06:49:10.4705086Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-09-07T06:49:10.4706023Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-09-07T06:49:10.4707033Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-09-07T06:49:10.4707738Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4708494Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4709341Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4710072Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4710872Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4711649Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4712402Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4713151Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4713996Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4714755Z * [new branch] cherry-pick-159969-by-pytorch_bot_bot_ -> origin/cherry-pick-159969-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4715488Z * [new branch] cherry-pick-160586-by-pytorch_bot_bot_ -> origin/cherry-pick-160586-by-pytorch_bot_bot_ 2025-09-07T06:49:10.4716108Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-09-07T06:49:10.4716772Z * [new branch] cleanup-inductor-benchmark-images -> origin/cleanup-inductor-benchmark-images 2025-09-07T06:49:10.4717411Z * [new branch] codex-testing -> origin/codex-testing 2025-09-07T06:49:10.4718080Z * [new branch] codex/add-helper-function-to-sizevars.py -> origin/codex/add-helper-function-to-sizevars.py 2025-09-07T06:49:10.4718983Z * [new branch] codex/add-helper-function-to-sizevars.py_2025-09-05 -> origin/codex/add-helper-function-to-sizevars.py_2025-09-05 2025-09-07T06:49:10.4719875Z * [new branch] codex/add-metadata-field-for-file-path -> origin/codex/add-metadata-field-for-file-path 2025-09-07T06:49:10.4720777Z * [new branch] codex/add-test-for-inductor-local-cache-behavior -> origin/codex/add-test-for-inductor-local-cache-behavior 2025-09-07T06:49:10.4721829Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-09-07T06:49:10.4722810Z * [new branch] codex/fix-issue-121219-in-pytorch -> origin/codex/fix-issue-121219-in-pytorch 2025-09-07T06:49:10.4723528Z * [new branch] codex/fix-issue-160415-in-pytorch -> origin/codex/fix-issue-160415-in-pytorch 2025-09-07T06:49:10.4724506Z * [new branch] codex/fix-noqengine-quantized-engine-support -> origin/codex/fix-noqengine-quantized-engine-support 2025-09-07T06:49:10.4725355Z * [new branch] codex/fix-pin_memory-error-handling -> origin/codex/fix-pin_memory-error-handling 2025-09-07T06:49:10.4726070Z * [new branch] codex/propose-fix-for-issue-160332 -> origin/codex/propose-fix-for-issue-160332 2025-09-07T06:49:10.4726924Z * [new branch] codex/refactor-lintrunner-config-to-use-uv-run -> origin/codex/refactor-lintrunner-config-to-use-uv-run 2025-09-07T06:49:10.4727949Z * [new branch] codex/remove-allow-untyped-defs-and-fix-type-errors -> origin/codex/remove-allow-untyped-defs-and-fix-type-errors 2025-09-07T06:49:10.4728925Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-09-07T06:49:10.4729518Z * [new branch] context_test -> origin/context_test 2025-09-07T06:49:10.4729998Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-09-07T06:49:10.4730482Z * [new branch] copy_graph -> origin/copy_graph 2025-09-07T06:49:10.4731051Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-09-07T06:49:10.4731570Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-09-07T06:49:10.4732122Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-09-07T06:49:10.4732668Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-09-07T06:49:10.4733236Z * [new branch] csl/disable_flaky_cpp_test -> origin/csl/disable_flaky_cpp_test 2025-09-07T06:49:10.4733782Z * [new branch] csl/disable_periodic_test -> origin/csl/disable_periodic_test 2025-09-07T06:49:10.4734419Z * [new branch] csl/exclude_rocm_viable_strict -> origin/csl/exclude_rocm_viable_strict 2025-09-07T06:49:10.4734981Z * [new branch] csl/katex -> origin/csl/katex 2025-09-07T06:49:10.4735427Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-09-07T06:49:10.4735946Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-09-07T06:49:10.4736437Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-09-07T06:49:10.4736936Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-09-07T06:49:10.4737471Z * [new branch] csl/name_link_check_job -> origin/csl/name_link_check_job 2025-09-07T06:49:10.4737968Z * [new branch] csl/no_keep_goin_rocm -> origin/csl/no_keep_goin_rocm 2025-09-07T06:49:10.4738470Z * [new branch] csl/not_600_timeout -> origin/csl/not_600_timeout 2025-09-07T06:49:10.4738945Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-09-07T06:49:10.4739424Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-09-07T06:49:10.4739981Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-09-07T06:49:10.4740565Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-09-07T06:49:10.4741090Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-09-07T06:49:10.4741553Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-09-07T06:49:10.4742044Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-09-07T06:49:10.4742570Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-09-07T06:49:10.4743038Z * [new branch] czhuge_muon_dev -> origin/czhuge_muon_dev 2025-09-07T06:49:10.4743613Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-09-07T06:49:10.4744067Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-09-07T06:49:10.4744511Z * [new branch] debug-guard -> origin/debug-guard 2025-09-07T06:49:10.4744979Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-09-07T06:49:10.4745872Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.2 2025-09-07T06:49:10.4747213Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.3 2025-09-07T06:49:10.4748445Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.55.4 2025-09-07T06:49:10.4749688Z * [new branch] dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.56.0 -> origin/dependabot/pip/dot-ci/docker/ci_commit_pins/main/transformers-4.56.0 2025-09-07T06:49:10.4750827Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-09-07T06:49:10.4751765Z * [new branch] dependabot/pip/dot-github/requirements/protobuf-5.29.5 -> origin/dependabot/pip/dot-github/requirements/protobuf-5.29.5 2025-09-07T06:49:10.4752627Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-09-07T06:49:10.4753315Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-09-07T06:49:10.4753948Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-09-07T06:49:10.4754492Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-09-07T06:49:10.4754963Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-09-07T06:49:10.4755477Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-09-07T06:49:10.4756028Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-09-07T06:49:10.4756741Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-09-07T06:49:10.4757433Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-09-07T06:49:10.4758111Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-09-07T06:49:10.4758687Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-09-07T06:49:10.4759222Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-09-07T06:49:10.4759750Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-09-07T06:49:10.4760254Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-09-07T06:49:10.4760713Z * [new branch] disable -> origin/disable 2025-09-07T06:49:10.4761161Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-09-07T06:49:10.4761654Z * [new branch] eigen_for_sparse_addmm_v2 -> origin/eigen_for_sparse_addmm_v2 2025-09-07T06:49:10.4762207Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-09-07T06:49:10.4762762Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-09-07T06:49:10.4763328Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-09-07T06:49:10.4764019Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-09-07T06:49:10.4764679Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-09-07T06:49:10.4765211Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-09-07T06:49:10.4765712Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-09-07T06:49:10.4766151Z * [new branch] eqy-patch-3 -> origin/eqy-patch-3 2025-09-07T06:49:10.4766600Z * [new branch] eqy-patch-4 -> origin/eqy-patch-4 2025-09-07T06:49:10.4767110Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-09-07T06:49:10.4767807Z * [new branch] exclamaforte/add-contiguous-threshold -> origin/exclamaforte/add-contiguous-threshold 2025-09-07T06:49:10.4768471Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-09-07T06:49:10.4769126Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-09-07T06:49:10.4769887Z * [new branch] exclamaforte/clear-feedback-savers -> origin/exclamaforte/clear-feedback-savers 2025-09-07T06:49:10.4770704Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-09-07T06:49:10.4771457Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-09-07T06:49:10.4772181Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-09-07T06:49:10.4772938Z * [new branch] exclamaforte/fix-exhaustive-autotuning -> origin/exclamaforte/fix-exhaustive-autotuning 2025-09-07T06:49:10.4773814Z * [new branch] exclamaforte/fix-exhuastive-autotuning-reland -> origin/exclamaforte/fix-exhuastive-autotuning-reland 2025-09-07T06:49:10.4774667Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-09-07T06:49:10.4775492Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-09-07T06:49:10.4776218Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-09-07T06:49:10.4776831Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-09-07T06:49:10.4777575Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-09-07T06:49:10.4778172Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-09-07T06:49:10.4778907Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-09-07T06:49:10.4779650Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-09-07T06:49:10.4780231Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-09-07T06:49:10.4780956Z * [new branch] exclamaforte/just-gemm-model-no-refactor -> origin/exclamaforte/just-gemm-model-no-refactor 2025-09-07T06:49:10.4781682Z * [new branch] exclamaforte/max-autotune-ieee -> origin/exclamaforte/max-autotune-ieee 2025-09-07T06:49:10.4782323Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-09-07T06:49:10.4783004Z * [new branch] exclamaforte/profile-diff-algo -> origin/exclamaforte/profile-diff-algo 2025-09-07T06:49:10.4783668Z * [new branch] exclamaforte/profiler-combo -> origin/exclamaforte/profiler-combo 2025-09-07T06:49:10.4784318Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-09-07T06:49:10.4785481Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-09-07T06:49:10.4786279Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-09-07T06:49:10.4787002Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-09-07T06:49:10.4787507Z * [new branch] exec -> origin/exec 2025-09-07T06:49:10.4788012Z * [new branch] executorch-module-shim -> origin/executorch-module-shim 2025-09-07T06:49:10.4788558Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-09-07T06:49:10.4789135Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-09-07T06:49:10.4789669Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-09-07T06:49:10.4790150Z * [new branch] export-D70112642 -> origin/export-D70112642 2025-09-07T06:49:10.4790639Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-09-07T06:49:10.4791102Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-09-07T06:49:10.4791671Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-09-07T06:49:10.4792154Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-09-07T06:49:10.4792620Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-09-07T06:49:10.4793102Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-09-07T06:49:10.4793569Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-09-07T06:49:10.4794047Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-09-07T06:49:10.4794544Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-09-07T06:49:10.4795078Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-09-07T06:49:10.4795600Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-09-07T06:49:10.4796068Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-09-07T06:49:10.4796546Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-09-07T06:49:10.4797015Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-09-07T06:49:10.4797508Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-09-07T06:49:10.4797994Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-09-07T06:49:10.4798465Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-09-07T06:49:10.4798949Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-09-07T06:49:10.4799424Z * [new branch] export-D78894324 -> origin/export-D78894324 2025-09-07T06:49:10.4799906Z * [new branch] export-D78929245 -> origin/export-D78929245 2025-09-07T06:49:10.4800393Z * [new branch] export-D78934925 -> origin/export-D78934925 2025-09-07T06:49:10.4800909Z * [new branch] export-D78953203 -> origin/export-D78953203 2025-09-07T06:49:10.4801434Z * [new branch] export-D78953229 -> origin/export-D78953229 2025-09-07T06:49:10.4801898Z * [new branch] export-D78957093 -> origin/export-D78957093 2025-09-07T06:49:10.4802382Z * [new branch] export-D78957389 -> origin/export-D78957389 2025-09-07T06:49:10.4802849Z * [new branch] export-D78996107 -> origin/export-D78996107 2025-09-07T06:49:10.4803331Z * [new branch] export-D79026433 -> origin/export-D79026433 2025-09-07T06:49:10.4803901Z * [new branch] export-D79230339 -> origin/export-D79230339 2025-09-07T06:49:10.4804439Z * [new branch] export-D79319835 -> origin/export-D79319835 2025-09-07T06:49:10.4804944Z * [new branch] export-D79328456 -> origin/export-D79328456 2025-09-07T06:49:10.4805409Z * [new branch] export-D79534608 -> origin/export-D79534608 2025-09-07T06:49:10.4805894Z * [new branch] export-D79785974 -> origin/export-D79785974 2025-09-07T06:49:10.4806411Z * [new branch] export-D80025417 -> origin/export-D80025417 2025-09-07T06:49:10.4806911Z * [new branch] export-D80120333 -> origin/export-D80120333 2025-09-07T06:49:10.4807389Z * [new branch] export-D80214882 -> origin/export-D80214882 2025-09-07T06:49:10.4807854Z * [new branch] export-D80319069 -> origin/export-D80319069 2025-09-07T06:49:10.4808337Z * [new branch] export-D80321215 -> origin/export-D80321215 2025-09-07T06:49:10.4808819Z * [new branch] export-D80503451 -> origin/export-D80503451 2025-09-07T06:49:10.4809368Z * [new branch] export-D80771648 -> origin/export-D80771648 2025-09-07T06:49:10.4809848Z * [new branch] export-D80823877 -> origin/export-D80823877 2025-09-07T06:49:10.4810314Z * [new branch] export-D80948073 -> origin/export-D80948073 2025-09-07T06:49:10.4810802Z * [new branch] export-D80958642 -> origin/export-D80958642 2025-09-07T06:49:10.4811281Z * [new branch] export-D80970483 -> origin/export-D80970483 2025-09-07T06:49:10.4811758Z * [new branch] export-D81054193 -> origin/export-D81054193 2025-09-07T06:49:10.4812282Z * [new branch] export-D81060182 -> origin/export-D81060182 2025-09-07T06:49:10.4812792Z * [new branch] export-D81078973 -> origin/export-D81078973 2025-09-07T06:49:10.4813277Z * [new branch] export-D81204584 -> origin/export-D81204584 2025-09-07T06:49:10.4813750Z * [new branch] export-D81284190 -> origin/export-D81284190 2025-09-07T06:49:10.4814233Z * [new branch] export-D81299840 -> origin/export-D81299840 2025-09-07T06:49:10.4814726Z * [new branch] export-D81429090 -> origin/export-D81429090 2025-09-07T06:49:10.4815200Z * [new branch] export-D81698719 -> origin/export-D81698719 2025-09-07T06:49:10.4815678Z * [new branch] export-D81747409 -> origin/export-D81747409 2025-09-07T06:49:10.4816273Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-09-07T06:49:10.4816942Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-09-07T06:49:10.4817466Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-09-07T06:49:10.4817929Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-09-07T06:49:10.4818450Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-09-07T06:49:10.4818907Z * [new branch] fca -> origin/fca 2025-09-07T06:49:10.4819328Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-09-07T06:49:10.4819739Z * [new branch] fca5 -> origin/fca5 2025-09-07T06:49:10.4820269Z * [new branch] feature/function-numa-binding -> origin/feature/function-numa-binding 2025-09-07T06:49:10.4820971Z * [new branch] feature/function-numa-binding-take2 -> origin/feature/function-numa-binding-take2 2025-09-07T06:49:10.4821691Z * [new branch] feature/numa-nproc-fix -> origin/feature/numa-nproc-fix 2025-09-07T06:49:10.4822315Z * [new branch] feature/numa-signpost-serialize -> origin/feature/numa-signpost-serialize 2025-09-07T06:49:10.4822985Z * [new branch] feature/parallel-numa-binding -> origin/feature/parallel-numa-binding 2025-09-07T06:49:10.4823602Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-09-07T06:49:10.4824356Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-09-07T06:49:10.4825237Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-09-07T06:49:10.4825921Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-09-07T06:49:10.4826412Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-09-07T06:49:10.4826919Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-09-07T06:49:10.4827428Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-09-07T06:49:10.4828021Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-09-07T06:49:10.4828545Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-09-07T06:49:10.4829059Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-09-07T06:49:10.4829579Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-09-07T06:49:10.4830163Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-09-07T06:49:10.4830755Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-09-07T06:49:10.4831302Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-09-07T06:49:10.4831771Z * [new branch] fix -> origin/fix 2025-09-07T06:49:10.4832279Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-09-07T06:49:10.4832841Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-09-07T06:49:10.4833318Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-09-07T06:49:10.4833862Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-09-07T06:49:10.4834407Z * [new branch] fix-mps-benchmark -> origin/fix-mps-benchmark 2025-09-07T06:49:10.4834972Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-09-07T06:49:10.4835635Z * [new branch] fix-run-condition-upload-results -> origin/fix-run-condition-upload-results 2025-09-07T06:49:10.4836333Z * [new branch] fix-torchbench -> origin/fix-torchbench 2025-09-07T06:49:10.4836788Z * [new branch] fix_153389 -> origin/fix_153389 2025-09-07T06:49:10.4837240Z * [new branch] fix_fsdp_rs_bucket2 -> origin/fix_fsdp_rs_bucket2 2025-09-07T06:49:10.4837779Z * [new branch] fix_inductor_peridic_tests -> origin/fix_inductor_peridic_tests 2025-09-07T06:49:10.4838267Z * [new branch] fix_ubn_159469 -> origin/fix_ubn_159469 2025-09-07T06:49:10.4838729Z * [new branch] fixes-triage -> origin/fixes-triage 2025-09-07T06:49:10.4839202Z * [new branch] fixflashinfer -> origin/fixflashinfer 2025-09-07T06:49:10.4839678Z * [new branch] flash_decoding_cpu -> origin/flash_decoding_cpu 2025-09-07T06:49:10.4840156Z * [new branch] flex-flash -> origin/flex-flash 2025-09-07T06:49:10.4840681Z * [new branch] flex-lowering -> origin/flex-lowering 2025-09-07T06:49:10.4841150Z * [new branch] flex-warning -> origin/flex-warning 2025-09-07T06:49:10.4841730Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-09-07T06:49:10.4842292Z * [new branch] flex_flash -> origin/flex_flash 2025-09-07T06:49:10.4842800Z * [new branch] flexdecode-gqa-groups -> origin/flexdecode-gqa-groups 2025-09-07T06:49:10.4843384Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-09-07T06:49:10.4843938Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-09-07T06:49:10.4844459Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-09-07T06:49:10.4844896Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-09-07T06:49:10.4845340Z * [new branch] fx_cpp -> origin/fx_cpp 2025-09-07T06:49:10.4845760Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-09-07T06:49:10.4846238Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-09-07T06:49:10.4846800Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-09-07T06:49:10.4847279Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-09-07T06:49:10.4847797Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-09-07T06:49:10.4848321Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-09-07T06:49:10.4848841Z * [new branch] gh/ColinPeppler/79/base -> origin/gh/ColinPeppler/79/base 2025-09-07T06:49:10.4849395Z * [new branch] gh/ColinPeppler/79/head -> origin/gh/ColinPeppler/79/head 2025-09-07T06:49:10.4849962Z * [new branch] gh/ColinPeppler/79/orig -> origin/gh/ColinPeppler/79/orig 2025-09-07T06:49:10.4850519Z * [new branch] gh/ColinPeppler/80/base -> origin/gh/ColinPeppler/80/base 2025-09-07T06:49:10.4851069Z * [new branch] gh/ColinPeppler/80/head -> origin/gh/ColinPeppler/80/head 2025-09-07T06:49:10.4851632Z * [new branch] gh/ColinPeppler/80/orig -> origin/gh/ColinPeppler/80/orig 2025-09-07T06:49:10.4852169Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-09-07T06:49:10.4852693Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-09-07T06:49:10.4853210Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-09-07T06:49:10.4853754Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-09-07T06:49:10.4854313Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-09-07T06:49:10.4854817Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-09-07T06:49:10.4855331Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-09-07T06:49:10.4855837Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-09-07T06:49:10.4856341Z * [new branch] gh/EikanWang/82/base -> origin/gh/EikanWang/82/base 2025-09-07T06:49:10.4856850Z * [new branch] gh/EikanWang/82/head -> origin/gh/EikanWang/82/head 2025-09-07T06:49:10.4857356Z * [new branch] gh/EikanWang/82/orig -> origin/gh/EikanWang/82/orig 2025-09-07T06:49:10.4857874Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-09-07T06:49:10.4858376Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-09-07T06:49:10.4858875Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-09-07T06:49:10.4859487Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-09-07T06:49:10.4860003Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-09-07T06:49:10.4860501Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-09-07T06:49:10.4860985Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-09-07T06:49:10.4861479Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-09-07T06:49:10.4861970Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-09-07T06:49:10.4862451Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-09-07T06:49:10.4862944Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-09-07T06:49:10.4863425Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-09-07T06:49:10.4863913Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-09-07T06:49:10.4864395Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-09-07T06:49:10.4864946Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-09-07T06:49:10.4865483Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-09-07T06:49:10.4865998Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-09-07T06:49:10.4866485Z * [new branch] gh/H-Huang/202/base -> origin/gh/H-Huang/202/base 2025-09-07T06:49:10.4866961Z * [new branch] gh/H-Huang/202/head -> origin/gh/H-Huang/202/head 2025-09-07T06:49:10.4867454Z * [new branch] gh/H-Huang/202/orig -> origin/gh/H-Huang/202/orig 2025-09-07T06:49:10.4867944Z * [new branch] gh/H-Huang/203/base -> origin/gh/H-Huang/203/base 2025-09-07T06:49:10.4868415Z * [new branch] gh/H-Huang/203/head -> origin/gh/H-Huang/203/head 2025-09-07T06:49:10.4868903Z * [new branch] gh/H-Huang/203/orig -> origin/gh/H-Huang/203/orig 2025-09-07T06:49:10.4869381Z * [new branch] gh/H-Huang/204/base -> origin/gh/H-Huang/204/base 2025-09-07T06:49:10.4869867Z * [new branch] gh/H-Huang/204/head -> origin/gh/H-Huang/204/head 2025-09-07T06:49:10.4870356Z * [new branch] gh/H-Huang/204/orig -> origin/gh/H-Huang/204/orig 2025-09-07T06:49:10.4870827Z * [new branch] gh/H-Huang/205/base -> origin/gh/H-Huang/205/base 2025-09-07T06:49:10.4871361Z * [new branch] gh/H-Huang/205/head -> origin/gh/H-Huang/205/head 2025-09-07T06:49:10.4871876Z * [new branch] gh/H-Huang/205/orig -> origin/gh/H-Huang/205/orig 2025-09-07T06:49:10.4872367Z * [new branch] gh/H-Huang/206/base -> origin/gh/H-Huang/206/base 2025-09-07T06:49:10.4872855Z * [new branch] gh/H-Huang/206/head -> origin/gh/H-Huang/206/head 2025-09-07T06:49:10.4873335Z * [new branch] gh/H-Huang/206/orig -> origin/gh/H-Huang/206/orig 2025-09-07T06:49:10.4873821Z * [new branch] gh/H-Huang/207/base -> origin/gh/H-Huang/207/base 2025-09-07T06:49:10.4874295Z * [new branch] gh/H-Huang/207/head -> origin/gh/H-Huang/207/head 2025-09-07T06:49:10.4874784Z * [new branch] gh/H-Huang/207/orig -> origin/gh/H-Huang/207/orig 2025-09-07T06:49:10.4875274Z * [new branch] gh/H-Huang/208/base -> origin/gh/H-Huang/208/base 2025-09-07T06:49:10.4875749Z * [new branch] gh/H-Huang/208/head -> origin/gh/H-Huang/208/head 2025-09-07T06:49:10.4876237Z * [new branch] gh/H-Huang/208/orig -> origin/gh/H-Huang/208/orig 2025-09-07T06:49:10.4876787Z * [new branch] gh/H-Huang/209/base -> origin/gh/H-Huang/209/base 2025-09-07T06:49:10.4877322Z * [new branch] gh/H-Huang/209/head -> origin/gh/H-Huang/209/head 2025-09-07T06:49:10.4877843Z * [new branch] gh/H-Huang/209/orig -> origin/gh/H-Huang/209/orig 2025-09-07T06:49:10.4878340Z * [new branch] gh/H-Huang/210/base -> origin/gh/H-Huang/210/base 2025-09-07T06:49:10.4878825Z * [new branch] gh/H-Huang/210/head -> origin/gh/H-Huang/210/head 2025-09-07T06:49:10.4879300Z * [new branch] gh/H-Huang/210/orig -> origin/gh/H-Huang/210/orig 2025-09-07T06:49:10.4879782Z * [new branch] gh/H-Huang/211/base -> origin/gh/H-Huang/211/base 2025-09-07T06:49:10.4880257Z * [new branch] gh/H-Huang/211/head -> origin/gh/H-Huang/211/head 2025-09-07T06:49:10.4880749Z * [new branch] gh/H-Huang/211/orig -> origin/gh/H-Huang/211/orig 2025-09-07T06:49:10.4881235Z * [new branch] gh/H-Huang/212/base -> origin/gh/H-Huang/212/base 2025-09-07T06:49:10.4881709Z * [new branch] gh/H-Huang/212/head -> origin/gh/H-Huang/212/head 2025-09-07T06:49:10.4882270Z * [new branch] gh/H-Huang/212/orig -> origin/gh/H-Huang/212/orig 2025-09-07T06:49:10.4882753Z * [new branch] gh/H-Huang/213/base -> origin/gh/H-Huang/213/base 2025-09-07T06:49:10.4883308Z * [new branch] gh/H-Huang/213/head -> origin/gh/H-Huang/213/head 2025-09-07T06:49:10.4883795Z * [new branch] gh/H-Huang/213/orig -> origin/gh/H-Huang/213/orig 2025-09-07T06:49:10.4884333Z * [new branch] gh/H-Huang/214/base -> origin/gh/H-Huang/214/base 2025-09-07T06:49:10.4884826Z * [new branch] gh/H-Huang/214/head -> origin/gh/H-Huang/214/head 2025-09-07T06:49:10.4885308Z * [new branch] gh/H-Huang/214/orig -> origin/gh/H-Huang/214/orig 2025-09-07T06:49:10.4885847Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-09-07T06:49:10.4886415Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-09-07T06:49:10.4886960Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-09-07T06:49:10.4887516Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-09-07T06:49:10.4888055Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-09-07T06:49:10.4888617Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-09-07T06:49:10.4889227Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-09-07T06:49:10.4889790Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-09-07T06:49:10.4890350Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-09-07T06:49:10.4890891Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-09-07T06:49:10.4891649Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-09-07T06:49:10.4892191Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-09-07T06:49:10.4892752Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-09-07T06:49:10.4893305Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-09-07T06:49:10.4893845Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-09-07T06:49:10.4894399Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-09-07T06:49:10.4895139Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-09-07T06:49:10.4895700Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-09-07T06:49:10.4896280Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-09-07T06:49:10.4896825Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-09-07T06:49:10.4897383Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-09-07T06:49:10.4897930Z * [new branch] gh/IvanKobzarev/132/base -> origin/gh/IvanKobzarev/132/base 2025-09-07T06:49:10.4898483Z * [new branch] gh/IvanKobzarev/132/head -> origin/gh/IvanKobzarev/132/head 2025-09-07T06:49:10.4899040Z * [new branch] gh/IvanKobzarev/132/orig -> origin/gh/IvanKobzarev/132/orig 2025-09-07T06:49:10.4899596Z * [new branch] gh/IvanKobzarev/133/base -> origin/gh/IvanKobzarev/133/base 2025-09-07T06:49:10.4900160Z * [new branch] gh/IvanKobzarev/133/head -> origin/gh/IvanKobzarev/133/head 2025-09-07T06:49:10.4900752Z * [new branch] gh/IvanKobzarev/133/orig -> origin/gh/IvanKobzarev/133/orig 2025-09-07T06:49:10.4901892Z * [new branch] gh/IvanKobzarev/134/base -> origin/gh/IvanKobzarev/134/base 2025-09-07T06:49:10.4902456Z * [new branch] gh/IvanKobzarev/134/head -> origin/gh/IvanKobzarev/134/head 2025-09-07T06:49:10.4903001Z * [new branch] gh/IvanKobzarev/134/orig -> origin/gh/IvanKobzarev/134/orig 2025-09-07T06:49:10.4903559Z * [new branch] gh/IvanKobzarev/135/base -> origin/gh/IvanKobzarev/135/base 2025-09-07T06:49:10.4904108Z * [new branch] gh/IvanKobzarev/135/head -> origin/gh/IvanKobzarev/135/head 2025-09-07T06:49:10.4904660Z * [new branch] gh/IvanKobzarev/135/orig -> origin/gh/IvanKobzarev/135/orig 2025-09-07T06:49:10.4905224Z * [new branch] gh/IvanKobzarev/136/base -> origin/gh/IvanKobzarev/136/base 2025-09-07T06:49:10.4905765Z * [new branch] gh/IvanKobzarev/136/head -> origin/gh/IvanKobzarev/136/head 2025-09-07T06:49:10.4906374Z * [new branch] gh/IvanKobzarev/136/orig -> origin/gh/IvanKobzarev/136/orig 2025-09-07T06:49:10.4906918Z * [new branch] gh/IvanKobzarev/137/base -> origin/gh/IvanKobzarev/137/base 2025-09-07T06:49:10.4907514Z * [new branch] gh/IvanKobzarev/137/head -> origin/gh/IvanKobzarev/137/head 2025-09-07T06:49:10.4908068Z * [new branch] gh/IvanKobzarev/137/orig -> origin/gh/IvanKobzarev/137/orig 2025-09-07T06:49:10.4908613Z * [new branch] gh/IvanKobzarev/138/base -> origin/gh/IvanKobzarev/138/base 2025-09-07T06:49:10.4909164Z * [new branch] gh/IvanKobzarev/138/head -> origin/gh/IvanKobzarev/138/head 2025-09-07T06:49:10.4909712Z * [new branch] gh/IvanKobzarev/138/orig -> origin/gh/IvanKobzarev/138/orig 2025-09-07T06:49:10.4910268Z * [new branch] gh/IvanKobzarev/139/base -> origin/gh/IvanKobzarev/139/base 2025-09-07T06:49:10.4910820Z * [new branch] gh/IvanKobzarev/139/head -> origin/gh/IvanKobzarev/139/head 2025-09-07T06:49:10.4911375Z * [new branch] gh/IvanKobzarev/139/orig -> origin/gh/IvanKobzarev/139/orig 2025-09-07T06:49:10.4911935Z * [new branch] gh/IvanKobzarev/140/base -> origin/gh/IvanKobzarev/140/base 2025-09-07T06:49:10.4912514Z * [new branch] gh/IvanKobzarev/140/head -> origin/gh/IvanKobzarev/140/head 2025-09-07T06:49:10.4913118Z * [new branch] gh/IvanKobzarev/140/orig -> origin/gh/IvanKobzarev/140/orig 2025-09-07T06:49:10.4913662Z * [new branch] gh/IvanKobzarev/141/base -> origin/gh/IvanKobzarev/141/base 2025-09-07T06:49:10.4914310Z * [new branch] gh/IvanKobzarev/141/head -> origin/gh/IvanKobzarev/141/head 2025-09-07T06:49:10.4914883Z * [new branch] gh/IvanKobzarev/141/orig -> origin/gh/IvanKobzarev/141/orig 2025-09-07T06:49:10.4915428Z * [new branch] gh/IvanKobzarev/142/base -> origin/gh/IvanKobzarev/142/base 2025-09-07T06:49:10.4915993Z * [new branch] gh/IvanKobzarev/142/head -> origin/gh/IvanKobzarev/142/head 2025-09-07T06:49:10.4916540Z * [new branch] gh/IvanKobzarev/142/orig -> origin/gh/IvanKobzarev/142/orig 2025-09-07T06:49:10.4917097Z * [new branch] gh/IvanKobzarev/143/base -> origin/gh/IvanKobzarev/143/base 2025-09-07T06:49:10.4917653Z * [new branch] gh/IvanKobzarev/143/head -> origin/gh/IvanKobzarev/143/head 2025-09-07T06:49:10.4918236Z * [new branch] gh/IvanKobzarev/143/orig -> origin/gh/IvanKobzarev/143/orig 2025-09-07T06:49:10.4918828Z * [new branch] gh/IvanKobzarev/144/base -> origin/gh/IvanKobzarev/144/base 2025-09-07T06:49:10.4919378Z * [new branch] gh/IvanKobzarev/144/head -> origin/gh/IvanKobzarev/144/head 2025-09-07T06:49:10.4919929Z * [new branch] gh/IvanKobzarev/144/orig -> origin/gh/IvanKobzarev/144/orig 2025-09-07T06:49:10.4920566Z * [new branch] gh/IvanKobzarev/145/base -> origin/gh/IvanKobzarev/145/base 2025-09-07T06:49:10.4921109Z * [new branch] gh/IvanKobzarev/145/head -> origin/gh/IvanKobzarev/145/head 2025-09-07T06:49:10.4921667Z * [new branch] gh/IvanKobzarev/145/orig -> origin/gh/IvanKobzarev/145/orig 2025-09-07T06:49:10.4922209Z * [new branch] gh/IvanKobzarev/146/base -> origin/gh/IvanKobzarev/146/base 2025-09-07T06:49:10.4922768Z * [new branch] gh/IvanKobzarev/146/head -> origin/gh/IvanKobzarev/146/head 2025-09-07T06:49:10.4923326Z * [new branch] gh/IvanKobzarev/146/orig -> origin/gh/IvanKobzarev/146/orig 2025-09-07T06:49:10.4923917Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-09-07T06:49:10.4924552Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-09-07T06:49:10.4925086Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-09-07T06:49:10.4925643Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-09-07T06:49:10.4926172Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-09-07T06:49:10.4926712Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-09-07T06:49:10.4927234Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-09-07T06:49:10.4927707Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-09-07T06:49:10.4928188Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-09-07T06:49:10.4928669Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-09-07T06:49:10.4929288Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-09-07T06:49:10.4929840Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-09-07T06:49:10.4930432Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-09-07T06:49:10.4930939Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-09-07T06:49:10.4931462Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-09-07T06:49:10.4932000Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-09-07T06:49:10.4932495Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-09-07T06:49:10.4933012Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-09-07T06:49:10.4933955Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-09-07T06:49:10.4934507Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-09-07T06:49:10.4935040Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-09-07T06:49:10.4935588Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-09-07T06:49:10.4936166Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-09-07T06:49:10.4936669Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-09-07T06:49:10.4937188Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-09-07T06:49:10.4937720Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-09-07T06:49:10.4938217Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-09-07T06:49:10.4938754Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-09-07T06:49:10.4939245Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-09-07T06:49:10.4939851Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-09-07T06:49:10.4940390Z * [new branch] gh/PaliC/24/base -> origin/gh/PaliC/24/base 2025-09-07T06:49:10.4940887Z * [new branch] gh/PaliC/24/head -> origin/gh/PaliC/24/head 2025-09-07T06:49:10.4941450Z * [new branch] gh/PaliC/24/orig -> origin/gh/PaliC/24/orig 2025-09-07T06:49:10.4942022Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-09-07T06:49:10.4942620Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-09-07T06:49:10.4943172Z * [new branch] gh/PaulZhang12/20/base -> origin/gh/PaulZhang12/20/base 2025-09-07T06:49:10.4943760Z * [new branch] gh/PaulZhang12/20/head -> origin/gh/PaulZhang12/20/head 2025-09-07T06:49:10.4944352Z * [new branch] gh/PaulZhang12/20/orig -> origin/gh/PaulZhang12/20/orig 2025-09-07T06:49:10.4944913Z * [new branch] gh/PaulZhang12/21/base -> origin/gh/PaulZhang12/21/base 2025-09-07T06:49:10.4945482Z * [new branch] gh/PaulZhang12/21/head -> origin/gh/PaulZhang12/21/head 2025-09-07T06:49:10.4946074Z * [new branch] gh/PaulZhang12/21/orig -> origin/gh/PaulZhang12/21/orig 2025-09-07T06:49:10.4946633Z * [new branch] gh/PaulZhang12/22/base -> origin/gh/PaulZhang12/22/base 2025-09-07T06:49:10.4947274Z * [new branch] gh/PaulZhang12/22/head -> origin/gh/PaulZhang12/22/head 2025-09-07T06:49:10.4947862Z * [new branch] gh/PaulZhang12/22/orig -> origin/gh/PaulZhang12/22/orig 2025-09-07T06:49:10.4948436Z * [new branch] gh/PaulZhang12/23/base -> origin/gh/PaulZhang12/23/base 2025-09-07T06:49:10.4949029Z * [new branch] gh/PaulZhang12/23/head -> origin/gh/PaulZhang12/23/head 2025-09-07T06:49:10.4949580Z * [new branch] gh/PaulZhang12/23/orig -> origin/gh/PaulZhang12/23/orig 2025-09-07T06:49:10.4950151Z * [new branch] gh/PaulZhang12/24/base -> origin/gh/PaulZhang12/24/base 2025-09-07T06:49:10.4950726Z * [new branch] gh/PaulZhang12/24/head -> origin/gh/PaulZhang12/24/head 2025-09-07T06:49:10.4951307Z * [new branch] gh/PaulZhang12/24/orig -> origin/gh/PaulZhang12/24/orig 2025-09-07T06:49:10.4951869Z * [new branch] gh/PaulZhang12/25/base -> origin/gh/PaulZhang12/25/base 2025-09-07T06:49:10.4952437Z * [new branch] gh/PaulZhang12/25/head -> origin/gh/PaulZhang12/25/head 2025-09-07T06:49:10.4953009Z * [new branch] gh/PaulZhang12/25/orig -> origin/gh/PaulZhang12/25/orig 2025-09-07T06:49:10.4953696Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-09-07T06:49:10.4954334Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-09-07T06:49:10.4954955Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-09-07T06:49:10.4955562Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-09-07T06:49:10.4956213Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-09-07T06:49:10.4956798Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-09-07T06:49:10.4957385Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-09-07T06:49:10.4957976Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-09-07T06:49:10.4958528Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-09-07T06:49:10.4959098Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-09-07T06:49:10.4959713Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-09-07T06:49:10.4960454Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-09-07T06:49:10.4961063Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-09-07T06:49:10.4961673Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-09-07T06:49:10.4962323Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-09-07T06:49:10.4962949Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-09-07T06:49:10.4963567Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-09-07T06:49:10.4964233Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-09-07T06:49:10.4964948Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-09-07T06:49:10.4965580Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-09-07T06:49:10.4966205Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-09-07T06:49:10.4966850Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-09-07T06:49:10.4967467Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-09-07T06:49:10.4968099Z * [new branch] gh/StrongerXi/139/base -> origin/gh/StrongerXi/139/base 2025-09-07T06:49:10.4968746Z * [new branch] gh/StrongerXi/139/head -> origin/gh/StrongerXi/139/head 2025-09-07T06:49:10.4969331Z * [new branch] gh/StrongerXi/139/orig -> origin/gh/StrongerXi/139/orig 2025-09-07T06:49:10.4969993Z * [new branch] gh/StrongerXi/140/base -> origin/gh/StrongerXi/140/base 2025-09-07T06:49:10.4970647Z * [new branch] gh/StrongerXi/140/head -> origin/gh/StrongerXi/140/head 2025-09-07T06:49:10.4971245Z * [new branch] gh/StrongerXi/140/orig -> origin/gh/StrongerXi/140/orig 2025-09-07T06:49:10.4971910Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-09-07T06:49:10.4972504Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-09-07T06:49:10.4973151Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-09-07T06:49:10.4973806Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-09-07T06:49:10.4974382Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-09-07T06:49:10.4975140Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-09-07T06:49:10.4975826Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-09-07T06:49:10.4976396Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-09-07T06:49:10.4976953Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-09-07T06:49:10.4977476Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-09-07T06:49:10.4978032Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-09-07T06:49:10.4978554Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-09-07T06:49:10.4979137Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-09-07T06:49:10.4979697Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-09-07T06:49:10.4980297Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-09-07T06:49:10.4980873Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-09-07T06:49:10.5000227Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-09-07T06:49:10.5000751Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-09-07T06:49:10.5001254Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-09-07T06:49:10.5001753Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-09-07T06:49:10.5002232Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-09-07T06:49:10.5002719Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-09-07T06:49:10.5003216Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-09-07T06:49:10.5003708Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-09-07T06:49:10.5004208Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-09-07T06:49:10.5004865Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-09-07T06:49:10.5005369Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-09-07T06:49:10.5005858Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-09-07T06:49:10.5006355Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-09-07T06:49:10.5006846Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-09-07T06:49:10.5007331Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-09-07T06:49:10.5007827Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-09-07T06:49:10.5008308Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-09-07T06:49:10.5008800Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-09-07T06:49:10.5009347Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-09-07T06:49:10.5009918Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-09-07T06:49:10.5010416Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-09-07T06:49:10.5010898Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-09-07T06:49:10.5011396Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-09-07T06:49:10.5011882Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-09-07T06:49:10.5012523Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-09-07T06:49:10.5013017Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-09-07T06:49:10.5013517Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-09-07T06:49:10.5014000Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-09-07T06:49:10.5014486Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-09-07T06:49:10.5014979Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-09-07T06:49:10.5015469Z * [new branch] gh/XilunWu/161/base -> origin/gh/XilunWu/161/base 2025-09-07T06:49:10.5015951Z * [new branch] gh/XilunWu/161/head -> origin/gh/XilunWu/161/head 2025-09-07T06:49:10.5016441Z * [new branch] gh/XilunWu/161/orig -> origin/gh/XilunWu/161/orig 2025-09-07T06:49:10.5016920Z * [new branch] gh/XilunWu/163/base -> origin/gh/XilunWu/163/base 2025-09-07T06:49:10.5017405Z * [new branch] gh/XilunWu/163/head -> origin/gh/XilunWu/163/head 2025-09-07T06:49:10.5017974Z * [new branch] gh/XilunWu/163/orig -> origin/gh/XilunWu/163/orig 2025-09-07T06:49:10.5018450Z * [new branch] gh/XilunWu/164/base -> origin/gh/XilunWu/164/base 2025-09-07T06:49:10.5018931Z * [new branch] gh/XilunWu/164/head -> origin/gh/XilunWu/164/head 2025-09-07T06:49:10.5019410Z * [new branch] gh/XilunWu/164/orig -> origin/gh/XilunWu/164/orig 2025-09-07T06:49:10.5019894Z * [new branch] gh/XilunWu/165/base -> origin/gh/XilunWu/165/base 2025-09-07T06:49:10.5020372Z * [new branch] gh/XilunWu/165/head -> origin/gh/XilunWu/165/head 2025-09-07T06:49:10.5020856Z * [new branch] gh/XilunWu/165/orig -> origin/gh/XilunWu/165/orig 2025-09-07T06:49:10.5021344Z * [new branch] gh/XilunWu/166/base -> origin/gh/XilunWu/166/base 2025-09-07T06:49:10.5021819Z * [new branch] gh/XilunWu/166/head -> origin/gh/XilunWu/166/head 2025-09-07T06:49:10.5022310Z * [new branch] gh/XilunWu/166/orig -> origin/gh/XilunWu/166/orig 2025-09-07T06:49:10.5022788Z * [new branch] gh/XilunWu/167/base -> origin/gh/XilunWu/167/base 2025-09-07T06:49:10.5023271Z * [new branch] gh/XilunWu/167/head -> origin/gh/XilunWu/167/head 2025-09-07T06:49:10.5023760Z * [new branch] gh/XilunWu/167/orig -> origin/gh/XilunWu/167/orig 2025-09-07T06:49:10.5024233Z * [new branch] gh/XilunWu/168/base -> origin/gh/XilunWu/168/base 2025-09-07T06:49:10.5024722Z * [new branch] gh/XilunWu/168/head -> origin/gh/XilunWu/168/head 2025-09-07T06:49:10.5025253Z * [new branch] gh/XilunWu/168/orig -> origin/gh/XilunWu/168/orig 2025-09-07T06:49:10.5025791Z * [new branch] gh/XilunWu/169/base -> origin/gh/XilunWu/169/base 2025-09-07T06:49:10.5026326Z * [new branch] gh/XilunWu/169/head -> origin/gh/XilunWu/169/head 2025-09-07T06:49:10.5026812Z * [new branch] gh/XilunWu/169/orig -> origin/gh/XilunWu/169/orig 2025-09-07T06:49:10.5027311Z * [new branch] gh/XilunWu/170/base -> origin/gh/XilunWu/170/base 2025-09-07T06:49:10.5027797Z * [new branch] gh/XilunWu/170/head -> origin/gh/XilunWu/170/head 2025-09-07T06:49:10.5028296Z * [new branch] gh/XilunWu/170/orig -> origin/gh/XilunWu/170/orig 2025-09-07T06:49:10.5028807Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-09-07T06:49:10.5029313Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-09-07T06:49:10.5029907Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-09-07T06:49:10.5030423Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-09-07T06:49:10.5030953Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-09-07T06:49:10.5031463Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-09-07T06:49:10.5031983Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-09-07T06:49:10.5032511Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-09-07T06:49:10.5033017Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-09-07T06:49:10.5033539Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-09-07T06:49:10.5034051Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-09-07T06:49:10.5034572Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-09-07T06:49:10.5035089Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-09-07T06:49:10.5035667Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-09-07T06:49:10.5036171Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-09-07T06:49:10.5036672Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-09-07T06:49:10.5037181Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-09-07T06:49:10.5037697Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-09-07T06:49:10.5038198Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-09-07T06:49:10.5038707Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-09-07T06:49:10.5039203Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-09-07T06:49:10.5039714Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-09-07T06:49:10.5040220Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-09-07T06:49:10.5040718Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-09-07T06:49:10.5041236Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-09-07T06:49:10.5041740Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-09-07T06:49:10.5042241Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-09-07T06:49:10.5042747Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-09-07T06:49:10.5043257Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-09-07T06:49:10.5043761Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-09-07T06:49:10.5044264Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-09-07T06:49:10.5044873Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-09-07T06:49:10.5045370Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-09-07T06:49:10.5045880Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-09-07T06:49:10.5046391Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-09-07T06:49:10.5046894Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-09-07T06:49:10.5047486Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-09-07T06:49:10.5047998Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-09-07T06:49:10.5048515Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-09-07T06:49:10.5049033Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-09-07T06:49:10.5049530Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-09-07T06:49:10.5050037Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-09-07T06:49:10.5050540Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-09-07T06:49:10.5051042Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-09-07T06:49:10.5051546Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-09-07T06:49:10.5052047Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-09-07T06:49:10.5052555Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-09-07T06:49:10.5053128Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-09-07T06:49:10.5053636Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-09-07T06:49:10.5054147Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-09-07T06:49:10.5054648Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-09-07T06:49:10.5055151Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-09-07T06:49:10.5055656Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-09-07T06:49:10.5056216Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-09-07T06:49:10.5056755Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-09-07T06:49:10.5057268Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-09-07T06:49:10.5057783Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-09-07T06:49:10.5058276Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-09-07T06:49:10.5058779Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-09-07T06:49:10.5059272Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-09-07T06:49:10.5059766Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-09-07T06:49:10.5060273Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-09-07T06:49:10.5060765Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-09-07T06:49:10.5061265Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-09-07T06:49:10.5061765Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-09-07T06:49:10.5062272Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-09-07T06:49:10.5062778Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-09-07T06:49:10.5063269Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-09-07T06:49:10.5063769Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-09-07T06:49:10.5064265Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-09-07T06:49:10.5064765Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-09-07T06:49:10.5065356Z * [new branch] gh/XuehaiPan/380/base -> origin/gh/XuehaiPan/380/base 2025-09-07T06:49:10.5065874Z * [new branch] gh/XuehaiPan/380/head -> origin/gh/XuehaiPan/380/head 2025-09-07T06:49:10.5066393Z * [new branch] gh/XuehaiPan/380/orig -> origin/gh/XuehaiPan/380/orig 2025-09-07T06:49:10.5066895Z * [new branch] gh/XuehaiPan/381/base -> origin/gh/XuehaiPan/381/base 2025-09-07T06:49:10.5067409Z * [new branch] gh/XuehaiPan/381/head -> origin/gh/XuehaiPan/381/head 2025-09-07T06:49:10.5067911Z * [new branch] gh/XuehaiPan/382/base -> origin/gh/XuehaiPan/382/base 2025-09-07T06:49:10.5068428Z * [new branch] gh/XuehaiPan/382/head -> origin/gh/XuehaiPan/382/head 2025-09-07T06:49:10.5068940Z * [new branch] gh/XuehaiPan/382/orig -> origin/gh/XuehaiPan/382/orig 2025-09-07T06:49:10.5069445Z * [new branch] gh/XuehaiPan/383/base -> origin/gh/XuehaiPan/383/base 2025-09-07T06:49:10.5069953Z * [new branch] gh/XuehaiPan/383/head -> origin/gh/XuehaiPan/383/head 2025-09-07T06:49:10.5070449Z * [new branch] gh/XuehaiPan/383/orig -> origin/gh/XuehaiPan/383/orig 2025-09-07T06:49:10.5071039Z * [new branch] gh/XuehaiPan/384/base -> origin/gh/XuehaiPan/384/base 2025-09-07T06:49:10.5071551Z * [new branch] gh/XuehaiPan/384/head -> origin/gh/XuehaiPan/384/head 2025-09-07T06:49:10.5072051Z * [new branch] gh/XuehaiPan/384/orig -> origin/gh/XuehaiPan/384/orig 2025-09-07T06:49:10.5072566Z * [new branch] gh/XuehaiPan/385/base -> origin/gh/XuehaiPan/385/base 2025-09-07T06:49:10.5073063Z * [new branch] gh/XuehaiPan/385/head -> origin/gh/XuehaiPan/385/head 2025-09-07T06:49:10.5073582Z * [new branch] gh/XuehaiPan/385/orig -> origin/gh/XuehaiPan/385/orig 2025-09-07T06:49:10.5074091Z * [new branch] gh/XuehaiPan/386/base -> origin/gh/XuehaiPan/386/base 2025-09-07T06:49:10.5074590Z * [new branch] gh/XuehaiPan/386/head -> origin/gh/XuehaiPan/386/head 2025-09-07T06:49:10.5075099Z * [new branch] gh/XuehaiPan/386/orig -> origin/gh/XuehaiPan/386/orig 2025-09-07T06:49:10.5075605Z * [new branch] gh/XuehaiPan/387/base -> origin/gh/XuehaiPan/387/base 2025-09-07T06:49:10.5076111Z * [new branch] gh/XuehaiPan/387/head -> origin/gh/XuehaiPan/387/head 2025-09-07T06:49:10.5076607Z * [new branch] gh/XuehaiPan/387/orig -> origin/gh/XuehaiPan/387/orig 2025-09-07T06:49:10.5077117Z * [new branch] gh/ZainRizvi/1/base -> origin/gh/ZainRizvi/1/base 2025-09-07T06:49:10.5077620Z * [new branch] gh/ZainRizvi/1/head -> origin/gh/ZainRizvi/1/head 2025-09-07T06:49:10.5078110Z * [new branch] gh/ZainRizvi/2/base -> origin/gh/ZainRizvi/2/base 2025-09-07T06:49:10.5078613Z * [new branch] gh/ZainRizvi/2/head -> origin/gh/ZainRizvi/2/head 2025-09-07T06:49:10.5079103Z * [new branch] gh/ZainRizvi/3/base -> origin/gh/ZainRizvi/3/base 2025-09-07T06:49:10.5079597Z * [new branch] gh/ZainRizvi/3/head -> origin/gh/ZainRizvi/3/head 2025-09-07T06:49:10.5080083Z * [new branch] gh/ZainRizvi/4/base -> origin/gh/ZainRizvi/4/base 2025-09-07T06:49:10.5080562Z * [new branch] gh/ZainRizvi/4/head -> origin/gh/ZainRizvi/4/head 2025-09-07T06:49:10.5081045Z * [new branch] gh/ZainRizvi/5/base -> origin/gh/ZainRizvi/5/base 2025-09-07T06:49:10.5081523Z * [new branch] gh/ZainRizvi/5/head -> origin/gh/ZainRizvi/5/head 2025-09-07T06:49:10.5082008Z * [new branch] gh/ZainRizvi/6/base -> origin/gh/ZainRizvi/6/base 2025-09-07T06:49:10.5082569Z * [new branch] gh/ZainRizvi/6/head -> origin/gh/ZainRizvi/6/head 2025-09-07T06:49:10.5083065Z * [new branch] gh/ZainRizvi/6/orig -> origin/gh/ZainRizvi/6/orig 2025-09-07T06:49:10.5083565Z * [new branch] gh/ZainRizvi/7/base -> origin/gh/ZainRizvi/7/base 2025-09-07T06:49:10.5084051Z * [new branch] gh/ZainRizvi/7/head -> origin/gh/ZainRizvi/7/head 2025-09-07T06:49:10.5084637Z * [new branch] gh/ZainRizvi/7/orig -> origin/gh/ZainRizvi/7/orig 2025-09-07T06:49:10.5085130Z * [new branch] gh/ZainRizvi/8/base -> origin/gh/ZainRizvi/8/base 2025-09-07T06:49:10.5085614Z * [new branch] gh/ZainRizvi/8/head -> origin/gh/ZainRizvi/8/head 2025-09-07T06:49:10.5086107Z * [new branch] gh/ZainRizvi/9/base -> origin/gh/ZainRizvi/9/base 2025-09-07T06:49:10.5086597Z * [new branch] gh/ZainRizvi/9/head -> origin/gh/ZainRizvi/9/head 2025-09-07T06:49:10.5087119Z * [new branch] gh/ZainRizvi/9/orig -> origin/gh/ZainRizvi/9/orig 2025-09-07T06:49:10.5087631Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-09-07T06:49:10.5088152Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-09-07T06:49:10.5088753Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-09-07T06:49:10.5089270Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-09-07T06:49:10.5089798Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-09-07T06:49:10.5090321Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-09-07T06:49:10.5090835Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-09-07T06:49:10.5091360Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-09-07T06:49:10.5091872Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-09-07T06:49:10.5092392Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-09-07T06:49:10.5092915Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-09-07T06:49:10.5093426Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-09-07T06:49:10.5093944Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-09-07T06:49:10.5094449Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-09-07T06:49:10.5094972Z * [new branch] gh/ZhiweiYan-96/65/base -> origin/gh/ZhiweiYan-96/65/base 2025-09-07T06:49:10.5095494Z * [new branch] gh/ZhiweiYan-96/65/head -> origin/gh/ZhiweiYan-96/65/head 2025-09-07T06:49:10.5096014Z * [new branch] gh/ZhiweiYan-96/65/orig -> origin/gh/ZhiweiYan-96/65/orig 2025-09-07T06:49:10.5096534Z * [new branch] gh/ZhiweiYan-96/66/base -> origin/gh/ZhiweiYan-96/66/base 2025-09-07T06:49:10.5097046Z * [new branch] gh/ZhiweiYan-96/66/head -> origin/gh/ZhiweiYan-96/66/head 2025-09-07T06:49:10.5097562Z * [new branch] gh/ZhiweiYan-96/67/base -> origin/gh/ZhiweiYan-96/67/base 2025-09-07T06:49:10.5098077Z * [new branch] gh/ZhiweiYan-96/67/head -> origin/gh/ZhiweiYan-96/67/head 2025-09-07T06:49:10.5098598Z * [new branch] gh/ZhiweiYan-96/68/base -> origin/gh/ZhiweiYan-96/68/base 2025-09-07T06:49:10.5099115Z * [new branch] gh/ZhiweiYan-96/68/head -> origin/gh/ZhiweiYan-96/68/head 2025-09-07T06:49:10.5099624Z * [new branch] gh/ZhiweiYan-96/68/orig -> origin/gh/ZhiweiYan-96/68/orig 2025-09-07T06:49:10.5100130Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-09-07T06:49:10.5100686Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-09-07T06:49:10.5101185Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-09-07T06:49:10.5101684Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-09-07T06:49:10.5102185Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-09-07T06:49:10.5102688Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-09-07T06:49:10.5103175Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-09-07T06:49:10.5103901Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-09-07T06:49:10.5104640Z * [new branch] gh/alexsamardzic/9/base -> origin/gh/alexsamardzic/9/base 2025-09-07T06:49:10.5105184Z * [new branch] gh/alexsamardzic/9/head -> origin/gh/alexsamardzic/9/head 2025-09-07T06:49:10.5105729Z * [new branch] gh/alexsamardzic/9/orig -> origin/gh/alexsamardzic/9/orig 2025-09-07T06:49:10.5106312Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-09-07T06:49:10.5106807Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-09-07T06:49:10.5107285Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-09-07T06:49:10.5107771Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-09-07T06:49:10.5108270Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-09-07T06:49:10.5108768Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-09-07T06:49:10.5109277Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-09-07T06:49:10.5109796Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-09-07T06:49:10.5110293Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-09-07T06:49:10.5110798Z * [new branch] gh/andrewor14/51/base -> origin/gh/andrewor14/51/base 2025-09-07T06:49:10.5111300Z * [new branch] gh/andrewor14/51/orig -> origin/gh/andrewor14/51/orig 2025-09-07T06:49:10.5111804Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-09-07T06:49:10.5112365Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-09-07T06:49:10.5112924Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-09-07T06:49:10.5113438Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-09-07T06:49:10.5113950Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-09-07T06:49:10.5114461Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-09-07T06:49:10.5114967Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-09-07T06:49:10.5115475Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-09-07T06:49:10.5115974Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-09-07T06:49:10.5116473Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-09-07T06:49:10.5116987Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-09-07T06:49:10.5117489Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-09-07T06:49:10.5117998Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-09-07T06:49:10.5118584Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-09-07T06:49:10.5119089Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-09-07T06:49:10.5119607Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-09-07T06:49:10.5120109Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-09-07T06:49:10.5120621Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-09-07T06:49:10.5121135Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-09-07T06:49:10.5121638Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-09-07T06:49:10.5122155Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-09-07T06:49:10.5122659Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-09-07T06:49:10.5123170Z * [new branch] gh/andyanwang/39/base -> origin/gh/andyanwang/39/base 2025-09-07T06:49:10.5123672Z * [new branch] gh/andyanwang/39/head -> origin/gh/andyanwang/39/head 2025-09-07T06:49:10.5124256Z * [new branch] gh/andyanwang/39/orig -> origin/gh/andyanwang/39/orig 2025-09-07T06:49:10.5124835Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-09-07T06:49:10.5125340Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-09-07T06:49:10.5125851Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-09-07T06:49:10.5126352Z * [new branch] gh/angelayi/107/base -> origin/gh/angelayi/107/base 2025-09-07T06:49:10.5126849Z * [new branch] gh/angelayi/107/head -> origin/gh/angelayi/107/head 2025-09-07T06:49:10.5127349Z * [new branch] gh/angelayi/111/base -> origin/gh/angelayi/111/base 2025-09-07T06:49:10.5127834Z * [new branch] gh/angelayi/111/head -> origin/gh/angelayi/111/head 2025-09-07T06:49:10.5128326Z * [new branch] gh/angelayi/111/orig -> origin/gh/angelayi/111/orig 2025-09-07T06:49:10.5128817Z * [new branch] gh/angelayi/112/base -> origin/gh/angelayi/112/base 2025-09-07T06:49:10.5129301Z * [new branch] gh/angelayi/112/head -> origin/gh/angelayi/112/head 2025-09-07T06:49:10.5129792Z * [new branch] gh/angelayi/112/orig -> origin/gh/angelayi/112/orig 2025-09-07T06:49:10.5130284Z * [new branch] gh/angelayi/113/base -> origin/gh/angelayi/113/base 2025-09-07T06:49:10.5130774Z * [new branch] gh/angelayi/113/head -> origin/gh/angelayi/113/head 2025-09-07T06:49:10.5131257Z * [new branch] gh/angelayi/113/orig -> origin/gh/angelayi/113/orig 2025-09-07T06:49:10.5131753Z * [new branch] gh/angelayi/114/base -> origin/gh/angelayi/114/base 2025-09-07T06:49:10.5132248Z * [new branch] gh/angelayi/114/head -> origin/gh/angelayi/114/head 2025-09-07T06:49:10.5132736Z * [new branch] gh/angelayi/114/orig -> origin/gh/angelayi/114/orig 2025-09-07T06:49:10.5133231Z * [new branch] gh/angelayi/115/base -> origin/gh/angelayi/115/base 2025-09-07T06:49:10.5133715Z * [new branch] gh/angelayi/115/head -> origin/gh/angelayi/115/head 2025-09-07T06:49:10.5134202Z * [new branch] gh/angelayi/115/orig -> origin/gh/angelayi/115/orig 2025-09-07T06:49:10.5134708Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-09-07T06:49:10.5135232Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-09-07T06:49:10.5135826Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-09-07T06:49:10.5136343Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-09-07T06:49:10.5136864Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-09-07T06:49:10.5137381Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-09-07T06:49:10.5137908Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-09-07T06:49:10.5138439Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-09-07T06:49:10.5138958Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-09-07T06:49:10.5139487Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-09-07T06:49:10.5140005Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-09-07T06:49:10.5140521Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-09-07T06:49:10.5141037Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-09-07T06:49:10.5141624Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-09-07T06:49:10.5142160Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-09-07T06:49:10.5142678Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-09-07T06:49:10.5143209Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-09-07T06:49:10.5143738Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-09-07T06:49:10.5144255Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-09-07T06:49:10.5144781Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-09-07T06:49:10.5145289Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-09-07T06:49:10.5145807Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-09-07T06:49:10.5146336Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-09-07T06:49:10.5146896Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-09-07T06:49:10.5147416Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-09-07T06:49:10.5147926Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-09-07T06:49:10.5148441Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-09-07T06:49:10.5148963Z * [new branch] gh/anijain2305/838/base -> origin/gh/anijain2305/838/base 2025-09-07T06:49:10.5149476Z * [new branch] gh/anijain2305/838/head -> origin/gh/anijain2305/838/head 2025-09-07T06:49:10.5149992Z * [new branch] gh/anijain2305/838/orig -> origin/gh/anijain2305/838/orig 2025-09-07T06:49:10.5150501Z * [new branch] gh/anijain2305/839/base -> origin/gh/anijain2305/839/base 2025-09-07T06:49:10.5151015Z * [new branch] gh/anijain2305/839/head -> origin/gh/anijain2305/839/head 2025-09-07T06:49:10.5151528Z * [new branch] gh/anijain2305/839/orig -> origin/gh/anijain2305/839/orig 2025-09-07T06:49:10.5152038Z * [new branch] gh/anijain2305/843/base -> origin/gh/anijain2305/843/base 2025-09-07T06:49:10.5152556Z * [new branch] gh/anijain2305/843/head -> origin/gh/anijain2305/843/head 2025-09-07T06:49:10.5153061Z * [new branch] gh/anijain2305/843/orig -> origin/gh/anijain2305/843/orig 2025-09-07T06:49:10.5153650Z * [new branch] gh/anijain2305/844/base -> origin/gh/anijain2305/844/base 2025-09-07T06:49:10.5154167Z * [new branch] gh/anijain2305/844/head -> origin/gh/anijain2305/844/head 2025-09-07T06:49:10.5154680Z * [new branch] gh/anijain2305/844/orig -> origin/gh/anijain2305/844/orig 2025-09-07T06:49:10.5155214Z * [new branch] gh/anijain2305/846/base -> origin/gh/anijain2305/846/base 2025-09-07T06:49:10.5155732Z * [new branch] gh/anijain2305/846/head -> origin/gh/anijain2305/846/head 2025-09-07T06:49:10.5156255Z * [new branch] gh/anijain2305/846/orig -> origin/gh/anijain2305/846/orig 2025-09-07T06:49:10.5156770Z * [new branch] gh/anijain2305/848/base -> origin/gh/anijain2305/848/base 2025-09-07T06:49:10.5157289Z * [new branch] gh/anijain2305/848/head -> origin/gh/anijain2305/848/head 2025-09-07T06:49:10.5157816Z * [new branch] gh/anijain2305/848/orig -> origin/gh/anijain2305/848/orig 2025-09-07T06:49:10.5158331Z * [new branch] gh/anijain2305/849/base -> origin/gh/anijain2305/849/base 2025-09-07T06:49:10.5158848Z * [new branch] gh/anijain2305/849/head -> origin/gh/anijain2305/849/head 2025-09-07T06:49:10.5159435Z * [new branch] gh/anijain2305/849/orig -> origin/gh/anijain2305/849/orig 2025-09-07T06:49:10.5159963Z * [new branch] gh/anijain2305/850/base -> origin/gh/anijain2305/850/base 2025-09-07T06:49:10.5160491Z * [new branch] gh/anijain2305/850/head -> origin/gh/anijain2305/850/head 2025-09-07T06:49:10.5161017Z * [new branch] gh/anijain2305/850/orig -> origin/gh/anijain2305/850/orig 2025-09-07T06:49:10.5161537Z * [new branch] gh/anijain2305/851/base -> origin/gh/anijain2305/851/base 2025-09-07T06:49:10.5162058Z * [new branch] gh/anijain2305/851/head -> origin/gh/anijain2305/851/head 2025-09-07T06:49:10.5162589Z * [new branch] gh/anijain2305/851/orig -> origin/gh/anijain2305/851/orig 2025-09-07T06:49:10.5163111Z * [new branch] gh/anijain2305/852/base -> origin/gh/anijain2305/852/base 2025-09-07T06:49:10.5163619Z * [new branch] gh/anijain2305/852/head -> origin/gh/anijain2305/852/head 2025-09-07T06:49:10.5164145Z * [new branch] gh/anijain2305/852/orig -> origin/gh/anijain2305/852/orig 2025-09-07T06:49:10.5164733Z * [new branch] gh/anijain2305/853/base -> origin/gh/anijain2305/853/base 2025-09-07T06:49:10.5165255Z * [new branch] gh/anijain2305/853/head -> origin/gh/anijain2305/853/head 2025-09-07T06:49:10.5165767Z * [new branch] gh/anijain2305/853/orig -> origin/gh/anijain2305/853/orig 2025-09-07T06:49:10.5166289Z * [new branch] gh/anijain2305/854/base -> origin/gh/anijain2305/854/base 2025-09-07T06:49:10.5166824Z * [new branch] gh/anijain2305/854/head -> origin/gh/anijain2305/854/head 2025-09-07T06:49:10.5167342Z * [new branch] gh/anijain2305/854/orig -> origin/gh/anijain2305/854/orig 2025-09-07T06:49:10.5167863Z * [new branch] gh/anijain2305/855/base -> origin/gh/anijain2305/855/base 2025-09-07T06:49:10.5168384Z * [new branch] gh/anijain2305/855/head -> origin/gh/anijain2305/855/head 2025-09-07T06:49:10.5168900Z * [new branch] gh/anijain2305/855/orig -> origin/gh/anijain2305/855/orig 2025-09-07T06:49:10.5169417Z * [new branch] gh/anijain2305/856/base -> origin/gh/anijain2305/856/base 2025-09-07T06:49:10.5169928Z * [new branch] gh/anijain2305/856/head -> origin/gh/anijain2305/856/head 2025-09-07T06:49:10.5170446Z * [new branch] gh/anijain2305/856/orig -> origin/gh/anijain2305/856/orig 2025-09-07T06:49:10.5170961Z * [new branch] gh/anijain2305/857/base -> origin/gh/anijain2305/857/base 2025-09-07T06:49:10.5171564Z * [new branch] gh/anijain2305/857/head -> origin/gh/anijain2305/857/head 2025-09-07T06:49:10.5172094Z * [new branch] gh/anijain2305/857/orig -> origin/gh/anijain2305/857/orig 2025-09-07T06:49:10.5172607Z * [new branch] gh/anijain2305/858/base -> origin/gh/anijain2305/858/base 2025-09-07T06:49:10.5173136Z * [new branch] gh/anijain2305/858/head -> origin/gh/anijain2305/858/head 2025-09-07T06:49:10.5173649Z * [new branch] gh/anijain2305/858/orig -> origin/gh/anijain2305/858/orig 2025-09-07T06:49:10.5174169Z * [new branch] gh/anijain2305/859/base -> origin/gh/anijain2305/859/base 2025-09-07T06:49:10.5174689Z * [new branch] gh/anijain2305/859/head -> origin/gh/anijain2305/859/head 2025-09-07T06:49:10.5175204Z * [new branch] gh/anijain2305/859/orig -> origin/gh/anijain2305/859/orig 2025-09-07T06:49:10.5175735Z * [new branch] gh/anijain2305/860/base -> origin/gh/anijain2305/860/base 2025-09-07T06:49:10.5176248Z * [new branch] gh/anijain2305/860/head -> origin/gh/anijain2305/860/head 2025-09-07T06:49:10.5176767Z * [new branch] gh/anijain2305/860/orig -> origin/gh/anijain2305/860/orig 2025-09-07T06:49:10.5177357Z * [new branch] gh/anijain2305/861/base -> origin/gh/anijain2305/861/base 2025-09-07T06:49:10.5177869Z * [new branch] gh/anijain2305/861/head -> origin/gh/anijain2305/861/head 2025-09-07T06:49:10.5178391Z * [new branch] gh/anijain2305/861/orig -> origin/gh/anijain2305/861/orig 2025-09-07T06:49:10.5178900Z * [new branch] gh/anijain2305/862/base -> origin/gh/anijain2305/862/base 2025-09-07T06:49:10.5179424Z * [new branch] gh/anijain2305/862/head -> origin/gh/anijain2305/862/head 2025-09-07T06:49:10.5179953Z * [new branch] gh/anijain2305/862/orig -> origin/gh/anijain2305/862/orig 2025-09-07T06:49:10.5180468Z * [new branch] gh/anijain2305/863/base -> origin/gh/anijain2305/863/base 2025-09-07T06:49:10.5180999Z * [new branch] gh/anijain2305/863/head -> origin/gh/anijain2305/863/head 2025-09-07T06:49:10.5181515Z * [new branch] gh/anijain2305/863/orig -> origin/gh/anijain2305/863/orig 2025-09-07T06:49:10.5182028Z * [new branch] gh/anijain2305/864/base -> origin/gh/anijain2305/864/base 2025-09-07T06:49:10.5182542Z * [new branch] gh/anijain2305/864/head -> origin/gh/anijain2305/864/head 2025-09-07T06:49:10.5183062Z * [new branch] gh/anijain2305/864/orig -> origin/gh/anijain2305/864/orig 2025-09-07T06:49:10.5183582Z * [new branch] gh/anijain2305/865/base -> origin/gh/anijain2305/865/base 2025-09-07T06:49:10.5184094Z * [new branch] gh/anijain2305/865/head -> origin/gh/anijain2305/865/head 2025-09-07T06:49:10.5184615Z * [new branch] gh/anijain2305/865/orig -> origin/gh/anijain2305/865/orig 2025-09-07T06:49:10.5185122Z * [new branch] gh/anijain2305/866/base -> origin/gh/anijain2305/866/base 2025-09-07T06:49:10.5185636Z * [new branch] gh/anijain2305/866/head -> origin/gh/anijain2305/866/head 2025-09-07T06:49:10.5186157Z * [new branch] gh/anijain2305/866/orig -> origin/gh/anijain2305/866/orig 2025-09-07T06:49:10.5186658Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-09-07T06:49:10.5187158Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-09-07T06:49:10.5187652Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-09-07T06:49:10.5188170Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-09-07T06:49:10.5188704Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-09-07T06:49:10.5189303Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-09-07T06:49:10.5189842Z * [new branch] gh/ankitageorge/14/base -> origin/gh/ankitageorge/14/base 2025-09-07T06:49:10.5190376Z * [new branch] gh/ankitageorge/14/head -> origin/gh/ankitageorge/14/head 2025-09-07T06:49:10.5190913Z * [new branch] gh/ankitageorge/14/orig -> origin/gh/ankitageorge/14/orig 2025-09-07T06:49:10.5191458Z * [new branch] gh/ankitageorge/15/base -> origin/gh/ankitageorge/15/base 2025-09-07T06:49:10.5191985Z * [new branch] gh/ankitageorge/15/head -> origin/gh/ankitageorge/15/head 2025-09-07T06:49:10.5192520Z * [new branch] gh/ankitageorge/15/orig -> origin/gh/ankitageorge/15/orig 2025-09-07T06:49:10.5193041Z * [new branch] gh/ankitageorge/16/base -> origin/gh/ankitageorge/16/base 2025-09-07T06:49:10.5193578Z * [new branch] gh/ankitageorge/16/head -> origin/gh/ankitageorge/16/head 2025-09-07T06:49:10.5194108Z * [new branch] gh/ankitageorge/16/orig -> origin/gh/ankitageorge/16/orig 2025-09-07T06:49:10.5194636Z * [new branch] gh/ankitageorge/17/base -> origin/gh/ankitageorge/17/base 2025-09-07T06:49:10.5195252Z * [new branch] gh/ankitageorge/17/head -> origin/gh/ankitageorge/17/head 2025-09-07T06:49:10.5195776Z * [new branch] gh/ankitageorge/17/orig -> origin/gh/ankitageorge/17/orig 2025-09-07T06:49:10.5196315Z * [new branch] gh/ankitageorge/21/base -> origin/gh/ankitageorge/21/base 2025-09-07T06:49:10.5196836Z * [new branch] gh/ankitageorge/21/head -> origin/gh/ankitageorge/21/head 2025-09-07T06:49:10.5197374Z * [new branch] gh/ankitageorge/21/orig -> origin/gh/ankitageorge/21/orig 2025-09-07T06:49:10.5197897Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-09-07T06:49:10.5198389Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-09-07T06:49:10.5198881Z * [new branch] gh/anshul-si/15/base -> origin/gh/anshul-si/15/base 2025-09-07T06:49:10.5199373Z * [new branch] gh/anshul-si/15/head -> origin/gh/anshul-si/15/head 2025-09-07T06:49:10.5199865Z * [new branch] gh/anshul-si/15/orig -> origin/gh/anshul-si/15/orig 2025-09-07T06:49:10.5200359Z * [new branch] gh/anshul-si/16/base -> origin/gh/anshul-si/16/base 2025-09-07T06:49:10.5200846Z * [new branch] gh/anshul-si/16/head -> origin/gh/anshul-si/16/head 2025-09-07T06:49:10.5201344Z * [new branch] gh/anshul-si/16/orig -> origin/gh/anshul-si/16/orig 2025-09-07T06:49:10.5201826Z * [new branch] gh/anshul-si/17/base -> origin/gh/anshul-si/17/base 2025-09-07T06:49:10.5202318Z * [new branch] gh/anshul-si/17/head -> origin/gh/anshul-si/17/head 2025-09-07T06:49:10.5202804Z * [new branch] gh/anshul-si/17/orig -> origin/gh/anshul-si/17/orig 2025-09-07T06:49:10.5203290Z * [new branch] gh/anshul-si/18/base -> origin/gh/anshul-si/18/base 2025-09-07T06:49:10.5203783Z * [new branch] gh/anshul-si/18/head -> origin/gh/anshul-si/18/head 2025-09-07T06:49:10.5204268Z * [new branch] gh/anshul-si/18/orig -> origin/gh/anshul-si/18/orig 2025-09-07T06:49:10.5204863Z * [new branch] gh/anshul-si/19/base -> origin/gh/anshul-si/19/base 2025-09-07T06:49:10.5205368Z * [new branch] gh/anshul-si/19/head -> origin/gh/anshul-si/19/head 2025-09-07T06:49:10.5205859Z * [new branch] gh/anshul-si/19/orig -> origin/gh/anshul-si/19/orig 2025-09-07T06:49:10.5206359Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-09-07T06:49:10.5206915Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-09-07T06:49:10.5207412Z * [new branch] gh/anshul-si/20/base -> origin/gh/anshul-si/20/base 2025-09-07T06:49:10.5207899Z * [new branch] gh/anshul-si/20/head -> origin/gh/anshul-si/20/head 2025-09-07T06:49:10.5208394Z * [new branch] gh/anshul-si/20/orig -> origin/gh/anshul-si/20/orig 2025-09-07T06:49:10.5208894Z * [new branch] gh/anshul-si/21/base -> origin/gh/anshul-si/21/base 2025-09-07T06:49:10.5209383Z * [new branch] gh/anshul-si/21/head -> origin/gh/anshul-si/21/head 2025-09-07T06:49:10.5209878Z * [new branch] gh/anshul-si/21/orig -> origin/gh/anshul-si/21/orig 2025-09-07T06:49:10.5210360Z * [new branch] gh/anshul-si/22/base -> origin/gh/anshul-si/22/base 2025-09-07T06:49:10.5210847Z * [new branch] gh/anshul-si/22/head -> origin/gh/anshul-si/22/head 2025-09-07T06:49:10.5211342Z * [new branch] gh/anshul-si/22/orig -> origin/gh/anshul-si/22/orig 2025-09-07T06:49:10.5211821Z * [new branch] gh/anshul-si/23/base -> origin/gh/anshul-si/23/base 2025-09-07T06:49:10.5212825Z * [new branch] gh/anshul-si/23/head -> origin/gh/anshul-si/23/head 2025-09-07T06:49:10.5213380Z * [new branch] gh/anshul-si/23/orig -> origin/gh/anshul-si/23/orig 2025-09-07T06:49:10.5213925Z * [new branch] gh/anshul-si/24/base -> origin/gh/anshul-si/24/base 2025-09-07T06:49:10.5214430Z * [new branch] gh/anshul-si/24/head -> origin/gh/anshul-si/24/head 2025-09-07T06:49:10.5214917Z * [new branch] gh/anshul-si/24/orig -> origin/gh/anshul-si/24/orig 2025-09-07T06:49:10.5215425Z * [new branch] gh/anshul-si/25/base -> origin/gh/anshul-si/25/base 2025-09-07T06:49:10.5215908Z * [new branch] gh/anshul-si/25/head -> origin/gh/anshul-si/25/head 2025-09-07T06:49:10.5216407Z * [new branch] gh/anshul-si/25/orig -> origin/gh/anshul-si/25/orig 2025-09-07T06:49:10.5216897Z * [new branch] gh/anshul-si/26/base -> origin/gh/anshul-si/26/base 2025-09-07T06:49:10.5217384Z * [new branch] gh/anshul-si/26/head -> origin/gh/anshul-si/26/head 2025-09-07T06:49:10.5217881Z * [new branch] gh/anshul-si/26/orig -> origin/gh/anshul-si/26/orig 2025-09-07T06:49:10.5218360Z * [new branch] gh/anshul-si/27/base -> origin/gh/anshul-si/27/base 2025-09-07T06:49:10.5218891Z * [new branch] gh/anshul-si/27/head -> origin/gh/anshul-si/27/head 2025-09-07T06:49:10.5219412Z * [new branch] gh/anshul-si/27/orig -> origin/gh/anshul-si/27/orig 2025-09-07T06:49:10.5219911Z * [new branch] gh/anshul-si/28/base -> origin/gh/anshul-si/28/base 2025-09-07T06:49:10.5220107Z * [new branch] gh/anshul-si/28/head -> origin/gh/anshul-si/28/head 2025-09-07T06:49:10.5220303Z * [new branch] gh/anshul-si/28/orig -> origin/gh/anshul-si/28/orig 2025-09-07T06:49:10.5220490Z * [new branch] gh/anshul-si/29/base -> origin/gh/anshul-si/29/base 2025-09-07T06:49:10.5220680Z * [new branch] gh/anshul-si/29/head -> origin/gh/anshul-si/29/head 2025-09-07T06:49:10.5220874Z * [new branch] gh/anshul-si/29/orig -> origin/gh/anshul-si/29/orig 2025-09-07T06:49:10.5221061Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-09-07T06:49:10.5221250Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-09-07T06:49:10.5221442Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-09-07T06:49:10.5221628Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-09-07T06:49:10.5221894Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-09-07T06:49:10.5222107Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-09-07T06:49:10.5222307Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-09-07T06:49:10.5222509Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-09-07T06:49:10.5222713Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-09-07T06:49:10.5222901Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-09-07T06:49:10.5223087Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-09-07T06:49:10.5223275Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-09-07T06:49:10.5223470Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-09-07T06:49:10.5223661Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-09-07T06:49:10.5223847Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-09-07T06:49:10.5224114Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-09-07T06:49:10.5224301Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-09-07T06:49:10.5224488Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-09-07T06:49:10.5224724Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-09-07T06:49:10.5224915Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-09-07T06:49:10.5225139Z * [new branch] gh/bdhirsh/667/base -> origin/gh/bdhirsh/667/base 2025-09-07T06:49:10.5225329Z * [new branch] gh/bdhirsh/667/head -> origin/gh/bdhirsh/667/head 2025-09-07T06:49:10.5225516Z * [new branch] gh/bdhirsh/667/orig -> origin/gh/bdhirsh/667/orig 2025-09-07T06:49:10.5225699Z * [new branch] gh/bdhirsh/668/base -> origin/gh/bdhirsh/668/base 2025-09-07T06:49:10.5225891Z * [new branch] gh/bdhirsh/668/head -> origin/gh/bdhirsh/668/head 2025-09-07T06:49:10.5226075Z * [new branch] gh/bdhirsh/668/orig -> origin/gh/bdhirsh/668/orig 2025-09-07T06:49:10.5226261Z * [new branch] gh/bdhirsh/669/base -> origin/gh/bdhirsh/669/base 2025-09-07T06:49:10.5226453Z * [new branch] gh/bdhirsh/669/head -> origin/gh/bdhirsh/669/head 2025-09-07T06:49:10.5226635Z * [new branch] gh/bdhirsh/669/orig -> origin/gh/bdhirsh/669/orig 2025-09-07T06:49:10.5226821Z * [new branch] gh/bdhirsh/670/base -> origin/gh/bdhirsh/670/base 2025-09-07T06:49:10.5227012Z * [new branch] gh/bdhirsh/670/head -> origin/gh/bdhirsh/670/head 2025-09-07T06:49:10.5227198Z * [new branch] gh/bdhirsh/670/orig -> origin/gh/bdhirsh/670/orig 2025-09-07T06:49:10.5227433Z * [new branch] gh/benjaminglass1/100/base -> origin/gh/benjaminglass1/100/base 2025-09-07T06:49:10.5227665Z * [new branch] gh/benjaminglass1/100/head -> origin/gh/benjaminglass1/100/head 2025-09-07T06:49:10.5227900Z * [new branch] gh/benjaminglass1/100/orig -> origin/gh/benjaminglass1/100/orig 2025-09-07T06:49:10.5228123Z * [new branch] gh/benjaminglass1/101/base -> origin/gh/benjaminglass1/101/base 2025-09-07T06:49:10.5228343Z * [new branch] gh/benjaminglass1/101/head -> origin/gh/benjaminglass1/101/head 2025-09-07T06:49:10.5228578Z * [new branch] gh/benjaminglass1/101/orig -> origin/gh/benjaminglass1/101/orig 2025-09-07T06:49:10.5228801Z * [new branch] gh/benjaminglass1/102/base -> origin/gh/benjaminglass1/102/base 2025-09-07T06:49:10.5229420Z * [new branch] gh/benjaminglass1/102/head -> origin/gh/benjaminglass1/102/head 2025-09-07T06:49:10.5229658Z * [new branch] gh/benjaminglass1/102/orig -> origin/gh/benjaminglass1/102/orig 2025-09-07T06:49:10.5229884Z * [new branch] gh/benjaminglass1/103/base -> origin/gh/benjaminglass1/103/base 2025-09-07T06:49:10.5230105Z * [new branch] gh/benjaminglass1/103/head -> origin/gh/benjaminglass1/103/head 2025-09-07T06:49:10.5230380Z * [new branch] gh/benjaminglass1/103/orig -> origin/gh/benjaminglass1/103/orig 2025-09-07T06:49:10.5230608Z * [new branch] gh/benjaminglass1/104/base -> origin/gh/benjaminglass1/104/base 2025-09-07T06:49:10.5230868Z * [new branch] gh/benjaminglass1/104/head -> origin/gh/benjaminglass1/104/head 2025-09-07T06:49:10.5231107Z * [new branch] gh/benjaminglass1/104/orig -> origin/gh/benjaminglass1/104/orig 2025-09-07T06:49:10.5231339Z * [new branch] gh/benjaminglass1/105/base -> origin/gh/benjaminglass1/105/base 2025-09-07T06:49:10.5231563Z * [new branch] gh/benjaminglass1/105/head -> origin/gh/benjaminglass1/105/head 2025-09-07T06:49:10.5231861Z * [new branch] gh/benjaminglass1/105/orig -> origin/gh/benjaminglass1/105/orig 2025-09-07T06:49:10.5232080Z * [new branch] gh/benjaminglass1/106/base -> origin/gh/benjaminglass1/106/base 2025-09-07T06:49:10.5232299Z * [new branch] gh/benjaminglass1/106/head -> origin/gh/benjaminglass1/106/head 2025-09-07T06:49:10.5232530Z * [new branch] gh/benjaminglass1/106/orig -> origin/gh/benjaminglass1/106/orig 2025-09-07T06:49:10.5232753Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-09-07T06:49:10.5232972Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-09-07T06:49:10.5233205Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-09-07T06:49:10.5233436Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-09-07T06:49:10.5233660Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-09-07T06:49:10.5233894Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-09-07T06:49:10.5234117Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-09-07T06:49:10.5234336Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-09-07T06:49:10.5234564Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-09-07T06:49:10.5234785Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-09-07T06:49:10.5235003Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-09-07T06:49:10.5235233Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-09-07T06:49:10.5235462Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-09-07T06:49:10.5235688Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-09-07T06:49:10.5235909Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-09-07T06:49:10.5236179Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-09-07T06:49:10.5236398Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-09-07T06:49:10.5236659Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-09-07T06:49:10.5236889Z * [new branch] gh/benjaminglass1/97/base -> origin/gh/benjaminglass1/97/base 2025-09-07T06:49:10.5237180Z * [new branch] gh/benjaminglass1/97/head -> origin/gh/benjaminglass1/97/head 2025-09-07T06:49:10.5237398Z * [new branch] gh/benjaminglass1/97/orig -> origin/gh/benjaminglass1/97/orig 2025-09-07T06:49:10.5237633Z * [new branch] gh/benjaminglass1/99/base -> origin/gh/benjaminglass1/99/base 2025-09-07T06:49:10.5237851Z * [new branch] gh/benjaminglass1/99/head -> origin/gh/benjaminglass1/99/head 2025-09-07T06:49:10.5238067Z * [new branch] gh/benjaminglass1/99/orig -> origin/gh/benjaminglass1/99/orig 2025-09-07T06:49:10.5238278Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-09-07T06:49:10.5238479Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-09-07T06:49:10.5238686Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-09-07T06:49:10.5238897Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-09-07T06:49:10.5239095Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-09-07T06:49:10.5239292Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-09-07T06:49:10.5239572Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-09-07T06:49:10.5239767Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-09-07T06:49:10.5239964Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-09-07T06:49:10.5240166Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-09-07T06:49:10.5240362Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-09-07T06:49:10.5240557Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-09-07T06:49:10.5240763Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-09-07T06:49:10.5240965Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-09-07T06:49:10.5241171Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-09-07T06:49:10.5241368Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-09-07T06:49:10.5241575Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-09-07T06:49:10.5241808Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-09-07T06:49:10.5242007Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-09-07T06:49:10.5242245Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-09-07T06:49:10.5242450Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-09-07T06:49:10.5242645Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-09-07T06:49:10.5242851Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-09-07T06:49:10.5243050Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-09-07T06:49:10.5243245Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-09-07T06:49:10.5243450Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-09-07T06:49:10.5243647Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-09-07T06:49:10.5243842Z * [new branch] gh/bobrenjc93/537/base -> origin/gh/bobrenjc93/537/base 2025-09-07T06:49:10.5244043Z * [new branch] gh/bobrenjc93/537/head -> origin/gh/bobrenjc93/537/head 2025-09-07T06:49:10.5244301Z * [new branch] gh/bobrenjc93/537/orig -> origin/gh/bobrenjc93/537/orig 2025-09-07T06:49:10.5244574Z * [new branch] gh/bobrenjc93/539/base -> origin/gh/bobrenjc93/539/base 2025-09-07T06:49:10.5244796Z * [new branch] gh/bobrenjc93/539/head -> origin/gh/bobrenjc93/539/head 2025-09-07T06:49:10.5244990Z * [new branch] gh/bobrenjc93/539/orig -> origin/gh/bobrenjc93/539/orig 2025-09-07T06:49:10.5245187Z * [new branch] gh/bobrenjc93/540/base -> origin/gh/bobrenjc93/540/base 2025-09-07T06:49:10.5245393Z * [new branch] gh/bobrenjc93/540/head -> origin/gh/bobrenjc93/540/head 2025-09-07T06:49:10.5245592Z * [new branch] gh/bobrenjc93/540/orig -> origin/gh/bobrenjc93/540/orig 2025-09-07T06:49:10.5245786Z * [new branch] gh/bobrenjc93/541/base -> origin/gh/bobrenjc93/541/base 2025-09-07T06:49:10.5245988Z * [new branch] gh/bobrenjc93/541/head -> origin/gh/bobrenjc93/541/head 2025-09-07T06:49:10.5246199Z * [new branch] gh/bobrenjc93/541/orig -> origin/gh/bobrenjc93/541/orig 2025-09-07T06:49:10.5246399Z * [new branch] gh/bobrenjc93/542/base -> origin/gh/bobrenjc93/542/base 2025-09-07T06:49:10.5246662Z * [new branch] gh/bobrenjc93/542/head -> origin/gh/bobrenjc93/542/head 2025-09-07T06:49:10.5246867Z * [new branch] gh/bobrenjc93/542/orig -> origin/gh/bobrenjc93/542/orig 2025-09-07T06:49:10.5247061Z * [new branch] gh/bobrenjc93/543/base -> origin/gh/bobrenjc93/543/base 2025-09-07T06:49:10.5247259Z * [new branch] gh/bobrenjc93/543/head -> origin/gh/bobrenjc93/543/head 2025-09-07T06:49:10.5247503Z * [new branch] gh/bobrenjc93/543/orig -> origin/gh/bobrenjc93/543/orig 2025-09-07T06:49:10.5247702Z * [new branch] gh/bobrenjc93/544/base -> origin/gh/bobrenjc93/544/base 2025-09-07T06:49:10.5247904Z * [new branch] gh/bobrenjc93/544/head -> origin/gh/bobrenjc93/544/head 2025-09-07T06:49:10.5248145Z * [new branch] gh/bobrenjc93/544/orig -> origin/gh/bobrenjc93/544/orig 2025-09-07T06:49:10.5248347Z * [new branch] gh/bobrenjc93/545/base -> origin/gh/bobrenjc93/545/base 2025-09-07T06:49:10.5248547Z * [new branch] gh/bobrenjc93/545/head -> origin/gh/bobrenjc93/545/head 2025-09-07T06:49:10.5248752Z * [new branch] gh/bobrenjc93/545/orig -> origin/gh/bobrenjc93/545/orig 2025-09-07T06:49:10.5248951Z * [new branch] gh/bobrenjc93/546/base -> origin/gh/bobrenjc93/546/base 2025-09-07T06:49:10.5249152Z * [new branch] gh/bobrenjc93/546/head -> origin/gh/bobrenjc93/546/head 2025-09-07T06:49:10.5249363Z * [new branch] gh/bobrenjc93/546/orig -> origin/gh/bobrenjc93/546/orig 2025-09-07T06:49:10.5249565Z * [new branch] gh/bobrenjc93/547/base -> origin/gh/bobrenjc93/547/base 2025-09-07T06:49:10.5249765Z * [new branch] gh/bobrenjc93/547/head -> origin/gh/bobrenjc93/547/head 2025-09-07T06:49:10.5249967Z * [new branch] gh/bobrenjc93/547/orig -> origin/gh/bobrenjc93/547/orig 2025-09-07T06:49:10.5250167Z * [new branch] gh/bobrenjc93/548/base -> origin/gh/bobrenjc93/548/base 2025-09-07T06:49:10.5250365Z * [new branch] gh/bobrenjc93/548/head -> origin/gh/bobrenjc93/548/head 2025-09-07T06:49:10.5250570Z * [new branch] gh/bobrenjc93/548/orig -> origin/gh/bobrenjc93/548/orig 2025-09-07T06:49:10.5250767Z * [new branch] gh/bobrenjc93/549/base -> origin/gh/bobrenjc93/549/base 2025-09-07T06:49:10.5250969Z * [new branch] gh/bobrenjc93/549/head -> origin/gh/bobrenjc93/549/head 2025-09-07T06:49:10.5251165Z * [new branch] gh/bobrenjc93/549/orig -> origin/gh/bobrenjc93/549/orig 2025-09-07T06:49:10.5251442Z * [new branch] gh/bobrenjc93/550/base -> origin/gh/bobrenjc93/550/base 2025-09-07T06:49:10.5251641Z * [new branch] gh/bobrenjc93/550/head -> origin/gh/bobrenjc93/550/head 2025-09-07T06:49:10.5251849Z * [new branch] gh/bobrenjc93/550/orig -> origin/gh/bobrenjc93/550/orig 2025-09-07T06:49:10.5252056Z * [new branch] gh/bobrenjc93/551/base -> origin/gh/bobrenjc93/551/base 2025-09-07T06:49:10.5252254Z * [new branch] gh/bobrenjc93/551/head -> origin/gh/bobrenjc93/551/head 2025-09-07T06:49:10.5252450Z * [new branch] gh/bobrenjc93/551/orig -> origin/gh/bobrenjc93/551/orig 2025-09-07T06:49:10.5252657Z * [new branch] gh/bobrenjc93/552/base -> origin/gh/bobrenjc93/552/base 2025-09-07T06:49:10.5252853Z * [new branch] gh/bobrenjc93/552/head -> origin/gh/bobrenjc93/552/head 2025-09-07T06:49:10.5253050Z * [new branch] gh/bobrenjc93/552/orig -> origin/gh/bobrenjc93/552/orig 2025-09-07T06:49:10.5253299Z * [new branch] gh/bobrenjc93/553/base -> origin/gh/bobrenjc93/553/base 2025-09-07T06:49:10.5253500Z * [new branch] gh/bobrenjc93/553/head -> origin/gh/bobrenjc93/553/head 2025-09-07T06:49:10.5253797Z * [new branch] gh/bobrenjc93/553/orig -> origin/gh/bobrenjc93/553/orig 2025-09-07T06:49:10.5254003Z * [new branch] gh/bobrenjc93/554/base -> origin/gh/bobrenjc93/554/base 2025-09-07T06:49:10.5254202Z * [new branch] gh/bobrenjc93/554/head -> origin/gh/bobrenjc93/554/head 2025-09-07T06:49:10.5254398Z * [new branch] gh/bobrenjc93/554/orig -> origin/gh/bobrenjc93/554/orig 2025-09-07T06:49:10.5254598Z * [new branch] gh/bobrenjc93/555/base -> origin/gh/bobrenjc93/555/base 2025-09-07T06:49:10.5254796Z * [new branch] gh/bobrenjc93/555/head -> origin/gh/bobrenjc93/555/head 2025-09-07T06:49:10.5254997Z * [new branch] gh/bobrenjc93/555/orig -> origin/gh/bobrenjc93/555/orig 2025-09-07T06:49:10.5255199Z * [new branch] gh/bobrenjc93/556/base -> origin/gh/bobrenjc93/556/base 2025-09-07T06:49:10.5255403Z * [new branch] gh/bobrenjc93/556/head -> origin/gh/bobrenjc93/556/head 2025-09-07T06:49:10.5255599Z * [new branch] gh/bobrenjc93/556/orig -> origin/gh/bobrenjc93/556/orig 2025-09-07T06:49:10.5255827Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-09-07T06:49:10.5256044Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-09-07T06:49:10.5256220Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-09-07T06:49:10.5256390Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-09-07T06:49:10.5256564Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-09-07T06:49:10.5256734Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-09-07T06:49:10.5256900Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-09-07T06:49:10.5257071Z * [new branch] gh/c00w/53/base -> origin/gh/c00w/53/base 2025-09-07T06:49:10.5257239Z * [new branch] gh/c00w/53/head -> origin/gh/c00w/53/head 2025-09-07T06:49:10.5257402Z * [new branch] gh/c00w/53/orig -> origin/gh/c00w/53/orig 2025-09-07T06:49:10.5257572Z * [new branch] gh/c00w/54/base -> origin/gh/c00w/54/base 2025-09-07T06:49:10.5257733Z * [new branch] gh/c00w/54/head -> origin/gh/c00w/54/head 2025-09-07T06:49:10.5257899Z * [new branch] gh/c00w/54/orig -> origin/gh/c00w/54/orig 2025-09-07T06:49:10.5258068Z * [new branch] gh/c00w/55/base -> origin/gh/c00w/55/base 2025-09-07T06:49:10.5258295Z * [new branch] gh/c00w/55/head -> origin/gh/c00w/55/head 2025-09-07T06:49:10.5258460Z * [new branch] gh/c00w/55/orig -> origin/gh/c00w/55/orig 2025-09-07T06:49:10.5258634Z * [new branch] gh/c00w/56/base -> origin/gh/c00w/56/base 2025-09-07T06:49:10.5258800Z * [new branch] gh/c00w/56/head -> origin/gh/c00w/56/head 2025-09-07T06:49:10.5259005Z * [new branch] gh/c00w/56/orig -> origin/gh/c00w/56/orig 2025-09-07T06:49:10.5259206Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-09-07T06:49:10.5259426Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-09-07T06:49:10.5259606Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-09-07T06:49:10.5259817Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-09-07T06:49:10.5260041Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-09-07T06:49:10.5260252Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-09-07T06:49:10.5260534Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-09-07T06:49:10.5260750Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-09-07T06:49:10.5260961Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-09-07T06:49:10.5261168Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-09-07T06:49:10.5261383Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-09-07T06:49:10.5261590Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-09-07T06:49:10.5261808Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-09-07T06:49:10.5262022Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-09-07T06:49:10.5262228Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-09-07T06:49:10.5262440Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-09-07T06:49:10.5262660Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-09-07T06:49:10.5262867Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-09-07T06:49:10.5263079Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-09-07T06:49:10.5263302Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-09-07T06:49:10.5263510Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-09-07T06:49:10.5263728Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-09-07T06:49:10.5263943Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-09-07T06:49:10.5264155Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-09-07T06:49:10.5264361Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-09-07T06:49:10.5264582Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-09-07T06:49:10.5264830Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-09-07T06:49:10.5265038Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-09-07T06:49:10.5265287Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-09-07T06:49:10.5265579Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-09-07T06:49:10.5265790Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-09-07T06:49:10.5265997Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-09-07T06:49:10.5266215Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-09-07T06:49:10.5266428Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-09-07T06:49:10.5266632Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-09-07T06:49:10.5266846Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-09-07T06:49:10.5267053Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-09-07T06:49:10.5267258Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-09-07T06:49:10.5267480Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-09-07T06:49:10.5267687Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-09-07T06:49:10.5267955Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-09-07T06:49:10.5268172Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-09-07T06:49:10.5268376Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-09-07T06:49:10.5268584Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-09-07T06:49:10.5268797Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-09-07T06:49:10.5269002Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-09-07T06:49:10.5269211Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-09-07T06:49:10.5269427Z * [new branch] gh/coconutruben/28/base -> origin/gh/coconutruben/28/base 2025-09-07T06:49:10.5269636Z * [new branch] gh/coconutruben/28/head -> origin/gh/coconutruben/28/head 2025-09-07T06:49:10.5269842Z * [new branch] gh/coconutruben/28/orig -> origin/gh/coconutruben/28/orig 2025-09-07T06:49:10.5270055Z * [new branch] gh/coconutruben/29/base -> origin/gh/coconutruben/29/base 2025-09-07T06:49:10.5270263Z * [new branch] gh/coconutruben/29/head -> origin/gh/coconutruben/29/head 2025-09-07T06:49:10.5270513Z * [new branch] gh/coconutruben/29/orig -> origin/gh/coconutruben/29/orig 2025-09-07T06:49:10.5270724Z * [new branch] gh/coconutruben/30/base -> origin/gh/coconutruben/30/base 2025-09-07T06:49:10.5270978Z * [new branch] gh/coconutruben/30/head -> origin/gh/coconutruben/30/head 2025-09-07T06:49:10.5271189Z * [new branch] gh/coconutruben/30/orig -> origin/gh/coconutruben/30/orig 2025-09-07T06:49:10.5271393Z * [new branch] gh/coconutruben/31/base -> origin/gh/coconutruben/31/base 2025-09-07T06:49:10.5271616Z * [new branch] gh/coconutruben/31/head -> origin/gh/coconutruben/31/head 2025-09-07T06:49:10.5271822Z * [new branch] gh/coconutruben/31/orig -> origin/gh/coconutruben/31/orig 2025-09-07T06:49:10.5272032Z * [new branch] gh/coconutruben/32/base -> origin/gh/coconutruben/32/base 2025-09-07T06:49:10.5272249Z * [new branch] gh/coconutruben/32/head -> origin/gh/coconutruben/32/head 2025-09-07T06:49:10.5272456Z * [new branch] gh/coconutruben/32/orig -> origin/gh/coconutruben/32/orig 2025-09-07T06:49:10.5272661Z * [new branch] gh/coconutruben/33/base -> origin/gh/coconutruben/33/base 2025-09-07T06:49:10.5272945Z * [new branch] gh/coconutruben/33/head -> origin/gh/coconutruben/33/head 2025-09-07T06:49:10.5273156Z * [new branch] gh/coconutruben/33/orig -> origin/gh/coconutruben/33/orig 2025-09-07T06:49:10.5273366Z * [new branch] gh/coconutruben/34/base -> origin/gh/coconutruben/34/base 2025-09-07T06:49:10.5273584Z * [new branch] gh/coconutruben/34/head -> origin/gh/coconutruben/34/head 2025-09-07T06:49:10.5273790Z * [new branch] gh/coconutruben/34/orig -> origin/gh/coconutruben/34/orig 2025-09-07T06:49:10.5273997Z * [new branch] gh/coconutruben/35/base -> origin/gh/coconutruben/35/base 2025-09-07T06:49:10.5274210Z * [new branch] gh/coconutruben/35/head -> origin/gh/coconutruben/35/head 2025-09-07T06:49:10.5274415Z * [new branch] gh/coconutruben/35/orig -> origin/gh/coconutruben/35/orig 2025-09-07T06:49:10.5274632Z * [new branch] gh/coconutruben/36/base -> origin/gh/coconutruben/36/base 2025-09-07T06:49:10.5274852Z * [new branch] gh/coconutruben/36/head -> origin/gh/coconutruben/36/head 2025-09-07T06:49:10.5275071Z * [new branch] gh/coconutruben/36/orig -> origin/gh/coconutruben/36/orig 2025-09-07T06:49:10.5275343Z * [new branch] gh/coconutruben/37/base -> origin/gh/coconutruben/37/base 2025-09-07T06:49:10.5275554Z * [new branch] gh/coconutruben/37/head -> origin/gh/coconutruben/37/head 2025-09-07T06:49:10.5275765Z * [new branch] gh/coconutruben/37/orig -> origin/gh/coconutruben/37/orig 2025-09-07T06:49:10.5275971Z * [new branch] gh/coconutruben/38/base -> origin/gh/coconutruben/38/base 2025-09-07T06:49:10.5276222Z * [new branch] gh/coconutruben/38/head -> origin/gh/coconutruben/38/head 2025-09-07T06:49:10.5276443Z * [new branch] gh/coconutruben/38/orig -> origin/gh/coconutruben/38/orig 2025-09-07T06:49:10.5276696Z * [new branch] gh/coconutruben/39/base -> origin/gh/coconutruben/39/base 2025-09-07T06:49:10.5276908Z * [new branch] gh/coconutruben/39/head -> origin/gh/coconutruben/39/head 2025-09-07T06:49:10.5277129Z * [new branch] gh/coconutruben/39/orig -> origin/gh/coconutruben/39/orig 2025-09-07T06:49:10.5277338Z * [new branch] gh/coconutruben/40/base -> origin/gh/coconutruben/40/base 2025-09-07T06:49:10.5277548Z * [new branch] gh/coconutruben/40/head -> origin/gh/coconutruben/40/head 2025-09-07T06:49:10.5277764Z * [new branch] gh/coconutruben/40/orig -> origin/gh/coconutruben/40/orig 2025-09-07T06:49:10.5277969Z * [new branch] gh/coconutruben/41/base -> origin/gh/coconutruben/41/base 2025-09-07T06:49:10.5278174Z * [new branch] gh/coconutruben/41/head -> origin/gh/coconutruben/41/head 2025-09-07T06:49:10.5278391Z * [new branch] gh/coconutruben/41/orig -> origin/gh/coconutruben/41/orig 2025-09-07T06:49:10.5278598Z * [new branch] gh/coconutruben/42/base -> origin/gh/coconutruben/42/base 2025-09-07T06:49:10.5278811Z * [new branch] gh/coconutruben/42/head -> origin/gh/coconutruben/42/head 2025-09-07T06:49:10.5279034Z * [new branch] gh/coconutruben/42/orig -> origin/gh/coconutruben/42/orig 2025-09-07T06:49:10.5279243Z * [new branch] gh/coconutruben/43/base -> origin/gh/coconutruben/43/base 2025-09-07T06:49:10.5279450Z * [new branch] gh/coconutruben/43/head -> origin/gh/coconutruben/43/head 2025-09-07T06:49:10.5279667Z * [new branch] gh/coconutruben/43/orig -> origin/gh/coconutruben/43/orig 2025-09-07T06:49:10.5279874Z * [new branch] gh/coconutruben/44/base -> origin/gh/coconutruben/44/base 2025-09-07T06:49:10.5280084Z * [new branch] gh/coconutruben/44/head -> origin/gh/coconutruben/44/head 2025-09-07T06:49:10.5280367Z * [new branch] gh/coconutruben/44/orig -> origin/gh/coconutruben/44/orig 2025-09-07T06:49:10.5280578Z * [new branch] gh/coconutruben/45/base -> origin/gh/coconutruben/45/base 2025-09-07T06:49:10.5280789Z * [new branch] gh/coconutruben/45/head -> origin/gh/coconutruben/45/head 2025-09-07T06:49:10.5281002Z * [new branch] gh/coconutruben/45/orig -> origin/gh/coconutruben/45/orig 2025-09-07T06:49:10.5281212Z * [new branch] gh/coconutruben/46/base -> origin/gh/coconutruben/46/base 2025-09-07T06:49:10.5281417Z * [new branch] gh/coconutruben/46/head -> origin/gh/coconutruben/46/head 2025-09-07T06:49:10.5282172Z * [new branch] gh/coconutruben/46/orig -> origin/gh/coconutruben/46/orig 2025-09-07T06:49:10.5282379Z * [new branch] gh/coconutruben/47/base -> origin/gh/coconutruben/47/base 2025-09-07T06:49:10.5282633Z * [new branch] gh/coconutruben/47/head -> origin/gh/coconutruben/47/head 2025-09-07T06:49:10.5282851Z * [new branch] gh/coconutruben/47/orig -> origin/gh/coconutruben/47/orig 2025-09-07T06:49:10.5283060Z * [new branch] gh/coconutruben/48/base -> origin/gh/coconutruben/48/base 2025-09-07T06:49:10.5283339Z * [new branch] gh/coconutruben/48/head -> origin/gh/coconutruben/48/head 2025-09-07T06:49:10.5283545Z * [new branch] gh/coconutruben/48/orig -> origin/gh/coconutruben/48/orig 2025-09-07T06:49:10.5283762Z * [new branch] gh/coconutruben/49/base -> origin/gh/coconutruben/49/base 2025-09-07T06:49:10.5283974Z * [new branch] gh/coconutruben/49/head -> origin/gh/coconutruben/49/head 2025-09-07T06:49:10.5284180Z * [new branch] gh/coconutruben/49/orig -> origin/gh/coconutruben/49/orig 2025-09-07T06:49:10.5284455Z * [new branch] gh/coconutruben/50/base -> origin/gh/coconutruben/50/base 2025-09-07T06:49:10.5284672Z * [new branch] gh/coconutruben/50/head -> origin/gh/coconutruben/50/head 2025-09-07T06:49:10.5284883Z * [new branch] gh/coconutruben/50/orig -> origin/gh/coconutruben/50/orig 2025-09-07T06:49:10.5285101Z * [new branch] gh/coconutruben/51/base -> origin/gh/coconutruben/51/base 2025-09-07T06:49:10.5285307Z * [new branch] gh/coconutruben/51/head -> origin/gh/coconutruben/51/head 2025-09-07T06:49:10.5285520Z * [new branch] gh/coconutruben/51/orig -> origin/gh/coconutruben/51/orig 2025-09-07T06:49:10.5285746Z * [new branch] gh/coconutruben/52/base -> origin/gh/coconutruben/52/base 2025-09-07T06:49:10.5285956Z * [new branch] gh/coconutruben/52/head -> origin/gh/coconutruben/52/head 2025-09-07T06:49:10.5286164Z * [new branch] gh/coconutruben/52/orig -> origin/gh/coconutruben/52/orig 2025-09-07T06:49:10.5286386Z * [new branch] gh/coconutruben/53/base -> origin/gh/coconutruben/53/base 2025-09-07T06:49:10.5286594Z * [new branch] gh/coconutruben/53/head -> origin/gh/coconutruben/53/head 2025-09-07T06:49:10.5286808Z * [new branch] gh/coconutruben/53/orig -> origin/gh/coconutruben/53/orig 2025-09-07T06:49:10.5287029Z * [new branch] gh/coconutruben/54/base -> origin/gh/coconutruben/54/base 2025-09-07T06:49:10.5287240Z * [new branch] gh/coconutruben/54/head -> origin/gh/coconutruben/54/head 2025-09-07T06:49:10.5287448Z * [new branch] gh/coconutruben/54/orig -> origin/gh/coconutruben/54/orig 2025-09-07T06:49:10.5287663Z * [new branch] gh/coconutruben/55/base -> origin/gh/coconutruben/55/base 2025-09-07T06:49:10.5287874Z * [new branch] gh/coconutruben/55/head -> origin/gh/coconutruben/55/head 2025-09-07T06:49:10.5288127Z * [new branch] gh/coconutruben/55/orig -> origin/gh/coconutruben/55/orig 2025-09-07T06:49:10.5288408Z * [new branch] gh/coconutruben/56/base -> origin/gh/coconutruben/56/base 2025-09-07T06:49:10.5288658Z * [new branch] gh/coconutruben/56/head -> origin/gh/coconutruben/56/head 2025-09-07T06:49:10.5288875Z * [new branch] gh/coconutruben/56/orig -> origin/gh/coconutruben/56/orig 2025-09-07T06:49:10.5289082Z * [new branch] gh/coconutruben/57/base -> origin/gh/coconutruben/57/base 2025-09-07T06:49:10.5289299Z * [new branch] gh/coconutruben/57/head -> origin/gh/coconutruben/57/head 2025-09-07T06:49:10.5289510Z * [new branch] gh/coconutruben/57/orig -> origin/gh/coconutruben/57/orig 2025-09-07T06:49:10.5289722Z * [new branch] gh/coconutruben/58/base -> origin/gh/coconutruben/58/base 2025-09-07T06:49:10.5289941Z * [new branch] gh/coconutruben/58/head -> origin/gh/coconutruben/58/head 2025-09-07T06:49:10.5290152Z * [new branch] gh/coconutruben/58/orig -> origin/gh/coconutruben/58/orig 2025-09-07T06:49:10.5290359Z * [new branch] gh/coconutruben/59/base -> origin/gh/coconutruben/59/base 2025-09-07T06:49:10.5290574Z * [new branch] gh/coconutruben/59/head -> origin/gh/coconutruben/59/head 2025-09-07T06:49:10.5290848Z * [new branch] gh/coconutruben/59/orig -> origin/gh/coconutruben/59/orig 2025-09-07T06:49:10.5291056Z * [new branch] gh/coconutruben/60/base -> origin/gh/coconutruben/60/base 2025-09-07T06:49:10.5291271Z * [new branch] gh/coconutruben/60/head -> origin/gh/coconutruben/60/head 2025-09-07T06:49:10.5291476Z * [new branch] gh/coconutruben/60/orig -> origin/gh/coconutruben/60/orig 2025-09-07T06:49:10.5291687Z * [new branch] gh/coconutruben/61/base -> origin/gh/coconutruben/61/base 2025-09-07T06:49:10.5291905Z * [new branch] gh/coconutruben/61/head -> origin/gh/coconutruben/61/head 2025-09-07T06:49:10.5292115Z * [new branch] gh/coconutruben/61/orig -> origin/gh/coconutruben/61/orig 2025-09-07T06:49:10.5292323Z * [new branch] gh/coconutruben/62/base -> origin/gh/coconutruben/62/base 2025-09-07T06:49:10.5292547Z * [new branch] gh/coconutruben/62/head -> origin/gh/coconutruben/62/head 2025-09-07T06:49:10.5292756Z * [new branch] gh/coconutruben/62/orig -> origin/gh/coconutruben/62/orig 2025-09-07T06:49:10.5292966Z * [new branch] gh/coconutruben/63/base -> origin/gh/coconutruben/63/base 2025-09-07T06:49:10.5293186Z * [new branch] gh/coconutruben/63/head -> origin/gh/coconutruben/63/head 2025-09-07T06:49:10.5293392Z * [new branch] gh/coconutruben/63/orig -> origin/gh/coconutruben/63/orig 2025-09-07T06:49:10.5293603Z * [new branch] gh/coconutruben/64/base -> origin/gh/coconutruben/64/base 2025-09-07T06:49:10.5293822Z * [new branch] gh/coconutruben/64/head -> origin/gh/coconutruben/64/head 2025-09-07T06:49:10.5294073Z * [new branch] gh/coconutruben/64/orig -> origin/gh/coconutruben/64/orig 2025-09-07T06:49:10.5294288Z * [new branch] gh/coconutruben/65/base -> origin/gh/coconutruben/65/base 2025-09-07T06:49:10.5294497Z * [new branch] gh/coconutruben/65/head -> origin/gh/coconutruben/65/head 2025-09-07T06:49:10.5294762Z * [new branch] gh/coconutruben/65/orig -> origin/gh/coconutruben/65/orig 2025-09-07T06:49:10.5294974Z * [new branch] gh/coconutruben/66/base -> origin/gh/coconutruben/66/base 2025-09-07T06:49:10.5295185Z * [new branch] gh/coconutruben/66/head -> origin/gh/coconutruben/66/head 2025-09-07T06:49:10.5295402Z * [new branch] gh/coconutruben/66/orig -> origin/gh/coconutruben/66/orig 2025-09-07T06:49:10.5295638Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-09-07T06:49:10.5295928Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-09-07T06:49:10.5296164Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-09-07T06:49:10.5296395Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-09-07T06:49:10.5296623Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-09-07T06:49:10.5296859Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-09-07T06:49:10.5297087Z * [new branch] gh/codingwithsurya/15/base -> origin/gh/codingwithsurya/15/base 2025-09-07T06:49:10.5297319Z * [new branch] gh/codingwithsurya/15/head -> origin/gh/codingwithsurya/15/head 2025-09-07T06:49:10.5297552Z * [new branch] gh/codingwithsurya/15/orig -> origin/gh/codingwithsurya/15/orig 2025-09-07T06:49:10.5297783Z * [new branch] gh/codingwithsurya/16/base -> origin/gh/codingwithsurya/16/base 2025-09-07T06:49:10.5298010Z * [new branch] gh/codingwithsurya/16/head -> origin/gh/codingwithsurya/16/head 2025-09-07T06:49:10.5298306Z * [new branch] gh/codingwithsurya/16/orig -> origin/gh/codingwithsurya/16/orig 2025-09-07T06:49:10.5298531Z * [new branch] gh/codingwithsurya/17/base -> origin/gh/codingwithsurya/17/base 2025-09-07T06:49:10.5298761Z * [new branch] gh/codingwithsurya/17/head -> origin/gh/codingwithsurya/17/head 2025-09-07T06:49:10.5298996Z * [new branch] gh/codingwithsurya/17/orig -> origin/gh/codingwithsurya/17/orig 2025-09-07T06:49:10.5299219Z * [new branch] gh/codingwithsurya/18/base -> origin/gh/codingwithsurya/18/base 2025-09-07T06:49:10.5299445Z * [new branch] gh/codingwithsurya/18/head -> origin/gh/codingwithsurya/18/head 2025-09-07T06:49:10.5299686Z * [new branch] gh/codingwithsurya/18/orig -> origin/gh/codingwithsurya/18/orig 2025-09-07T06:49:10.5299913Z * [new branch] gh/codingwithsurya/19/base -> origin/gh/codingwithsurya/19/base 2025-09-07T06:49:10.5300188Z * [new branch] gh/codingwithsurya/19/head -> origin/gh/codingwithsurya/19/head 2025-09-07T06:49:10.5300424Z * [new branch] gh/codingwithsurya/19/orig -> origin/gh/codingwithsurya/19/orig 2025-09-07T06:49:10.5300654Z * [new branch] gh/codingwithsurya/20/base -> origin/gh/codingwithsurya/20/base 2025-09-07T06:49:10.5300919Z * [new branch] gh/codingwithsurya/20/head -> origin/gh/codingwithsurya/20/head 2025-09-07T06:49:10.5301148Z * [new branch] gh/codingwithsurya/20/orig -> origin/gh/codingwithsurya/20/orig 2025-09-07T06:49:10.5301385Z * [new branch] gh/codingwithsurya/21/base -> origin/gh/codingwithsurya/21/base 2025-09-07T06:49:10.5301615Z * [new branch] gh/codingwithsurya/21/head -> origin/gh/codingwithsurya/21/head 2025-09-07T06:49:10.5301844Z * [new branch] gh/codingwithsurya/21/orig -> origin/gh/codingwithsurya/21/orig 2025-09-07T06:49:10.5302057Z * [new branch] gh/colinchan15/1/base -> origin/gh/colinchan15/1/base 2025-09-07T06:49:10.5302260Z * [new branch] gh/colinchan15/1/head -> origin/gh/colinchan15/1/head 2025-09-07T06:49:10.5302457Z * [new branch] gh/colinchan15/2/base -> origin/gh/colinchan15/2/base 2025-09-07T06:49:10.5302660Z * [new branch] gh/colinchan15/2/head -> origin/gh/colinchan15/2/head 2025-09-07T06:49:10.5302859Z * [new branch] gh/colinchan15/3/base -> origin/gh/colinchan15/3/base 2025-09-07T06:49:10.5303055Z * [new branch] gh/colinchan15/3/head -> origin/gh/colinchan15/3/head 2025-09-07T06:49:10.5303257Z * [new branch] gh/colinchan15/6/base -> origin/gh/colinchan15/6/base 2025-09-07T06:49:10.5303516Z * [new branch] gh/colinchan15/6/head -> origin/gh/colinchan15/6/head 2025-09-07T06:49:10.5303742Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-09-07T06:49:10.5303975Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-09-07T06:49:10.5304191Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-09-07T06:49:10.5304407Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-09-07T06:49:10.5304630Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-09-07T06:49:10.5304847Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-09-07T06:49:10.5305066Z * [new branch] gh/davidberard98/391/base -> origin/gh/davidberard98/391/base 2025-09-07T06:49:10.5305292Z * [new branch] gh/davidberard98/391/head -> origin/gh/davidberard98/391/head 2025-09-07T06:49:10.5305508Z * [new branch] gh/davidberard98/391/orig -> origin/gh/davidberard98/391/orig 2025-09-07T06:49:10.5305723Z * [new branch] gh/davidberard98/392/base -> origin/gh/davidberard98/392/base 2025-09-07T06:49:10.5306009Z * [new branch] gh/davidberard98/392/head -> origin/gh/davidberard98/392/head 2025-09-07T06:49:10.5306268Z * [new branch] gh/davidberard98/392/orig -> origin/gh/davidberard98/392/orig 2025-09-07T06:49:10.5306485Z * [new branch] gh/davidberard98/394/base -> origin/gh/davidberard98/394/base 2025-09-07T06:49:10.5306701Z * [new branch] gh/davidberard98/394/head -> origin/gh/davidberard98/394/head 2025-09-07T06:49:10.5306966Z * [new branch] gh/davidberard98/394/orig -> origin/gh/davidberard98/394/orig 2025-09-07T06:49:10.5307184Z * [new branch] gh/davidberard98/396/base -> origin/gh/davidberard98/396/base 2025-09-07T06:49:10.5307403Z * [new branch] gh/davidberard98/396/head -> origin/gh/davidberard98/396/head 2025-09-07T06:49:10.5307631Z * [new branch] gh/davidberard98/396/orig -> origin/gh/davidberard98/396/orig 2025-09-07T06:49:10.5307849Z * [new branch] gh/davidberard98/397/base -> origin/gh/davidberard98/397/base 2025-09-07T06:49:10.5308061Z * [new branch] gh/davidberard98/397/head -> origin/gh/davidberard98/397/head 2025-09-07T06:49:10.5308281Z * [new branch] gh/davidberard98/397/orig -> origin/gh/davidberard98/397/orig 2025-09-07T06:49:10.5308497Z * [new branch] gh/davidberard98/398/base -> origin/gh/davidberard98/398/base 2025-09-07T06:49:10.5308712Z * [new branch] gh/davidberard98/398/head -> origin/gh/davidberard98/398/head 2025-09-07T06:49:10.5308929Z * [new branch] gh/davidberard98/398/orig -> origin/gh/davidberard98/398/orig 2025-09-07T06:49:10.5309149Z * [new branch] gh/davidberard98/399/base -> origin/gh/davidberard98/399/base 2025-09-07T06:49:10.5309359Z * [new branch] gh/davidberard98/399/head -> origin/gh/davidberard98/399/head 2025-09-07T06:49:10.5309582Z * [new branch] gh/davidberard98/399/orig -> origin/gh/davidberard98/399/orig 2025-09-07T06:49:10.5309799Z * [new branch] gh/davidberard98/400/base -> origin/gh/davidberard98/400/base 2025-09-07T06:49:10.5310012Z * [new branch] gh/davidberard98/400/head -> origin/gh/davidberard98/400/head 2025-09-07T06:49:10.5310233Z * [new branch] gh/davidberard98/400/orig -> origin/gh/davidberard98/400/orig 2025-09-07T06:49:10.5310446Z * [new branch] gh/davidberard98/401/base -> origin/gh/davidberard98/401/base 2025-09-07T06:49:10.5310659Z * [new branch] gh/davidberard98/401/head -> origin/gh/davidberard98/401/head 2025-09-07T06:49:10.5310948Z * [new branch] gh/davidberard98/401/orig -> origin/gh/davidberard98/401/orig 2025-09-07T06:49:10.5311167Z * [new branch] gh/davidberard98/402/base -> origin/gh/davidberard98/402/base 2025-09-07T06:49:10.5311383Z * [new branch] gh/davidberard98/402/head -> origin/gh/davidberard98/402/head 2025-09-07T06:49:10.5311610Z * [new branch] gh/davidberard98/402/orig -> origin/gh/davidberard98/402/orig 2025-09-07T06:49:10.5311821Z * [new branch] gh/davidberard98/403/base -> origin/gh/davidberard98/403/base 2025-09-07T06:49:10.5312033Z * [new branch] gh/davidberard98/403/head -> origin/gh/davidberard98/403/head 2025-09-07T06:49:10.5312298Z * [new branch] gh/davidberard98/403/orig -> origin/gh/davidberard98/403/orig 2025-09-07T06:49:10.5312525Z * [new branch] gh/davidberard98/404/base -> origin/gh/davidberard98/404/base 2025-09-07T06:49:10.5312737Z * [new branch] gh/davidberard98/404/head -> origin/gh/davidberard98/404/head 2025-09-07T06:49:10.5312996Z * [new branch] gh/davidberard98/404/orig -> origin/gh/davidberard98/404/orig 2025-09-07T06:49:10.5313222Z * [new branch] gh/davidberard98/405/base -> origin/gh/davidberard98/405/base 2025-09-07T06:49:10.5313500Z * [new branch] gh/davidberard98/405/head -> origin/gh/davidberard98/405/head 2025-09-07T06:49:10.5313718Z * [new branch] gh/davidberard98/405/orig -> origin/gh/davidberard98/405/orig 2025-09-07T06:49:10.5313940Z * [new branch] gh/davidberard98/406/base -> origin/gh/davidberard98/406/base 2025-09-07T06:49:10.5314155Z * [new branch] gh/davidberard98/406/head -> origin/gh/davidberard98/406/head 2025-09-07T06:49:10.5314366Z * [new branch] gh/davidberard98/406/orig -> origin/gh/davidberard98/406/orig 2025-09-07T06:49:10.5314586Z * [new branch] gh/davidberard98/407/base -> origin/gh/davidberard98/407/base 2025-09-07T06:49:10.5314805Z * [new branch] gh/davidberard98/407/head -> origin/gh/davidberard98/407/head 2025-09-07T06:49:10.5315025Z * [new branch] gh/davidberard98/407/orig -> origin/gh/davidberard98/407/orig 2025-09-07T06:49:10.5315252Z * [new branch] gh/davidberard98/408/base -> origin/gh/davidberard98/408/base 2025-09-07T06:49:10.5315467Z * [new branch] gh/davidberard98/408/head -> origin/gh/davidberard98/408/head 2025-09-07T06:49:10.5315682Z * [new branch] gh/davidberard98/408/orig -> origin/gh/davidberard98/408/orig 2025-09-07T06:49:10.5315902Z * [new branch] gh/davidberard98/409/base -> origin/gh/davidberard98/409/base 2025-09-07T06:49:10.5316117Z * [new branch] gh/davidberard98/409/head -> origin/gh/davidberard98/409/head 2025-09-07T06:49:10.5316334Z * [new branch] gh/davidberard98/409/orig -> origin/gh/davidberard98/409/orig 2025-09-07T06:49:10.5316550Z * [new branch] gh/desertfire/594/base -> origin/gh/desertfire/594/base 2025-09-07T06:49:10.5316752Z * [new branch] gh/desertfire/594/head -> origin/gh/desertfire/594/head 2025-09-07T06:49:10.5316953Z * [new branch] gh/desertfire/594/orig -> origin/gh/desertfire/594/orig 2025-09-07T06:49:10.5317166Z * [new branch] gh/desertfire/595/base -> origin/gh/desertfire/595/base 2025-09-07T06:49:10.5317367Z * [new branch] gh/desertfire/595/head -> origin/gh/desertfire/595/head 2025-09-07T06:49:10.5317565Z * [new branch] gh/desertfire/595/orig -> origin/gh/desertfire/595/orig 2025-09-07T06:49:10.5317764Z * [new branch] gh/desertfire/597/base -> origin/gh/desertfire/597/base 2025-09-07T06:49:10.5317970Z * [new branch] gh/desertfire/597/head -> origin/gh/desertfire/597/head 2025-09-07T06:49:10.5318169Z * [new branch] gh/desertfire/597/orig -> origin/gh/desertfire/597/orig 2025-09-07T06:49:10.5318466Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-09-07T06:49:10.5318658Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-09-07T06:49:10.5318860Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-09-07T06:49:10.5319083Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-09-07T06:49:10.5319286Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-09-07T06:49:10.5319473Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-09-07T06:49:10.5319658Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-09-07T06:49:10.5319852Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-09-07T06:49:10.5320041Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-09-07T06:49:10.5320231Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-09-07T06:49:10.5320425Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-09-07T06:49:10.5320674Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-09-07T06:49:10.5320857Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-09-07T06:49:10.5321056Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-09-07T06:49:10.5321240Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-09-07T06:49:10.5321425Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-09-07T06:49:10.5321622Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-09-07T06:49:10.5321812Z * [new branch] gh/drisspg/177/base -> origin/gh/drisspg/177/base 2025-09-07T06:49:10.5321996Z * [new branch] gh/drisspg/177/head -> origin/gh/drisspg/177/head 2025-09-07T06:49:10.5322180Z * [new branch] gh/drisspg/177/orig -> origin/gh/drisspg/177/orig 2025-09-07T06:49:10.5322381Z * [new branch] gh/drisspg/178/base -> origin/gh/drisspg/178/base 2025-09-07T06:49:10.5322564Z * [new branch] gh/drisspg/178/head -> origin/gh/drisspg/178/head 2025-09-07T06:49:10.5322747Z * [new branch] gh/drisspg/178/orig -> origin/gh/drisspg/178/orig 2025-09-07T06:49:10.5322941Z * [new branch] gh/drisspg/180/base -> origin/gh/drisspg/180/base 2025-09-07T06:49:10.5323125Z * [new branch] gh/drisspg/180/head -> origin/gh/drisspg/180/head 2025-09-07T06:49:10.5323310Z * [new branch] gh/drisspg/180/orig -> origin/gh/drisspg/180/orig 2025-09-07T06:49:10.5323508Z * [new branch] gh/drisspg/181/base -> origin/gh/drisspg/181/base 2025-09-07T06:49:10.5323696Z * [new branch] gh/drisspg/181/head -> origin/gh/drisspg/181/head 2025-09-07T06:49:10.5323887Z * [new branch] gh/drisspg/181/orig -> origin/gh/drisspg/181/orig 2025-09-07T06:49:10.5324082Z * [new branch] gh/drisspg/182/base -> origin/gh/drisspg/182/base 2025-09-07T06:49:10.5324261Z * [new branch] gh/drisspg/182/head -> origin/gh/drisspg/182/head 2025-09-07T06:49:10.5324566Z * [new branch] gh/drisspg/183/base -> origin/gh/drisspg/183/base 2025-09-07T06:49:10.5324768Z * [new branch] gh/drisspg/183/head -> origin/gh/drisspg/183/head 2025-09-07T06:49:10.5324961Z * [new branch] gh/drisspg/184/base -> origin/gh/drisspg/184/base 2025-09-07T06:49:10.5325185Z * [new branch] gh/drisspg/184/head -> origin/gh/drisspg/184/head 2025-09-07T06:49:10.5325453Z * [new branch] gh/drisspg/185/base -> origin/gh/drisspg/185/base 2025-09-07T06:49:10.5325641Z * [new branch] gh/drisspg/185/head -> origin/gh/drisspg/185/head 2025-09-07T06:49:10.5325828Z * [new branch] gh/drisspg/186/base -> origin/gh/drisspg/186/base 2025-09-07T06:49:10.5326021Z * [new branch] gh/drisspg/186/head -> origin/gh/drisspg/186/head 2025-09-07T06:49:10.5326205Z * [new branch] gh/drisspg/186/orig -> origin/gh/drisspg/186/orig 2025-09-07T06:49:10.5326390Z * [new branch] gh/drisspg/187/base -> origin/gh/drisspg/187/base 2025-09-07T06:49:10.5326572Z * [new branch] gh/drisspg/187/head -> origin/gh/drisspg/187/head 2025-09-07T06:49:10.5326763Z * [new branch] gh/drisspg/187/orig -> origin/gh/drisspg/187/orig 2025-09-07T06:49:10.5326948Z * [new branch] gh/drisspg/188/base -> origin/gh/drisspg/188/base 2025-09-07T06:49:10.5327135Z * [new branch] gh/drisspg/188/head -> origin/gh/drisspg/188/head 2025-09-07T06:49:10.5327325Z * [new branch] gh/drisspg/188/orig -> origin/gh/drisspg/188/orig 2025-09-07T06:49:10.5327572Z * [new branch] gh/drisspg/189/base -> origin/gh/drisspg/189/base 2025-09-07T06:49:10.5327755Z * [new branch] gh/drisspg/189/head -> origin/gh/drisspg/189/head 2025-09-07T06:49:10.5327954Z * [new branch] gh/drisspg/189/orig -> origin/gh/drisspg/189/orig 2025-09-07T06:49:10.5328139Z * [new branch] gh/drisspg/190/base -> origin/gh/drisspg/190/base 2025-09-07T06:49:10.5328328Z * [new branch] gh/drisspg/190/head -> origin/gh/drisspg/190/head 2025-09-07T06:49:10.5328523Z * [new branch] gh/drisspg/190/orig -> origin/gh/drisspg/190/orig 2025-09-07T06:49:10.5328709Z * [new branch] gh/drisspg/191/base -> origin/gh/drisspg/191/base 2025-09-07T06:49:10.5328900Z * [new branch] gh/drisspg/191/head -> origin/gh/drisspg/191/head 2025-09-07T06:49:10.5329092Z * [new branch] gh/drisspg/191/orig -> origin/gh/drisspg/191/orig 2025-09-07T06:49:10.5329293Z * [new branch] gh/drisspg/192/base -> origin/gh/drisspg/192/base 2025-09-07T06:49:10.5329478Z * [new branch] gh/drisspg/192/head -> origin/gh/drisspg/192/head 2025-09-07T06:49:10.5329671Z * [new branch] gh/drisspg/192/orig -> origin/gh/drisspg/192/orig 2025-09-07T06:49:10.5329855Z * [new branch] gh/drisspg/193/base -> origin/gh/drisspg/193/base 2025-09-07T06:49:10.5330037Z * [new branch] gh/drisspg/193/head -> origin/gh/drisspg/193/head 2025-09-07T06:49:10.5330234Z * [new branch] gh/drisspg/193/orig -> origin/gh/drisspg/193/orig 2025-09-07T06:49:10.5330426Z * [new branch] gh/drisspg/194/base -> origin/gh/drisspg/194/base 2025-09-07T06:49:10.5330653Z * [new branch] gh/drisspg/194/head -> origin/gh/drisspg/194/head 2025-09-07T06:49:10.5330841Z * [new branch] gh/drisspg/194/orig -> origin/gh/drisspg/194/orig 2025-09-07T06:49:10.5331040Z * [new branch] gh/drisspg/195/base -> origin/gh/drisspg/195/base 2025-09-07T06:49:10.5331264Z * [new branch] gh/drisspg/195/head -> origin/gh/drisspg/195/head 2025-09-07T06:49:10.5331453Z * [new branch] gh/drisspg/195/orig -> origin/gh/drisspg/195/orig 2025-09-07T06:49:10.5331652Z * [new branch] gh/drisspg/196/base -> origin/gh/drisspg/196/base 2025-09-07T06:49:10.5331834Z * [new branch] gh/drisspg/196/head -> origin/gh/drisspg/196/head 2025-09-07T06:49:10.5332021Z * [new branch] gh/drisspg/196/orig -> origin/gh/drisspg/196/orig 2025-09-07T06:49:10.5332283Z * [new branch] gh/drisspg/197/base -> origin/gh/drisspg/197/base 2025-09-07T06:49:10.5332469Z * [new branch] gh/drisspg/197/head -> origin/gh/drisspg/197/head 2025-09-07T06:49:10.5332658Z * [new branch] gh/drisspg/197/orig -> origin/gh/drisspg/197/orig 2025-09-07T06:49:10.5332851Z * [new branch] gh/drisspg/198/base -> origin/gh/drisspg/198/base 2025-09-07T06:49:10.5333036Z * [new branch] gh/drisspg/198/head -> origin/gh/drisspg/198/head 2025-09-07T06:49:10.5333222Z * [new branch] gh/drisspg/198/orig -> origin/gh/drisspg/198/orig 2025-09-07T06:49:10.5333413Z * [new branch] gh/drisspg/199/base -> origin/gh/drisspg/199/base 2025-09-07T06:49:10.5333596Z * [new branch] gh/drisspg/199/head -> origin/gh/drisspg/199/head 2025-09-07T06:49:10.5333781Z * [new branch] gh/drisspg/199/orig -> origin/gh/drisspg/199/orig 2025-09-07T06:49:10.5333989Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-09-07T06:49:10.5334177Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-09-07T06:49:10.5334840Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-09-07T06:49:10.5335047Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-09-07T06:49:10.5335242Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-09-07T06:49:10.5335435Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-09-07T06:49:10.5335630Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-09-07T06:49:10.5335830Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-09-07T06:49:10.5336025Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-09-07T06:49:10.5336220Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-09-07T06:49:10.5336430Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-09-07T06:49:10.5336672Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-09-07T06:49:10.5336866Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-09-07T06:49:10.5337059Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-09-07T06:49:10.5337289Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-09-07T06:49:10.5337480Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-09-07T06:49:10.5337672Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-09-07T06:49:10.5337863Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-09-07T06:49:10.5338054Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-09-07T06:49:10.5338255Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-09-07T06:49:10.5338443Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-09-07T06:49:10.5338630Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-09-07T06:49:10.5338831Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-09-07T06:49:10.5339017Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-09-07T06:49:10.5339206Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-09-07T06:49:10.5339402Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-09-07T06:49:10.5339668Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-09-07T06:49:10.5339858Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-09-07T06:49:10.5340051Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-09-07T06:49:10.5340248Z * [new branch] gh/eellison/813/base -> origin/gh/eellison/813/base 2025-09-07T06:49:10.5340438Z * [new branch] gh/eellison/813/head -> origin/gh/eellison/813/head 2025-09-07T06:49:10.5340629Z * [new branch] gh/eellison/813/orig -> origin/gh/eellison/813/orig 2025-09-07T06:49:10.5340930Z * [new branch] gh/eellison/814/base -> origin/gh/eellison/814/base 2025-09-07T06:49:10.5350782Z * [new branch] gh/eellison/814/head -> origin/gh/eellison/814/head 2025-09-07T06:49:10.5351113Z * [new branch] gh/eellison/814/orig -> origin/gh/eellison/814/orig 2025-09-07T06:49:10.5351322Z * [new branch] gh/eellison/815/base -> origin/gh/eellison/815/base 2025-09-07T06:49:10.5351512Z * [new branch] gh/eellison/815/head -> origin/gh/eellison/815/head 2025-09-07T06:49:10.5351854Z * [new branch] gh/eellison/815/orig -> origin/gh/eellison/815/orig 2025-09-07T06:49:10.5352056Z * [new branch] gh/eellison/816/base -> origin/gh/eellison/816/base 2025-09-07T06:49:10.5352247Z * [new branch] gh/eellison/816/head -> origin/gh/eellison/816/head 2025-09-07T06:49:10.5352440Z * [new branch] gh/eellison/816/orig -> origin/gh/eellison/816/orig 2025-09-07T06:49:10.5352641Z * [new branch] gh/eellison/817/base -> origin/gh/eellison/817/base 2025-09-07T06:49:10.5352834Z * [new branch] gh/eellison/817/head -> origin/gh/eellison/817/head 2025-09-07T06:49:10.5353028Z * [new branch] gh/eellison/817/orig -> origin/gh/eellison/817/orig 2025-09-07T06:49:10.5353234Z * [new branch] gh/eellison/818/base -> origin/gh/eellison/818/base 2025-09-07T06:49:10.5353426Z * [new branch] gh/eellison/818/head -> origin/gh/eellison/818/head 2025-09-07T06:49:10.5353614Z * [new branch] gh/eellison/818/orig -> origin/gh/eellison/818/orig 2025-09-07T06:49:10.5353809Z * [new branch] gh/eellison/819/base -> origin/gh/eellison/819/base 2025-09-07T06:49:10.5353999Z * [new branch] gh/eellison/819/head -> origin/gh/eellison/819/head 2025-09-07T06:49:10.5354188Z * [new branch] gh/eellison/819/orig -> origin/gh/eellison/819/orig 2025-09-07T06:49:10.5354373Z * [new branch] gh/eellison/820/base -> origin/gh/eellison/820/base 2025-09-07T06:49:10.5354569Z * [new branch] gh/eellison/820/head -> origin/gh/eellison/820/head 2025-09-07T06:49:10.5354761Z * [new branch] gh/eellison/820/orig -> origin/gh/eellison/820/orig 2025-09-07T06:49:10.5354950Z * [new branch] gh/eellison/821/base -> origin/gh/eellison/821/base 2025-09-07T06:49:10.5355146Z * [new branch] gh/eellison/821/head -> origin/gh/eellison/821/head 2025-09-07T06:49:10.5355337Z * [new branch] gh/eellison/821/orig -> origin/gh/eellison/821/orig 2025-09-07T06:49:10.5355527Z * [new branch] gh/eellison/822/base -> origin/gh/eellison/822/base 2025-09-07T06:49:10.5355722Z * [new branch] gh/eellison/822/head -> origin/gh/eellison/822/head 2025-09-07T06:49:10.5355910Z * [new branch] gh/eellison/822/orig -> origin/gh/eellison/822/orig 2025-09-07T06:49:10.5356155Z * [new branch] gh/eellison/823/base -> origin/gh/eellison/823/base 2025-09-07T06:49:10.5356869Z * [new branch] gh/eellison/823/head -> origin/gh/eellison/823/head 2025-09-07T06:49:10.5357076Z * [new branch] gh/eellison/823/orig -> origin/gh/eellison/823/orig 2025-09-07T06:49:10.5357260Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-09-07T06:49:10.5357447Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-09-07T06:49:10.5357620Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-09-07T06:49:10.5357799Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-09-07T06:49:10.5357979Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-09-07T06:49:10.5358150Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-09-07T06:49:10.5358324Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-09-07T06:49:10.5358509Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-09-07T06:49:10.5358680Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-09-07T06:49:10.5358854Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-09-07T06:49:10.5359090Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-09-07T06:49:10.5359276Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-09-07T06:49:10.5359449Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-09-07T06:49:10.5359620Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-09-07T06:49:10.5359803Z * [new branch] gh/etaf/151/base -> origin/gh/etaf/151/base 2025-09-07T06:49:10.5359977Z * [new branch] gh/etaf/151/head -> origin/gh/etaf/151/head 2025-09-07T06:49:10.5360152Z * [new branch] gh/etaf/151/orig -> origin/gh/etaf/151/orig 2025-09-07T06:49:10.5360330Z * [new branch] gh/etaf/152/base -> origin/gh/etaf/152/base 2025-09-07T06:49:10.5360500Z * [new branch] gh/etaf/152/head -> origin/gh/etaf/152/head 2025-09-07T06:49:10.5360672Z * [new branch] gh/etaf/152/orig -> origin/gh/etaf/152/orig 2025-09-07T06:49:10.5360848Z * [new branch] gh/etaf/153/base -> origin/gh/etaf/153/base 2025-09-07T06:49:10.5361020Z * [new branch] gh/etaf/153/head -> origin/gh/etaf/153/head 2025-09-07T06:49:10.5361190Z * [new branch] gh/etaf/153/orig -> origin/gh/etaf/153/orig 2025-09-07T06:49:10.5361365Z * [new branch] gh/etaf/154/base -> origin/gh/etaf/154/base 2025-09-07T06:49:10.5361540Z * [new branch] gh/etaf/154/head -> origin/gh/etaf/154/head 2025-09-07T06:49:10.5361716Z * [new branch] gh/etaf/154/orig -> origin/gh/etaf/154/orig 2025-09-07T06:49:10.5361945Z * [new branch] gh/etaf/155/base -> origin/gh/etaf/155/base 2025-09-07T06:49:10.5362117Z * [new branch] gh/etaf/155/head -> origin/gh/etaf/155/head 2025-09-07T06:49:10.5362333Z * [new branch] gh/etaf/155/orig -> origin/gh/etaf/155/orig 2025-09-07T06:49:10.5362507Z * [new branch] gh/etaf/156/base -> origin/gh/etaf/156/base 2025-09-07T06:49:10.5362687Z * [new branch] gh/etaf/156/head -> origin/gh/etaf/156/head 2025-09-07T06:49:10.5362863Z * [new branch] gh/etaf/156/orig -> origin/gh/etaf/156/orig 2025-09-07T06:49:10.5363030Z * [new branch] gh/etaf/157/base -> origin/gh/etaf/157/base 2025-09-07T06:49:10.5363216Z * [new branch] gh/etaf/157/head -> origin/gh/etaf/157/head 2025-09-07T06:49:10.5363457Z * [new branch] gh/etaf/157/orig -> origin/gh/etaf/157/orig 2025-09-07T06:49:10.5363628Z * [new branch] gh/etaf/158/base -> origin/gh/etaf/158/base 2025-09-07T06:49:10.5363800Z * [new branch] gh/etaf/158/head -> origin/gh/etaf/158/head 2025-09-07T06:49:10.5363973Z * [new branch] gh/etaf/158/orig -> origin/gh/etaf/158/orig 2025-09-07T06:49:10.5364140Z * [new branch] gh/etaf/159/base -> origin/gh/etaf/159/base 2025-09-07T06:49:10.5364320Z * [new branch] gh/etaf/159/head -> origin/gh/etaf/159/head 2025-09-07T06:49:10.5364611Z * [new branch] gh/etaf/159/orig -> origin/gh/etaf/159/orig 2025-09-07T06:49:10.5364785Z * [new branch] gh/etaf/160/base -> origin/gh/etaf/160/base 2025-09-07T06:49:10.5364962Z * [new branch] gh/etaf/160/head -> origin/gh/etaf/160/head 2025-09-07T06:49:10.5365139Z * [new branch] gh/etaf/160/orig -> origin/gh/etaf/160/orig 2025-09-07T06:49:10.5365310Z * [new branch] gh/etaf/161/base -> origin/gh/etaf/161/base 2025-09-07T06:49:10.5365488Z * [new branch] gh/etaf/161/head -> origin/gh/etaf/161/head 2025-09-07T06:49:10.5365727Z * [new branch] gh/etaf/161/orig -> origin/gh/etaf/161/orig 2025-09-07T06:49:10.5365900Z * [new branch] gh/etaf/162/base -> origin/gh/etaf/162/base 2025-09-07T06:49:10.5366071Z * [new branch] gh/etaf/162/head -> origin/gh/etaf/162/head 2025-09-07T06:49:10.5366245Z * [new branch] gh/etaf/162/orig -> origin/gh/etaf/162/orig 2025-09-07T06:49:10.5366413Z * [new branch] gh/etaf/163/base -> origin/gh/etaf/163/base 2025-09-07T06:49:10.5366580Z * [new branch] gh/etaf/163/head -> origin/gh/etaf/163/head 2025-09-07T06:49:10.5366771Z * [new branch] gh/etaf/163/orig -> origin/gh/etaf/163/orig 2025-09-07T06:49:10.5366941Z * [new branch] gh/etaf/164/base -> origin/gh/etaf/164/base 2025-09-07T06:49:10.5367112Z * [new branch] gh/etaf/164/head -> origin/gh/etaf/164/head 2025-09-07T06:49:10.5367295Z * [new branch] gh/etaf/164/orig -> origin/gh/etaf/164/orig 2025-09-07T06:49:10.5367468Z * [new branch] gh/etaf/165/base -> origin/gh/etaf/165/base 2025-09-07T06:49:10.5367694Z * [new branch] gh/etaf/165/orig -> origin/gh/etaf/165/orig 2025-09-07T06:49:10.5367869Z * [new branch] gh/etaf/166/base -> origin/gh/etaf/166/base 2025-09-07T06:49:10.5368039Z * [new branch] gh/etaf/166/head -> origin/gh/etaf/166/head 2025-09-07T06:49:10.5368249Z * [new branch] gh/etaf/166/orig -> origin/gh/etaf/166/orig 2025-09-07T06:49:10.5368442Z * [new branch] gh/etaf/167/base -> origin/gh/etaf/167/base 2025-09-07T06:49:10.5368610Z * [new branch] gh/etaf/167/head -> origin/gh/etaf/167/head 2025-09-07T06:49:10.5368775Z * [new branch] gh/etaf/167/orig -> origin/gh/etaf/167/orig 2025-09-07T06:49:10.5368960Z * [new branch] gh/etaf/168/base -> origin/gh/etaf/168/base 2025-09-07T06:49:10.5369135Z * [new branch] gh/etaf/168/head -> origin/gh/etaf/168/head 2025-09-07T06:49:10.5369302Z * [new branch] gh/etaf/168/orig -> origin/gh/etaf/168/orig 2025-09-07T06:49:10.5369471Z * [new branch] gh/etaf/169/base -> origin/gh/etaf/169/base 2025-09-07T06:49:10.5369646Z * [new branch] gh/etaf/169/head -> origin/gh/etaf/169/head 2025-09-07T06:49:10.5369815Z * [new branch] gh/etaf/169/orig -> origin/gh/etaf/169/orig 2025-09-07T06:49:10.5370104Z * [new branch] gh/exclamaforte/1/base -> origin/gh/exclamaforte/1/base 2025-09-07T06:49:10.5370337Z * [new branch] gh/exclamaforte/1/head -> origin/gh/exclamaforte/1/head 2025-09-07T06:49:10.5370549Z * [new branch] gh/exclamaforte/2/base -> origin/gh/exclamaforte/2/base 2025-09-07T06:49:10.5370753Z * [new branch] gh/exclamaforte/2/head -> origin/gh/exclamaforte/2/head 2025-09-07T06:49:10.5370968Z * [new branch] gh/exclamaforte/3/base -> origin/gh/exclamaforte/3/base 2025-09-07T06:49:10.5371174Z * [new branch] gh/exclamaforte/3/head -> origin/gh/exclamaforte/3/head 2025-09-07T06:49:10.5371376Z * [new branch] gh/exclamaforte/4/base -> origin/gh/exclamaforte/4/base 2025-09-07T06:49:10.5371586Z * [new branch] gh/exclamaforte/4/head -> origin/gh/exclamaforte/4/head 2025-09-07T06:49:10.5371782Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-09-07T06:49:10.5371976Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-09-07T06:49:10.5372167Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-09-07T06:49:10.5372416Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-09-07T06:49:10.5372599Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-09-07T06:49:10.5372790Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-09-07T06:49:10.5372972Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-09-07T06:49:10.5373155Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-09-07T06:49:10.5373343Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-09-07T06:49:10.5373576Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-09-07T06:49:10.5373759Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-09-07T06:49:10.5373966Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-09-07T06:49:10.5374176Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-09-07T06:49:10.5374357Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-09-07T06:49:10.5374536Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-09-07T06:49:10.5374728Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-09-07T06:49:10.5374913Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-09-07T06:49:10.5375094Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-09-07T06:49:10.5375287Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-09-07T06:49:10.5375471Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-09-07T06:49:10.5375658Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-09-07T06:49:10.5375855Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-09-07T06:49:10.5376036Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-09-07T06:49:10.5376220Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-09-07T06:49:10.5376412Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-09-07T06:49:10.5376593Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-09-07T06:49:10.5376776Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-09-07T06:49:10.5377037Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-09-07T06:49:10.5377222Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-09-07T06:49:10.5377408Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-09-07T06:49:10.5377603Z * [new branch] gh/ezyang/3120/base -> origin/gh/ezyang/3120/base 2025-09-07T06:49:10.5377795Z * [new branch] gh/ezyang/3120/head -> origin/gh/ezyang/3120/head 2025-09-07T06:49:10.5377987Z * [new branch] gh/ezyang/3120/orig -> origin/gh/ezyang/3120/orig 2025-09-07T06:49:10.5378178Z * [new branch] gh/ezyang/3122/base -> origin/gh/ezyang/3122/base 2025-09-07T06:49:10.5378365Z * [new branch] gh/ezyang/3122/head -> origin/gh/ezyang/3122/head 2025-09-07T06:49:10.5378549Z * [new branch] gh/ezyang/3122/orig -> origin/gh/ezyang/3122/orig 2025-09-07T06:49:10.5378741Z * [new branch] gh/ezyang/3123/base -> origin/gh/ezyang/3123/base 2025-09-07T06:49:10.5378939Z * [new branch] gh/ezyang/3123/head -> origin/gh/ezyang/3123/head 2025-09-07T06:49:10.5379217Z * [new branch] gh/ezyang/3123/orig -> origin/gh/ezyang/3123/orig 2025-09-07T06:49:10.5379426Z * [new branch] gh/ezyang/3125/base -> origin/gh/ezyang/3125/base 2025-09-07T06:49:10.5379622Z * [new branch] gh/ezyang/3125/head -> origin/gh/ezyang/3125/head 2025-09-07T06:49:10.5379850Z * [new branch] gh/ezyang/3125/orig -> origin/gh/ezyang/3125/orig 2025-09-07T06:49:10.5380038Z * [new branch] gh/ezyang/3126/base -> origin/gh/ezyang/3126/base 2025-09-07T06:49:10.5380228Z * [new branch] gh/ezyang/3126/head -> origin/gh/ezyang/3126/head 2025-09-07T06:49:10.5380414Z * [new branch] gh/ezyang/3126/orig -> origin/gh/ezyang/3126/orig 2025-09-07T06:49:10.5380597Z * [new branch] gh/ezyang/3127/base -> origin/gh/ezyang/3127/base 2025-09-07T06:49:10.5380789Z * [new branch] gh/ezyang/3127/head -> origin/gh/ezyang/3127/head 2025-09-07T06:49:10.5380977Z * [new branch] gh/ezyang/3127/orig -> origin/gh/ezyang/3127/orig 2025-09-07T06:49:10.5381159Z * [new branch] gh/ezyang/3128/base -> origin/gh/ezyang/3128/base 2025-09-07T06:49:10.5381347Z * [new branch] gh/ezyang/3128/head -> origin/gh/ezyang/3128/head 2025-09-07T06:49:10.5381528Z * [new branch] gh/ezyang/3128/orig -> origin/gh/ezyang/3128/orig 2025-09-07T06:49:10.5381709Z * [new branch] gh/ezyang/3129/base -> origin/gh/ezyang/3129/base 2025-09-07T06:49:10.5381900Z * [new branch] gh/ezyang/3129/head -> origin/gh/ezyang/3129/head 2025-09-07T06:49:10.5382089Z * [new branch] gh/ezyang/3129/orig -> origin/gh/ezyang/3129/orig 2025-09-07T06:49:10.5382272Z * [new branch] gh/ezyang/3130/base -> origin/gh/ezyang/3130/base 2025-09-07T06:49:10.5382457Z * [new branch] gh/ezyang/3130/head -> origin/gh/ezyang/3130/head 2025-09-07T06:49:10.5382654Z * [new branch] gh/ezyang/3130/orig -> origin/gh/ezyang/3130/orig 2025-09-07T06:49:10.5382838Z * [new branch] gh/ezyang/3131/base -> origin/gh/ezyang/3131/base 2025-09-07T06:49:10.5383019Z * [new branch] gh/ezyang/3131/head -> origin/gh/ezyang/3131/head 2025-09-07T06:49:10.5383210Z * [new branch] gh/ezyang/3131/orig -> origin/gh/ezyang/3131/orig 2025-09-07T06:49:10.5383393Z * [new branch] gh/ezyang/3132/base -> origin/gh/ezyang/3132/base 2025-09-07T06:49:10.5383573Z * [new branch] gh/ezyang/3132/head -> origin/gh/ezyang/3132/head 2025-09-07T06:49:10.5383835Z * [new branch] gh/ezyang/3132/orig -> origin/gh/ezyang/3132/orig 2025-09-07T06:49:10.5384021Z * [new branch] gh/ezyang/3133/base -> origin/gh/ezyang/3133/base 2025-09-07T06:49:10.5384210Z * [new branch] gh/ezyang/3133/head -> origin/gh/ezyang/3133/head 2025-09-07T06:49:10.5384402Z * [new branch] gh/ezyang/3133/orig -> origin/gh/ezyang/3133/orig 2025-09-07T06:49:10.5384584Z * [new branch] gh/ezyang/3134/base -> origin/gh/ezyang/3134/base 2025-09-07T06:49:10.5384772Z * [new branch] gh/ezyang/3134/head -> origin/gh/ezyang/3134/head 2025-09-07T06:49:10.5385011Z * [new branch] gh/ezyang/3134/orig -> origin/gh/ezyang/3134/orig 2025-09-07T06:49:10.5385195Z * [new branch] gh/ezyang/3135/base -> origin/gh/ezyang/3135/base 2025-09-07T06:49:10.5385422Z * [new branch] gh/ezyang/3135/head -> origin/gh/ezyang/3135/head 2025-09-07T06:49:10.5385622Z * [new branch] gh/ezyang/3135/orig -> origin/gh/ezyang/3135/orig 2025-09-07T06:49:10.5385810Z * [new branch] gh/ezyang/3136/base -> origin/gh/ezyang/3136/base 2025-09-07T06:49:10.5386061Z * [new branch] gh/ezyang/3136/head -> origin/gh/ezyang/3136/head 2025-09-07T06:49:10.5386251Z * [new branch] gh/ezyang/3136/orig -> origin/gh/ezyang/3136/orig 2025-09-07T06:49:10.5386438Z * [new branch] gh/ezyang/3137/base -> origin/gh/ezyang/3137/base 2025-09-07T06:49:10.5386624Z * [new branch] gh/ezyang/3137/head -> origin/gh/ezyang/3137/head 2025-09-07T06:49:10.5386820Z * [new branch] gh/ezyang/3137/orig -> origin/gh/ezyang/3137/orig 2025-09-07T06:49:10.5387004Z * [new branch] gh/ezyang/3138/base -> origin/gh/ezyang/3138/base 2025-09-07T06:49:10.5387192Z * [new branch] gh/ezyang/3138/head -> origin/gh/ezyang/3138/head 2025-09-07T06:49:10.5387380Z * [new branch] gh/ezyang/3138/orig -> origin/gh/ezyang/3138/orig 2025-09-07T06:49:10.5387569Z * [new branch] gh/ezyang/3139/base -> origin/gh/ezyang/3139/base 2025-09-07T06:49:10.5387876Z * [new branch] gh/ezyang/3139/head -> origin/gh/ezyang/3139/head 2025-09-07T06:49:10.5388081Z * [new branch] gh/ezyang/3139/orig -> origin/gh/ezyang/3139/orig 2025-09-07T06:49:10.5388284Z * [new branch] gh/ezyang/3140/base -> origin/gh/ezyang/3140/base 2025-09-07T06:49:10.5388485Z * [new branch] gh/ezyang/3140/head -> origin/gh/ezyang/3140/head 2025-09-07T06:49:10.5388713Z * [new branch] gh/ezyang/3140/orig -> origin/gh/ezyang/3140/orig 2025-09-07T06:49:10.5388905Z * [new branch] gh/ezyang/3141/base -> origin/gh/ezyang/3141/base 2025-09-07T06:49:10.5389142Z * [new branch] gh/ezyang/3141/head -> origin/gh/ezyang/3141/head 2025-09-07T06:49:10.5389377Z * [new branch] gh/ezyang/3141/orig -> origin/gh/ezyang/3141/orig 2025-09-07T06:49:10.5389582Z * [new branch] gh/ezyang/3142/base -> origin/gh/ezyang/3142/base 2025-09-07T06:49:10.5389792Z * [new branch] gh/ezyang/3142/head -> origin/gh/ezyang/3142/head 2025-09-07T06:49:10.5390020Z * [new branch] gh/ezyang/3142/orig -> origin/gh/ezyang/3142/orig 2025-09-07T06:49:10.5390226Z * [new branch] gh/ezyang/3143/base -> origin/gh/ezyang/3143/base 2025-09-07T06:49:10.5390435Z * [new branch] gh/ezyang/3143/head -> origin/gh/ezyang/3143/head 2025-09-07T06:49:10.5390717Z * [new branch] gh/ezyang/3143/orig -> origin/gh/ezyang/3143/orig 2025-09-07T06:49:10.5390921Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-09-07T06:49:10.5391237Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-09-07T06:49:10.5391476Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-09-07T06:49:10.5391669Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-09-07T06:49:10.5391878Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-09-07T06:49:10.5392116Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-09-07T06:49:10.5392314Z * [new branch] gh/fduwjj/175/base -> origin/gh/fduwjj/175/base 2025-09-07T06:49:10.5392507Z * [new branch] gh/fduwjj/175/head -> origin/gh/fduwjj/175/head 2025-09-07T06:49:10.5392736Z * [new branch] gh/fduwjj/175/orig -> origin/gh/fduwjj/175/orig 2025-09-07T06:49:10.5392951Z * [new branch] gh/fduwjj/176/base -> origin/gh/fduwjj/176/base 2025-09-07T06:49:10.5393160Z * [new branch] gh/fduwjj/176/head -> origin/gh/fduwjj/176/head 2025-09-07T06:49:10.5393395Z * [new branch] gh/fduwjj/176/orig -> origin/gh/fduwjj/176/orig 2025-09-07T06:49:10.5393663Z * [new branch] gh/fduwjj/177/base -> origin/gh/fduwjj/177/base 2025-09-07T06:49:10.5393864Z * [new branch] gh/fduwjj/177/head -> origin/gh/fduwjj/177/head 2025-09-07T06:49:10.5394093Z * [new branch] gh/fduwjj/177/orig -> origin/gh/fduwjj/177/orig 2025-09-07T06:49:10.5394305Z * [new branch] gh/fduwjj/178/base -> origin/gh/fduwjj/178/base 2025-09-07T06:49:10.5394505Z * [new branch] gh/fduwjj/178/head -> origin/gh/fduwjj/178/head 2025-09-07T06:49:10.5394724Z * [new branch] gh/fduwjj/178/orig -> origin/gh/fduwjj/178/orig 2025-09-07T06:49:10.5394922Z * [new branch] gh/fduwjj/179/base -> origin/gh/fduwjj/179/base 2025-09-07T06:49:10.5395123Z * [new branch] gh/fduwjj/179/head -> origin/gh/fduwjj/179/head 2025-09-07T06:49:10.5395349Z * [new branch] gh/fduwjj/179/orig -> origin/gh/fduwjj/179/orig 2025-09-07T06:49:10.5395568Z * [new branch] gh/fduwjj/180/base -> origin/gh/fduwjj/180/base 2025-09-07T06:49:10.5395763Z * [new branch] gh/fduwjj/180/head -> origin/gh/fduwjj/180/head 2025-09-07T06:49:10.5395966Z * [new branch] gh/fduwjj/180/orig -> origin/gh/fduwjj/180/orig 2025-09-07T06:49:10.5396184Z * [new branch] gh/fduwjj/181/base -> origin/gh/fduwjj/181/base 2025-09-07T06:49:10.5396426Z * [new branch] gh/fduwjj/181/head -> origin/gh/fduwjj/181/head 2025-09-07T06:49:10.5396619Z * [new branch] gh/fduwjj/181/orig -> origin/gh/fduwjj/181/orig 2025-09-07T06:49:10.5396907Z * [new branch] gh/fduwjj/182/base -> origin/gh/fduwjj/182/base 2025-09-07T06:49:10.5397111Z * [new branch] gh/fduwjj/182/head -> origin/gh/fduwjj/182/head 2025-09-07T06:49:10.5397305Z * [new branch] gh/fduwjj/182/orig -> origin/gh/fduwjj/182/orig 2025-09-07T06:49:10.5397527Z * [new branch] gh/fduwjj/183/base -> origin/gh/fduwjj/183/base 2025-09-07T06:49:10.5397722Z * [new branch] gh/fduwjj/183/head -> origin/gh/fduwjj/183/head 2025-09-07T06:49:10.5397913Z * [new branch] gh/fduwjj/183/orig -> origin/gh/fduwjj/183/orig 2025-09-07T06:49:10.5398154Z * [new branch] gh/fduwjj/184/base -> origin/gh/fduwjj/184/base 2025-09-07T06:49:10.5398355Z * [new branch] gh/fduwjj/184/head -> origin/gh/fduwjj/184/head 2025-09-07T06:49:10.5398553Z * [new branch] gh/fduwjj/184/orig -> origin/gh/fduwjj/184/orig 2025-09-07T06:49:10.5398851Z * [new branch] gh/fduwjj/185/base -> origin/gh/fduwjj/185/base 2025-09-07T06:49:10.5399052Z * [new branch] gh/fduwjj/185/head -> origin/gh/fduwjj/185/head 2025-09-07T06:49:10.5399241Z * [new branch] gh/fduwjj/185/orig -> origin/gh/fduwjj/185/orig 2025-09-07T06:49:10.5399488Z * [new branch] gh/fduwjj/186/base -> origin/gh/fduwjj/186/base 2025-09-07T06:49:10.5399688Z * [new branch] gh/fduwjj/186/head -> origin/gh/fduwjj/186/head 2025-09-07T06:49:10.5399889Z * [new branch] gh/fduwjj/186/orig -> origin/gh/fduwjj/186/orig 2025-09-07T06:49:10.5400115Z * [new branch] gh/fduwjj/187/base -> origin/gh/fduwjj/187/base 2025-09-07T06:49:10.5400318Z * [new branch] gh/fduwjj/187/head -> origin/gh/fduwjj/187/head 2025-09-07T06:49:10.5400533Z * [new branch] gh/fduwjj/187/orig -> origin/gh/fduwjj/187/orig 2025-09-07T06:49:10.5400782Z * [new branch] gh/fduwjj/188/base -> origin/gh/fduwjj/188/base 2025-09-07T06:49:10.5400982Z * [new branch] gh/fduwjj/188/head -> origin/gh/fduwjj/188/head 2025-09-07T06:49:10.5401188Z * [new branch] gh/fduwjj/188/orig -> origin/gh/fduwjj/188/orig 2025-09-07T06:49:10.5401457Z * [new branch] gh/fduwjj/189/base -> origin/gh/fduwjj/189/base 2025-09-07T06:49:10.5421402Z * [new branch] gh/fduwjj/189/head -> origin/gh/fduwjj/189/head 2025-09-07T06:49:10.5421598Z * [new branch] gh/fduwjj/189/orig -> origin/gh/fduwjj/189/orig 2025-09-07T06:49:10.5421781Z * [new branch] gh/fduwjj/190/base -> origin/gh/fduwjj/190/base 2025-09-07T06:49:10.5421965Z * [new branch] gh/fduwjj/190/head -> origin/gh/fduwjj/190/head 2025-09-07T06:49:10.5422142Z * [new branch] gh/fduwjj/190/orig -> origin/gh/fduwjj/190/orig 2025-09-07T06:49:10.5422332Z * [new branch] gh/fduwjj/191/base -> origin/gh/fduwjj/191/base 2025-09-07T06:49:10.5422511Z * [new branch] gh/fduwjj/191/head -> origin/gh/fduwjj/191/head 2025-09-07T06:49:10.5422693Z * [new branch] gh/fduwjj/191/orig -> origin/gh/fduwjj/191/orig 2025-09-07T06:49:10.5422868Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-09-07T06:49:10.5423046Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-09-07T06:49:10.5423219Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-09-07T06:49:10.5423389Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-09-07T06:49:10.5423565Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-09-07T06:49:10.5423741Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-09-07T06:49:10.5423918Z * [new branch] gh/fegin/308/base -> origin/gh/fegin/308/base 2025-09-07T06:49:10.5424095Z * [new branch] gh/fegin/308/head -> origin/gh/fegin/308/head 2025-09-07T06:49:10.5424275Z * [new branch] gh/fegin/308/orig -> origin/gh/fegin/308/orig 2025-09-07T06:49:10.5424448Z * [new branch] gh/fegin/309/base -> origin/gh/fegin/309/base 2025-09-07T06:49:10.5424625Z * [new branch] gh/fegin/309/head -> origin/gh/fegin/309/head 2025-09-07T06:49:10.5424797Z * [new branch] gh/fegin/309/orig -> origin/gh/fegin/309/orig 2025-09-07T06:49:10.5425019Z * [new branch] gh/fegin/310/base -> origin/gh/fegin/310/base 2025-09-07T06:49:10.5425192Z * [new branch] gh/fegin/310/head -> origin/gh/fegin/310/head 2025-09-07T06:49:10.5425367Z * [new branch] gh/fegin/310/orig -> origin/gh/fegin/310/orig 2025-09-07T06:49:10.5425722Z * [new branch] gh/fegin/311/base -> origin/gh/fegin/311/base 2025-09-07T06:49:10.5425896Z * [new branch] gh/fegin/311/head -> origin/gh/fegin/311/head 2025-09-07T06:49:10.5426077Z * [new branch] gh/fegin/311/orig -> origin/gh/fegin/311/orig 2025-09-07T06:49:10.5426246Z * [new branch] gh/fegin/312/base -> origin/gh/fegin/312/base 2025-09-07T06:49:10.5426418Z * [new branch] gh/fegin/312/head -> origin/gh/fegin/312/head 2025-09-07T06:49:10.5426595Z * [new branch] gh/fegin/312/orig -> origin/gh/fegin/312/orig 2025-09-07T06:49:10.5426764Z * [new branch] gh/fegin/313/base -> origin/gh/fegin/313/base 2025-09-07T06:49:10.5426934Z * [new branch] gh/fegin/313/head -> origin/gh/fegin/313/head 2025-09-07T06:49:10.5427111Z * [new branch] gh/fegin/313/orig -> origin/gh/fegin/313/orig 2025-09-07T06:49:10.5427295Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-09-07T06:49:10.5427474Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-09-07T06:49:10.5427736Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-09-07T06:49:10.5427914Z * [new branch] gh/fffrog/129/base -> origin/gh/fffrog/129/base 2025-09-07T06:49:10.5428091Z * [new branch] gh/fffrog/129/head -> origin/gh/fffrog/129/head 2025-09-07T06:49:10.5428270Z * [new branch] gh/fffrog/129/orig -> origin/gh/fffrog/129/orig 2025-09-07T06:49:10.5428445Z * [new branch] gh/fffrog/130/base -> origin/gh/fffrog/130/base 2025-09-07T06:49:10.5428622Z * [new branch] gh/fffrog/130/head -> origin/gh/fffrog/130/head 2025-09-07T06:49:10.5428802Z * [new branch] gh/fffrog/130/orig -> origin/gh/fffrog/130/orig 2025-09-07T06:49:10.5428981Z * [new branch] gh/fffrog/131/base -> origin/gh/fffrog/131/base 2025-09-07T06:49:10.5429161Z * [new branch] gh/fffrog/131/head -> origin/gh/fffrog/131/head 2025-09-07T06:49:10.5429350Z * [new branch] gh/fffrog/131/orig -> origin/gh/fffrog/131/orig 2025-09-07T06:49:10.5429537Z * [new branch] gh/fffrog/132/base -> origin/gh/fffrog/132/base 2025-09-07T06:49:10.5429716Z * [new branch] gh/fffrog/132/head -> origin/gh/fffrog/132/head 2025-09-07T06:49:10.5429900Z * [new branch] gh/fffrog/132/orig -> origin/gh/fffrog/132/orig 2025-09-07T06:49:10.5430097Z * [new branch] gh/fffrog/133/base -> origin/gh/fffrog/133/base 2025-09-07T06:49:10.5430273Z * [new branch] gh/fffrog/133/head -> origin/gh/fffrog/133/head 2025-09-07T06:49:10.5430454Z * [new branch] gh/fffrog/133/orig -> origin/gh/fffrog/133/orig 2025-09-07T06:49:10.5430676Z * [new branch] gh/fffrog/134/base -> origin/gh/fffrog/134/base 2025-09-07T06:49:10.5430862Z * [new branch] gh/fffrog/134/head -> origin/gh/fffrog/134/head 2025-09-07T06:49:10.5431042Z * [new branch] gh/fffrog/134/orig -> origin/gh/fffrog/134/orig 2025-09-07T06:49:10.5431268Z * [new branch] gh/fffrog/135/base -> origin/gh/fffrog/135/base 2025-09-07T06:49:10.5431448Z * [new branch] gh/fffrog/135/head -> origin/gh/fffrog/135/head 2025-09-07T06:49:10.5431622Z * [new branch] gh/fffrog/135/orig -> origin/gh/fffrog/135/orig 2025-09-07T06:49:10.5431802Z * [new branch] gh/fffrog/136/base -> origin/gh/fffrog/136/base 2025-09-07T06:49:10.5431978Z * [new branch] gh/fffrog/136/head -> origin/gh/fffrog/136/head 2025-09-07T06:49:10.5432222Z * [new branch] gh/fffrog/136/orig -> origin/gh/fffrog/136/orig 2025-09-07T06:49:10.5432410Z * [new branch] gh/fffrog/137/base -> origin/gh/fffrog/137/base 2025-09-07T06:49:10.5432586Z * [new branch] gh/fffrog/137/head -> origin/gh/fffrog/137/head 2025-09-07T06:49:10.5432764Z * [new branch] gh/fffrog/137/orig -> origin/gh/fffrog/137/orig 2025-09-07T06:49:10.5432940Z * [new branch] gh/fffrog/138/base -> origin/gh/fffrog/138/base 2025-09-07T06:49:10.5433124Z * [new branch] gh/fffrog/138/head -> origin/gh/fffrog/138/head 2025-09-07T06:49:10.5433306Z * [new branch] gh/fffrog/138/orig -> origin/gh/fffrog/138/orig 2025-09-07T06:49:10.5433481Z * [new branch] gh/fffrog/139/base -> origin/gh/fffrog/139/base 2025-09-07T06:49:10.5433669Z * [new branch] gh/fffrog/139/head -> origin/gh/fffrog/139/head 2025-09-07T06:49:10.5433854Z * [new branch] gh/fffrog/139/orig -> origin/gh/fffrog/139/orig 2025-09-07T06:49:10.5434035Z * [new branch] gh/fffrog/140/base -> origin/gh/fffrog/140/base 2025-09-07T06:49:10.5434292Z * [new branch] gh/fffrog/140/head -> origin/gh/fffrog/140/head 2025-09-07T06:49:10.5434472Z * [new branch] gh/fffrog/140/orig -> origin/gh/fffrog/140/orig 2025-09-07T06:49:10.5434649Z * [new branch] gh/fffrog/141/base -> origin/gh/fffrog/141/base 2025-09-07T06:49:10.5434841Z * [new branch] gh/fffrog/141/head -> origin/gh/fffrog/141/head 2025-09-07T06:49:10.5435020Z * [new branch] gh/fffrog/141/orig -> origin/gh/fffrog/141/orig 2025-09-07T06:49:10.5435200Z * [new branch] gh/fffrog/142/base -> origin/gh/fffrog/142/base 2025-09-07T06:49:10.5435398Z * [new branch] gh/fffrog/142/head -> origin/gh/fffrog/142/head 2025-09-07T06:49:10.5435584Z * [new branch] gh/fffrog/142/orig -> origin/gh/fffrog/142/orig 2025-09-07T06:49:10.5435762Z * [new branch] gh/fffrog/143/base -> origin/gh/fffrog/143/base 2025-09-07T06:49:10.5435964Z * [new branch] gh/fffrog/143/head -> origin/gh/fffrog/143/head 2025-09-07T06:49:10.5436142Z * [new branch] gh/fffrog/143/orig -> origin/gh/fffrog/143/orig 2025-09-07T06:49:10.5436347Z * [new branch] gh/fffrog/144/base -> origin/gh/fffrog/144/base 2025-09-07T06:49:10.5436561Z * [new branch] gh/fffrog/144/head -> origin/gh/fffrog/144/head 2025-09-07T06:49:10.5436739Z * [new branch] gh/fffrog/144/orig -> origin/gh/fffrog/144/orig 2025-09-07T06:49:10.5436962Z * [new branch] gh/fffrog/145/base -> origin/gh/fffrog/145/base 2025-09-07T06:49:10.5437145Z * [new branch] gh/fffrog/145/head -> origin/gh/fffrog/145/head 2025-09-07T06:49:10.5437333Z * [new branch] gh/fffrog/145/orig -> origin/gh/fffrog/145/orig 2025-09-07T06:49:10.5437511Z * [new branch] gh/fffrog/146/base -> origin/gh/fffrog/146/base 2025-09-07T06:49:10.5437691Z * [new branch] gh/fffrog/146/head -> origin/gh/fffrog/146/head 2025-09-07T06:49:10.5437883Z * [new branch] gh/fffrog/146/orig -> origin/gh/fffrog/146/orig 2025-09-07T06:49:10.5438067Z * [new branch] gh/fffrog/147/base -> origin/gh/fffrog/147/base 2025-09-07T06:49:10.5438246Z * [new branch] gh/fffrog/147/head -> origin/gh/fffrog/147/head 2025-09-07T06:49:10.5438434Z * [new branch] gh/fffrog/147/orig -> origin/gh/fffrog/147/orig 2025-09-07T06:49:10.5438616Z * [new branch] gh/fffrog/148/base -> origin/gh/fffrog/148/base 2025-09-07T06:49:10.5438861Z * [new branch] gh/fffrog/148/head -> origin/gh/fffrog/148/head 2025-09-07T06:49:10.5439052Z * [new branch] gh/fffrog/148/orig -> origin/gh/fffrog/148/orig 2025-09-07T06:49:10.5439235Z * [new branch] gh/fffrog/149/base -> origin/gh/fffrog/149/base 2025-09-07T06:49:10.5439417Z * [new branch] gh/fffrog/149/head -> origin/gh/fffrog/149/head 2025-09-07T06:49:10.5439605Z * [new branch] gh/fffrog/149/orig -> origin/gh/fffrog/149/orig 2025-09-07T06:49:10.5439786Z * [new branch] gh/fffrog/150/base -> origin/gh/fffrog/150/base 2025-09-07T06:49:10.5439975Z * [new branch] gh/fffrog/150/head -> origin/gh/fffrog/150/head 2025-09-07T06:49:10.5440174Z * [new branch] gh/fffrog/150/orig -> origin/gh/fffrog/150/orig 2025-09-07T06:49:10.5440355Z * [new branch] gh/fffrog/151/base -> origin/gh/fffrog/151/base 2025-09-07T06:49:10.5440540Z * [new branch] gh/fffrog/151/head -> origin/gh/fffrog/151/head 2025-09-07T06:49:10.5440732Z * [new branch] gh/fffrog/151/orig -> origin/gh/fffrog/151/orig 2025-09-07T06:49:10.5440921Z * [new branch] gh/fffrog/152/base -> origin/gh/fffrog/152/base 2025-09-07T06:49:10.5441178Z * [new branch] gh/fffrog/152/head -> origin/gh/fffrog/152/head 2025-09-07T06:49:10.5441371Z * [new branch] gh/fffrog/153/base -> origin/gh/fffrog/153/base 2025-09-07T06:49:10.5441562Z * [new branch] gh/fffrog/153/head -> origin/gh/fffrog/153/head 2025-09-07T06:49:10.5441743Z * [new branch] gh/fffrog/153/orig -> origin/gh/fffrog/153/orig 2025-09-07T06:49:10.5441941Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-09-07T06:49:10.5442197Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-09-07T06:49:10.5442394Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-09-07T06:49:10.5442628Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-09-07T06:49:10.5442834Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-09-07T06:49:10.5443021Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-09-07T06:49:10.5443207Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-09-07T06:49:10.5443410Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-09-07T06:49:10.5443602Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-09-07T06:49:10.5443803Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-09-07T06:49:10.5444006Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-09-07T06:49:10.5444203Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-09-07T06:49:10.5444453Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-09-07T06:49:10.5444670Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-09-07T06:49:10.5444862Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-09-07T06:49:10.5445050Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-09-07T06:49:10.5445249Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-09-07T06:49:10.5445440Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-09-07T06:49:10.5445632Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-09-07T06:49:10.5445905Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-09-07T06:49:10.5446111Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-09-07T06:49:10.5446302Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-09-07T06:49:10.5446496Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-09-07T06:49:10.5446696Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-09-07T06:49:10.5446889Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-09-07T06:49:10.5447082Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-09-07T06:49:10.5447287Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-09-07T06:49:10.5447478Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-09-07T06:49:10.5447674Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-09-07T06:49:10.5447921Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-09-07T06:49:10.5448107Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-09-07T06:49:10.5448412Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-09-07T06:49:10.5448607Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-09-07T06:49:10.5448792Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-09-07T06:49:10.5448982Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-09-07T06:49:10.5449187Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-09-07T06:49:10.5449374Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-09-07T06:49:10.5449574Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-09-07T06:49:10.5449779Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-09-07T06:49:10.5449976Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-09-07T06:49:10.5450169Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-09-07T06:49:10.5450363Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-09-07T06:49:10.5450563Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-09-07T06:49:10.5450754Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-09-07T06:49:10.5450942Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-09-07T06:49:10.5451145Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-09-07T06:49:10.5451335Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-09-07T06:49:10.5451522Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-09-07T06:49:10.5451728Z * [new branch] gh/guangyey/174/base -> origin/gh/guangyey/174/base 2025-09-07T06:49:10.5451915Z * [new branch] gh/guangyey/174/head -> origin/gh/guangyey/174/head 2025-09-07T06:49:10.5452100Z * [new branch] gh/guangyey/174/orig -> origin/gh/guangyey/174/orig 2025-09-07T06:49:10.5452293Z * [new branch] gh/guangyey/176/base -> origin/gh/guangyey/176/base 2025-09-07T06:49:10.5452482Z * [new branch] gh/guangyey/176/head -> origin/gh/guangyey/176/head 2025-09-07T06:49:10.5452671Z * [new branch] gh/guangyey/176/orig -> origin/gh/guangyey/176/orig 2025-09-07T06:49:10.5452936Z * [new branch] gh/guangyey/178/base -> origin/gh/guangyey/178/base 2025-09-07T06:49:10.5453127Z * [new branch] gh/guangyey/178/head -> origin/gh/guangyey/178/head 2025-09-07T06:49:10.5453316Z * [new branch] gh/guangyey/178/orig -> origin/gh/guangyey/178/orig 2025-09-07T06:49:10.5453549Z * [new branch] gh/guangyey/181/base -> origin/gh/guangyey/181/base 2025-09-07T06:49:10.5453758Z * [new branch] gh/guangyey/181/head -> origin/gh/guangyey/181/head 2025-09-07T06:49:10.5453947Z * [new branch] gh/guangyey/181/orig -> origin/gh/guangyey/181/orig 2025-09-07T06:49:10.5454198Z * [new branch] gh/guangyey/182/base -> origin/gh/guangyey/182/base 2025-09-07T06:49:10.5454389Z * [new branch] gh/guangyey/182/head -> origin/gh/guangyey/182/head 2025-09-07T06:49:10.5454575Z * [new branch] gh/guangyey/182/orig -> origin/gh/guangyey/182/orig 2025-09-07T06:49:10.5454771Z * [new branch] gh/guangyey/183/base -> origin/gh/guangyey/183/base 2025-09-07T06:49:10.5454973Z * [new branch] gh/guangyey/183/head -> origin/gh/guangyey/183/head 2025-09-07T06:49:10.5455230Z * [new branch] gh/guangyey/183/orig -> origin/gh/guangyey/183/orig 2025-09-07T06:49:10.5455419Z * [new branch] gh/guangyey/184/base -> origin/gh/guangyey/184/base 2025-09-07T06:49:10.5455618Z * [new branch] gh/guangyey/184/head -> origin/gh/guangyey/184/head 2025-09-07T06:49:10.5455806Z * [new branch] gh/guangyey/184/orig -> origin/gh/guangyey/184/orig 2025-09-07T06:49:10.5455997Z * [new branch] gh/guangyey/185/base -> origin/gh/guangyey/185/base 2025-09-07T06:49:10.5456194Z * [new branch] gh/guangyey/185/head -> origin/gh/guangyey/185/head 2025-09-07T06:49:10.5456392Z * [new branch] gh/guangyey/185/orig -> origin/gh/guangyey/185/orig 2025-09-07T06:49:10.5456581Z * [new branch] gh/guangyey/186/base -> origin/gh/guangyey/186/base 2025-09-07T06:49:10.5456778Z * [new branch] gh/guangyey/186/head -> origin/gh/guangyey/186/head 2025-09-07T06:49:10.5456970Z * [new branch] gh/guangyey/186/orig -> origin/gh/guangyey/186/orig 2025-09-07T06:49:10.5457158Z * [new branch] gh/guangyey/187/base -> origin/gh/guangyey/187/base 2025-09-07T06:49:10.5457362Z * [new branch] gh/guangyey/187/head -> origin/gh/guangyey/187/head 2025-09-07T06:49:10.5457553Z * [new branch] gh/guangyey/187/orig -> origin/gh/guangyey/187/orig 2025-09-07T06:49:10.5457740Z * [new branch] gh/guangyey/188/base -> origin/gh/guangyey/188/base 2025-09-07T06:49:10.5457943Z * [new branch] gh/guangyey/188/head -> origin/gh/guangyey/188/head 2025-09-07T06:49:10.5458137Z * [new branch] gh/guangyey/188/orig -> origin/gh/guangyey/188/orig 2025-09-07T06:49:10.5458325Z * [new branch] gh/guangyey/189/base -> origin/gh/guangyey/189/base 2025-09-07T06:49:10.5458523Z * [new branch] gh/guangyey/189/head -> origin/gh/guangyey/189/head 2025-09-07T06:49:10.5458726Z * [new branch] gh/guangyey/189/orig -> origin/gh/guangyey/189/orig 2025-09-07T06:49:10.5458915Z * [new branch] gh/guangyey/190/base -> origin/gh/guangyey/190/base 2025-09-07T06:49:10.5459105Z * [new branch] gh/guangyey/190/head -> origin/gh/guangyey/190/head 2025-09-07T06:49:10.5459348Z * [new branch] gh/guangyey/190/orig -> origin/gh/guangyey/190/orig 2025-09-07T06:49:10.5459539Z * [new branch] gh/guangyey/191/base -> origin/gh/guangyey/191/base 2025-09-07T06:49:10.5459771Z * [new branch] gh/guangyey/191/head -> origin/gh/guangyey/191/head 2025-09-07T06:49:10.5460098Z * [new branch] gh/guangyey/191/orig -> origin/gh/guangyey/191/orig 2025-09-07T06:49:10.5460297Z * [new branch] gh/guangyey/192/base -> origin/gh/guangyey/192/base 2025-09-07T06:49:10.5460539Z * [new branch] gh/guangyey/192/head -> origin/gh/guangyey/192/head 2025-09-07T06:49:10.5460739Z * [new branch] gh/guangyey/192/orig -> origin/gh/guangyey/192/orig 2025-09-07T06:49:10.5460970Z * [new branch] gh/guangyey/193/base -> origin/gh/guangyey/193/base 2025-09-07T06:49:10.5461184Z * [new branch] gh/guangyey/193/head -> origin/gh/guangyey/193/head 2025-09-07T06:49:10.5461407Z * [new branch] gh/guangyey/193/orig -> origin/gh/guangyey/193/orig 2025-09-07T06:49:10.5461638Z * [new branch] gh/guangyey/194/base -> origin/gh/guangyey/194/base 2025-09-07T06:49:10.5461831Z * [new branch] gh/guangyey/194/head -> origin/gh/guangyey/194/head 2025-09-07T06:49:10.5462077Z * [new branch] gh/guangyey/194/orig -> origin/gh/guangyey/194/orig 2025-09-07T06:49:10.5462274Z * [new branch] gh/guangyey/195/base -> origin/gh/guangyey/195/base 2025-09-07T06:49:10.5462581Z * [new branch] gh/guangyey/195/head -> origin/gh/guangyey/195/head 2025-09-07T06:49:10.5462833Z * [new branch] gh/guangyey/195/orig -> origin/gh/guangyey/195/orig 2025-09-07T06:49:10.5463025Z * [new branch] gh/guangyey/196/base -> origin/gh/guangyey/196/base 2025-09-07T06:49:10.5463262Z * [new branch] gh/guangyey/196/head -> origin/gh/guangyey/196/head 2025-09-07T06:49:10.5463465Z * [new branch] gh/guangyey/196/orig -> origin/gh/guangyey/196/orig 2025-09-07T06:49:10.5463700Z * [new branch] gh/guangyey/197/base -> origin/gh/guangyey/197/base 2025-09-07T06:49:10.5463937Z * [new branch] gh/guangyey/197/head -> origin/gh/guangyey/197/head 2025-09-07T06:49:10.5464133Z * [new branch] gh/guangyey/197/orig -> origin/gh/guangyey/197/orig 2025-09-07T06:49:10.5464337Z * [new branch] gh/guangyey/198/base -> origin/gh/guangyey/198/base 2025-09-07T06:49:10.5464531Z * [new branch] gh/guangyey/198/head -> origin/gh/guangyey/198/head 2025-09-07T06:49:10.5464719Z * [new branch] gh/guangyey/198/orig -> origin/gh/guangyey/198/orig 2025-09-07T06:49:10.5464916Z * [new branch] gh/guangyey/199/base -> origin/gh/guangyey/199/base 2025-09-07T06:49:10.5465108Z * [new branch] gh/guangyey/199/head -> origin/gh/guangyey/199/head 2025-09-07T06:49:10.5465299Z * [new branch] gh/guangyey/199/orig -> origin/gh/guangyey/199/orig 2025-09-07T06:49:10.5465502Z * [new branch] gh/guangyey/200/base -> origin/gh/guangyey/200/base 2025-09-07T06:49:10.5465690Z * [new branch] gh/guangyey/200/head -> origin/gh/guangyey/200/head 2025-09-07T06:49:10.5465883Z * [new branch] gh/guangyey/200/orig -> origin/gh/guangyey/200/orig 2025-09-07T06:49:10.5466092Z * [new branch] gh/guangyey/201/base -> origin/gh/guangyey/201/base 2025-09-07T06:49:10.5466282Z * [new branch] gh/guangyey/201/head -> origin/gh/guangyey/201/head 2025-09-07T06:49:10.5466472Z * [new branch] gh/guangyey/201/orig -> origin/gh/guangyey/201/orig 2025-09-07T06:49:10.5466669Z * [new branch] gh/guangyey/202/base -> origin/gh/guangyey/202/base 2025-09-07T06:49:10.5466862Z * [new branch] gh/guangyey/202/head -> origin/gh/guangyey/202/head 2025-09-07T06:49:10.5467053Z * [new branch] gh/guangyey/202/orig -> origin/gh/guangyey/202/orig 2025-09-07T06:49:10.5467240Z * [new branch] gh/guangyey/203/base -> origin/gh/guangyey/203/base 2025-09-07T06:49:10.5467510Z * [new branch] gh/guangyey/203/head -> origin/gh/guangyey/203/head 2025-09-07T06:49:10.5467700Z * [new branch] gh/guangyey/203/orig -> origin/gh/guangyey/203/orig 2025-09-07T06:49:10.5467893Z * [new branch] gh/guangyey/204/base -> origin/gh/guangyey/204/base 2025-09-07T06:49:10.5468090Z * [new branch] gh/guangyey/204/head -> origin/gh/guangyey/204/head 2025-09-07T06:49:10.5468279Z * [new branch] gh/guangyey/204/orig -> origin/gh/guangyey/204/orig 2025-09-07T06:49:10.5468467Z * [new branch] gh/guangyey/205/base -> origin/gh/guangyey/205/base 2025-09-07T06:49:10.5468665Z * [new branch] gh/guangyey/205/head -> origin/gh/guangyey/205/head 2025-09-07T06:49:10.5468854Z * [new branch] gh/guangyey/205/orig -> origin/gh/guangyey/205/orig 2025-09-07T06:49:10.5469050Z * [new branch] gh/guangyey/206/base -> origin/gh/guangyey/206/base 2025-09-07T06:49:10.5469296Z * [new branch] gh/guangyey/206/head -> origin/gh/guangyey/206/head 2025-09-07T06:49:10.5469483Z * [new branch] gh/guangyey/206/orig -> origin/gh/guangyey/206/orig 2025-09-07T06:49:10.5469775Z * [new branch] gh/guangyey/207/base -> origin/gh/guangyey/207/base 2025-09-07T06:49:10.5470017Z * [new branch] gh/guangyey/207/head -> origin/gh/guangyey/207/head 2025-09-07T06:49:10.5470208Z * [new branch] gh/guangyey/207/orig -> origin/gh/guangyey/207/orig 2025-09-07T06:49:10.5470449Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-09-07T06:49:10.5470663Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-09-07T06:49:10.5470870Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-09-07T06:49:10.5471098Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-09-07T06:49:10.5471301Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-09-07T06:49:10.5471537Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-09-07T06:49:10.5471785Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-09-07T06:49:10.5472065Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-09-07T06:49:10.5472353Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-09-07T06:49:10.5472616Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-09-07T06:49:10.5472860Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-09-07T06:49:10.5473145Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-09-07T06:49:10.5473414Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-09-07T06:49:10.5473647Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-09-07T06:49:10.5473936Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-09-07T06:49:10.5474207Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-09-07T06:49:10.5474438Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-09-07T06:49:10.5474722Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-09-07T06:49:10.5474997Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-09-07T06:49:10.5475360Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-09-07T06:49:10.5475606Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-09-07T06:49:10.5475885Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-09-07T06:49:10.5476167Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-09-07T06:49:10.5476438Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-09-07T06:49:10.5476686Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-09-07T06:49:10.5476964Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-09-07T06:49:10.5477236Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-09-07T06:49:10.5477480Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-09-07T06:49:10.5477758Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-09-07T06:49:10.5478033Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-09-07T06:49:10.5478857Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-09-07T06:49:10.5479117Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-09-07T06:49:10.5479379Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-09-07T06:49:10.5479652Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-09-07T06:49:10.5479923Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-09-07T06:49:10.5480167Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-09-07T06:49:10.5480448Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-09-07T06:49:10.5480721Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-09-07T06:49:10.5480960Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-09-07T06:49:10.5481250Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-09-07T06:49:10.5481530Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-09-07T06:49:10.5481766Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-09-07T06:49:10.5482006Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-09-07T06:49:10.5482235Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-09-07T06:49:10.5482466Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-09-07T06:49:10.5482699Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-09-07T06:49:10.5482931Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-09-07T06:49:10.5483159Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-09-07T06:49:10.5483395Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-09-07T06:49:10.5483625Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-09-07T06:49:10.5483853Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-09-07T06:49:10.5484089Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-09-07T06:49:10.5484450Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-09-07T06:49:10.5484690Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-09-07T06:49:10.5484931Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-09-07T06:49:10.5485168Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-09-07T06:49:10.5485400Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-09-07T06:49:10.5485637Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-09-07T06:49:10.5485864Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-09-07T06:49:10.5486090Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-09-07T06:49:10.5486332Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-09-07T06:49:10.5486568Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-09-07T06:49:10.5486848Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-09-07T06:49:10.5487214Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-09-07T06:49:10.5487475Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-09-07T06:49:10.5487716Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-09-07T06:49:10.5487948Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-09-07T06:49:10.5488185Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-09-07T06:49:10.5488418Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-09-07T06:49:10.5488653Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-09-07T06:49:10.5488893Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-09-07T06:49:10.5489127Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-09-07T06:49:10.5489359Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-09-07T06:49:10.5489602Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-09-07T06:49:10.5489833Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-09-07T06:49:10.5490069Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-09-07T06:49:10.5490305Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-09-07T06:49:10.5490543Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-09-07T06:49:10.5490772Z * [new branch] gh/guilhermeleobas/214/base -> origin/gh/guilhermeleobas/214/base 2025-09-07T06:49:10.5491017Z * [new branch] gh/guilhermeleobas/214/head -> origin/gh/guilhermeleobas/214/head 2025-09-07T06:49:10.5491247Z * [new branch] gh/guilhermeleobas/214/orig -> origin/gh/guilhermeleobas/214/orig 2025-09-07T06:49:10.5491478Z * [new branch] gh/guilhermeleobas/215/base -> origin/gh/guilhermeleobas/215/base 2025-09-07T06:49:10.5491719Z * [new branch] gh/guilhermeleobas/215/head -> origin/gh/guilhermeleobas/215/head 2025-09-07T06:49:10.5491948Z * [new branch] gh/guilhermeleobas/215/orig -> origin/gh/guilhermeleobas/215/orig 2025-09-07T06:49:10.5492177Z * [new branch] gh/guilhermeleobas/216/base -> origin/gh/guilhermeleobas/216/base 2025-09-07T06:49:10.5492907Z * [new branch] gh/guilhermeleobas/216/head -> origin/gh/guilhermeleobas/216/head 2025-09-07T06:49:10.5493189Z * [new branch] gh/guilhermeleobas/216/orig -> origin/gh/guilhermeleobas/216/orig 2025-09-07T06:49:10.5493424Z * [new branch] gh/guilhermeleobas/217/base -> origin/gh/guilhermeleobas/217/base 2025-09-07T06:49:10.5493702Z * [new branch] gh/guilhermeleobas/217/head -> origin/gh/guilhermeleobas/217/head 2025-09-07T06:49:10.5493932Z * [new branch] gh/guilhermeleobas/217/orig -> origin/gh/guilhermeleobas/217/orig 2025-09-07T06:49:10.5494164Z * [new branch] gh/guilhermeleobas/219/base -> origin/gh/guilhermeleobas/219/base 2025-09-07T06:49:10.5494402Z * [new branch] gh/guilhermeleobas/219/head -> origin/gh/guilhermeleobas/219/head 2025-09-07T06:49:10.5494631Z * [new branch] gh/guilhermeleobas/219/orig -> origin/gh/guilhermeleobas/219/orig 2025-09-07T06:49:10.5494864Z * [new branch] gh/guilhermeleobas/220/base -> origin/gh/guilhermeleobas/220/base 2025-09-07T06:49:10.5495104Z * [new branch] gh/guilhermeleobas/220/head -> origin/gh/guilhermeleobas/220/head 2025-09-07T06:49:10.5495336Z * [new branch] gh/guilhermeleobas/220/orig -> origin/gh/guilhermeleobas/220/orig 2025-09-07T06:49:10.5495636Z * [new branch] gh/guilhermeleobas/221/base -> origin/gh/guilhermeleobas/221/base 2025-09-07T06:49:10.5495867Z * [new branch] gh/guilhermeleobas/221/head -> origin/gh/guilhermeleobas/221/head 2025-09-07T06:49:10.5496110Z * [new branch] gh/guilhermeleobas/221/orig -> origin/gh/guilhermeleobas/221/orig 2025-09-07T06:49:10.5496348Z * [new branch] gh/guilhermeleobas/222/base -> origin/gh/guilhermeleobas/222/base 2025-09-07T06:49:10.5496580Z * [new branch] gh/guilhermeleobas/222/head -> origin/gh/guilhermeleobas/222/head 2025-09-07T06:49:10.5496828Z * [new branch] gh/guilhermeleobas/222/orig -> origin/gh/guilhermeleobas/222/orig 2025-09-07T06:49:10.5497059Z * [new branch] gh/guilhermeleobas/223/base -> origin/gh/guilhermeleobas/223/base 2025-09-07T06:49:10.5497291Z * [new branch] gh/guilhermeleobas/223/head -> origin/gh/guilhermeleobas/223/head 2025-09-07T06:49:10.5497542Z * [new branch] gh/guilhermeleobas/223/orig -> origin/gh/guilhermeleobas/223/orig 2025-09-07T06:49:10.5497774Z * [new branch] gh/guilhermeleobas/224/base -> origin/gh/guilhermeleobas/224/base 2025-09-07T06:49:10.5498003Z * [new branch] gh/guilhermeleobas/224/head -> origin/gh/guilhermeleobas/224/head 2025-09-07T06:49:10.5498243Z * [new branch] gh/guilhermeleobas/224/orig -> origin/gh/guilhermeleobas/224/orig 2025-09-07T06:49:10.5498475Z * [new branch] gh/guilhermeleobas/225/base -> origin/gh/guilhermeleobas/225/base 2025-09-07T06:49:10.5498706Z * [new branch] gh/guilhermeleobas/225/head -> origin/gh/guilhermeleobas/225/head 2025-09-07T06:49:10.5498995Z * [new branch] gh/guilhermeleobas/225/orig -> origin/gh/guilhermeleobas/225/orig 2025-09-07T06:49:10.5499273Z * [new branch] gh/guilhermeleobas/226/base -> origin/gh/guilhermeleobas/226/base 2025-09-07T06:49:10.5499506Z * [new branch] gh/guilhermeleobas/226/head -> origin/gh/guilhermeleobas/226/head 2025-09-07T06:49:10.5499795Z * [new branch] gh/guilhermeleobas/226/orig -> origin/gh/guilhermeleobas/226/orig 2025-09-07T06:49:10.5500029Z * [new branch] gh/guilhermeleobas/227/base -> origin/gh/guilhermeleobas/227/base 2025-09-07T06:49:10.5500260Z * [new branch] gh/guilhermeleobas/227/head -> origin/gh/guilhermeleobas/227/head 2025-09-07T06:49:10.5500497Z * [new branch] gh/guilhermeleobas/227/orig -> origin/gh/guilhermeleobas/227/orig 2025-09-07T06:49:10.5500729Z * [new branch] gh/guilhermeleobas/228/base -> origin/gh/guilhermeleobas/228/base 2025-09-07T06:49:10.5501030Z * [new branch] gh/guilhermeleobas/228/head -> origin/gh/guilhermeleobas/228/head 2025-09-07T06:49:10.5501269Z * [new branch] gh/guilhermeleobas/228/orig -> origin/gh/guilhermeleobas/228/orig 2025-09-07T06:49:10.5501502Z * [new branch] gh/guilhermeleobas/229/base -> origin/gh/guilhermeleobas/229/base 2025-09-07T06:49:10.5501730Z * [new branch] gh/guilhermeleobas/229/head -> origin/gh/guilhermeleobas/229/head 2025-09-07T06:49:10.5501973Z * [new branch] gh/guilhermeleobas/229/orig -> origin/gh/guilhermeleobas/229/orig 2025-09-07T06:49:10.5502210Z * [new branch] gh/guilhermeleobas/230/base -> origin/gh/guilhermeleobas/230/base 2025-09-07T06:49:10.5502442Z * [new branch] gh/guilhermeleobas/230/head -> origin/gh/guilhermeleobas/230/head 2025-09-07T06:49:10.5502684Z * [new branch] gh/guilhermeleobas/230/orig -> origin/gh/guilhermeleobas/230/orig 2025-09-07T06:49:10.5502923Z * [new branch] gh/guilhermeleobas/231/base -> origin/gh/guilhermeleobas/231/base 2025-09-07T06:49:10.5503151Z * [new branch] gh/guilhermeleobas/231/head -> origin/gh/guilhermeleobas/231/head 2025-09-07T06:49:10.5503447Z * [new branch] gh/guilhermeleobas/231/orig -> origin/gh/guilhermeleobas/231/orig 2025-09-07T06:49:10.5503677Z * [new branch] gh/guilhermeleobas/232/base -> origin/gh/guilhermeleobas/232/base 2025-09-07T06:49:10.5503905Z * [new branch] gh/guilhermeleobas/232/head -> origin/gh/guilhermeleobas/232/head 2025-09-07T06:49:10.5504142Z * [new branch] gh/guilhermeleobas/232/orig -> origin/gh/guilhermeleobas/232/orig 2025-09-07T06:49:10.5504372Z * [new branch] gh/guilhermeleobas/233/base -> origin/gh/guilhermeleobas/233/base 2025-09-07T06:49:10.5504599Z * [new branch] gh/guilhermeleobas/233/head -> origin/gh/guilhermeleobas/233/head 2025-09-07T06:49:10.5504895Z * [new branch] gh/guilhermeleobas/233/orig -> origin/gh/guilhermeleobas/233/orig 2025-09-07T06:49:10.5505129Z * [new branch] gh/guilhermeleobas/234/base -> origin/gh/guilhermeleobas/234/base 2025-09-07T06:49:10.5505409Z * [new branch] gh/guilhermeleobas/234/head -> origin/gh/guilhermeleobas/234/head 2025-09-07T06:49:10.5505695Z * [new branch] gh/guilhermeleobas/234/orig -> origin/gh/guilhermeleobas/234/orig 2025-09-07T06:49:10.5505938Z * [new branch] gh/guilhermeleobas/235/base -> origin/gh/guilhermeleobas/235/base 2025-09-07T06:49:10.5506167Z * [new branch] gh/guilhermeleobas/235/head -> origin/gh/guilhermeleobas/235/head 2025-09-07T06:49:10.5506393Z * [new branch] gh/guilhermeleobas/235/orig -> origin/gh/guilhermeleobas/235/orig 2025-09-07T06:49:10.5506634Z * [new branch] gh/guilhermeleobas/236/base -> origin/gh/guilhermeleobas/236/base 2025-09-07T06:49:10.5506868Z * [new branch] gh/guilhermeleobas/236/head -> origin/gh/guilhermeleobas/236/head 2025-09-07T06:49:10.5507097Z * [new branch] gh/guilhermeleobas/236/orig -> origin/gh/guilhermeleobas/236/orig 2025-09-07T06:49:10.5507337Z * [new branch] gh/guilhermeleobas/237/base -> origin/gh/guilhermeleobas/237/base 2025-09-07T06:49:10.5507572Z * [new branch] gh/guilhermeleobas/237/head -> origin/gh/guilhermeleobas/237/head 2025-09-07T06:49:10.5507800Z * [new branch] gh/guilhermeleobas/237/orig -> origin/gh/guilhermeleobas/237/orig 2025-09-07T06:49:10.5508037Z * [new branch] gh/guilhermeleobas/238/base -> origin/gh/guilhermeleobas/238/base 2025-09-07T06:49:10.5508269Z * [new branch] gh/guilhermeleobas/238/head -> origin/gh/guilhermeleobas/238/head 2025-09-07T06:49:10.5508498Z * [new branch] gh/guilhermeleobas/238/orig -> origin/gh/guilhermeleobas/238/orig 2025-09-07T06:49:10.5508738Z * [new branch] gh/guilhermeleobas/239/base -> origin/gh/guilhermeleobas/239/base 2025-09-07T06:49:10.5509041Z * [new branch] gh/guilhermeleobas/239/head -> origin/gh/guilhermeleobas/239/head 2025-09-07T06:49:10.5509273Z * [new branch] gh/guilhermeleobas/239/orig -> origin/gh/guilhermeleobas/239/orig 2025-09-07T06:49:10.5509520Z * [new branch] gh/guilhermeleobas/240/base -> origin/gh/guilhermeleobas/240/base 2025-09-07T06:49:10.5509749Z * [new branch] gh/guilhermeleobas/240/head -> origin/gh/guilhermeleobas/240/head 2025-09-07T06:49:10.5509977Z * [new branch] gh/guilhermeleobas/240/orig -> origin/gh/guilhermeleobas/240/orig 2025-09-07T06:49:10.5510210Z * [new branch] gh/guilhermeleobas/241/base -> origin/gh/guilhermeleobas/241/base 2025-09-07T06:49:10.5510439Z * [new branch] gh/guilhermeleobas/241/head -> origin/gh/guilhermeleobas/241/head 2025-09-07T06:49:10.5510672Z * [new branch] gh/guilhermeleobas/241/orig -> origin/gh/guilhermeleobas/241/orig 2025-09-07T06:49:10.5510922Z * [new branch] gh/guilhermeleobas/242/base -> origin/gh/guilhermeleobas/242/base 2025-09-07T06:49:10.5511157Z * [new branch] gh/guilhermeleobas/242/head -> origin/gh/guilhermeleobas/242/head 2025-09-07T06:49:10.5511462Z * [new branch] gh/guilhermeleobas/242/orig -> origin/gh/guilhermeleobas/242/orig 2025-09-07T06:49:10.5511697Z * [new branch] gh/guilhermeleobas/243/base -> origin/gh/guilhermeleobas/243/base 2025-09-07T06:49:10.5511933Z * [new branch] gh/guilhermeleobas/243/head -> origin/gh/guilhermeleobas/243/head 2025-09-07T06:49:10.5512161Z * [new branch] gh/guilhermeleobas/243/orig -> origin/gh/guilhermeleobas/243/orig 2025-09-07T06:49:10.5512399Z * [new branch] gh/guilhermeleobas/244/base -> origin/gh/guilhermeleobas/244/base 2025-09-07T06:49:10.5512634Z * [new branch] gh/guilhermeleobas/244/head -> origin/gh/guilhermeleobas/244/head 2025-09-07T06:49:10.5512869Z * [new branch] gh/guilhermeleobas/244/orig -> origin/gh/guilhermeleobas/244/orig 2025-09-07T06:49:10.5513103Z * [new branch] gh/guilhermeleobas/245/base -> origin/gh/guilhermeleobas/245/base 2025-09-07T06:49:10.5513343Z * [new branch] gh/guilhermeleobas/245/head -> origin/gh/guilhermeleobas/245/head 2025-09-07T06:49:10.5513580Z * [new branch] gh/guilhermeleobas/245/orig -> origin/gh/guilhermeleobas/245/orig 2025-09-07T06:49:10.5513817Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-09-07T06:49:10.5514061Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-09-07T06:49:10.5514293Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-09-07T06:49:10.5514510Z * [new branch] gh/henrylhtsang/140/base -> origin/gh/henrylhtsang/140/base 2025-09-07T06:49:10.5514735Z * [new branch] gh/henrylhtsang/140/head -> origin/gh/henrylhtsang/140/head 2025-09-07T06:49:10.5514947Z * [new branch] gh/henrylhtsang/140/orig -> origin/gh/henrylhtsang/140/orig 2025-09-07T06:49:10.5515158Z * [new branch] gh/henrylhtsang/141/base -> origin/gh/henrylhtsang/141/base 2025-09-07T06:49:10.5515378Z * [new branch] gh/henrylhtsang/141/head -> origin/gh/henrylhtsang/141/head 2025-09-07T06:49:10.5515587Z * [new branch] gh/henrylhtsang/141/orig -> origin/gh/henrylhtsang/141/orig 2025-09-07T06:49:10.5515828Z * [new branch] gh/henrylhtsang/142/base -> origin/gh/henrylhtsang/142/base 2025-09-07T06:49:10.5516074Z * [new branch] gh/henrylhtsang/142/head -> origin/gh/henrylhtsang/142/head 2025-09-07T06:49:10.5516328Z * [new branch] gh/henrylhtsang/142/orig -> origin/gh/henrylhtsang/142/orig 2025-09-07T06:49:10.5516543Z * [new branch] gh/henrylhtsang/143/base -> origin/gh/henrylhtsang/143/base 2025-09-07T06:49:10.5516877Z * [new branch] gh/henrylhtsang/143/head -> origin/gh/henrylhtsang/143/head 2025-09-07T06:49:10.5517091Z * [new branch] gh/henrylhtsang/143/orig -> origin/gh/henrylhtsang/143/orig 2025-09-07T06:49:10.5517305Z * [new branch] gh/henrylhtsang/144/base -> origin/gh/henrylhtsang/144/base 2025-09-07T06:49:10.5517525Z * [new branch] gh/henrylhtsang/144/head -> origin/gh/henrylhtsang/144/head 2025-09-07T06:49:10.5517734Z * [new branch] gh/henrylhtsang/144/orig -> origin/gh/henrylhtsang/144/orig 2025-09-07T06:49:10.5517945Z * [new branch] gh/henrylhtsang/145/base -> origin/gh/henrylhtsang/145/base 2025-09-07T06:49:10.5518162Z * [new branch] gh/henrylhtsang/145/head -> origin/gh/henrylhtsang/145/head 2025-09-07T06:49:10.5518378Z * [new branch] gh/henrylhtsang/145/orig -> origin/gh/henrylhtsang/145/orig 2025-09-07T06:49:10.5518595Z * [new branch] gh/henrylhtsang/146/base -> origin/gh/henrylhtsang/146/base 2025-09-07T06:49:10.5518806Z * [new branch] gh/henrylhtsang/146/head -> origin/gh/henrylhtsang/146/head 2025-09-07T06:49:10.5519094Z * [new branch] gh/henrylhtsang/146/orig -> origin/gh/henrylhtsang/146/orig 2025-09-07T06:49:10.5519307Z * [new branch] gh/henrylhtsang/147/base -> origin/gh/henrylhtsang/147/base 2025-09-07T06:49:10.5519517Z * [new branch] gh/henrylhtsang/147/head -> origin/gh/henrylhtsang/147/head 2025-09-07T06:49:10.5519735Z * [new branch] gh/henrylhtsang/147/orig -> origin/gh/henrylhtsang/147/orig 2025-09-07T06:49:10.5519950Z * [new branch] gh/henrylhtsang/148/base -> origin/gh/henrylhtsang/148/base 2025-09-07T06:49:10.5520162Z * [new branch] gh/henrylhtsang/148/head -> origin/gh/henrylhtsang/148/head 2025-09-07T06:49:10.5520387Z * [new branch] gh/henrylhtsang/148/orig -> origin/gh/henrylhtsang/148/orig 2025-09-07T06:49:10.5520598Z * [new branch] gh/henrylhtsang/149/base -> origin/gh/henrylhtsang/149/base 2025-09-07T06:49:10.5520810Z * [new branch] gh/henrylhtsang/149/head -> origin/gh/henrylhtsang/149/head 2025-09-07T06:49:10.5521035Z * [new branch] gh/henrylhtsang/149/orig -> origin/gh/henrylhtsang/149/orig 2025-09-07T06:49:10.5521224Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-09-07T06:49:10.5521403Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-09-07T06:49:10.5521583Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-09-07T06:49:10.5521754Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-09-07T06:49:10.5521925Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-09-07T06:49:10.5522102Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-09-07T06:49:10.5522277Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-09-07T06:49:10.5522446Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-09-07T06:49:10.5522647Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-09-07T06:49:10.5522834Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-09-07T06:49:10.5523017Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-09-07T06:49:10.5523198Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-09-07T06:49:10.5523387Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-09-07T06:49:10.5523572Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-09-07T06:49:10.5523817Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-09-07T06:49:10.5524004Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-09-07T06:49:10.5524188Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-09-07T06:49:10.5524370Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-09-07T06:49:10.5524659Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-09-07T06:49:10.5524846Z * [new branch] gh/isuruf/144/base -> origin/gh/isuruf/144/base 2025-09-07T06:49:10.5525023Z * [new branch] gh/isuruf/144/head -> origin/gh/isuruf/144/head 2025-09-07T06:49:10.5525221Z * [new branch] gh/isuruf/144/orig -> origin/gh/isuruf/144/orig 2025-09-07T06:49:10.5525401Z * [new branch] gh/isuruf/145/base -> origin/gh/isuruf/145/base 2025-09-07T06:49:10.5525586Z * [new branch] gh/isuruf/145/head -> origin/gh/isuruf/145/head 2025-09-07T06:49:10.5525778Z * [new branch] gh/isuruf/145/orig -> origin/gh/isuruf/145/orig 2025-09-07T06:49:10.5526026Z * [new branch] gh/isuruf/146/base -> origin/gh/isuruf/146/base 2025-09-07T06:49:10.5526207Z * [new branch] gh/isuruf/146/head -> origin/gh/isuruf/146/head 2025-09-07T06:49:10.5526391Z * [new branch] gh/isuruf/146/orig -> origin/gh/isuruf/146/orig 2025-09-07T06:49:10.5526569Z * [new branch] gh/isuruf/81/base -> origin/gh/isuruf/81/base 2025-09-07T06:49:10.5526746Z * [new branch] gh/isuruf/81/head -> origin/gh/isuruf/81/head 2025-09-07T06:49:10.5526929Z * [new branch] gh/isuruf/81/orig -> origin/gh/isuruf/81/orig 2025-09-07T06:49:10.5527121Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-09-07T06:49:10.5527314Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-09-07T06:49:10.5527502Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-09-07T06:49:10.5527703Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-09-07T06:49:10.5527894Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-09-07T06:49:10.5528089Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-09-07T06:49:10.5528285Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-09-07T06:49:10.5528473Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-09-07T06:49:10.5528663Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-09-07T06:49:10.5528863Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-09-07T06:49:10.5529056Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-09-07T06:49:10.5529247Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-09-07T06:49:10.5529452Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-09-07T06:49:10.5529641Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-09-07T06:49:10.5529828Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-09-07T06:49:10.5530024Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-09-07T06:49:10.5530211Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-09-07T06:49:10.5530399Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-09-07T06:49:10.5530660Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-09-07T06:49:10.5530852Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-09-07T06:49:10.5531043Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-09-07T06:49:10.5531244Z * [new branch] gh/jamesjwu/181/base -> origin/gh/jamesjwu/181/base 2025-09-07T06:49:10.5531435Z * [new branch] gh/jamesjwu/181/head -> origin/gh/jamesjwu/181/head 2025-09-07T06:49:10.5531625Z * [new branch] gh/jamesjwu/181/orig -> origin/gh/jamesjwu/181/orig 2025-09-07T06:49:10.5531812Z * [new branch] gh/jamesjwu/182/base -> origin/gh/jamesjwu/182/base 2025-09-07T06:49:10.5532078Z * [new branch] gh/jamesjwu/182/head -> origin/gh/jamesjwu/182/head 2025-09-07T06:49:10.5532294Z * [new branch] gh/jamesjwu/182/orig -> origin/gh/jamesjwu/182/orig 2025-09-07T06:49:10.5532514Z * [new branch] gh/jamesjwu/183/base -> origin/gh/jamesjwu/183/base 2025-09-07T06:49:10.5532759Z * [new branch] gh/jamesjwu/183/head -> origin/gh/jamesjwu/183/head 2025-09-07T06:49:10.5533020Z * [new branch] gh/jamesjwu/183/orig -> origin/gh/jamesjwu/183/orig 2025-09-07T06:49:10.5533207Z * [new branch] gh/jamesjwu/184/base -> origin/gh/jamesjwu/184/base 2025-09-07T06:49:10.5533407Z * [new branch] gh/jamesjwu/184/head -> origin/gh/jamesjwu/184/head 2025-09-07T06:49:10.5533593Z * [new branch] gh/jamesjwu/184/orig -> origin/gh/jamesjwu/184/orig 2025-09-07T06:49:10.5533783Z * [new branch] gh/jamesjwu/185/base -> origin/gh/jamesjwu/185/base 2025-09-07T06:49:10.5533980Z * [new branch] gh/jamesjwu/185/head -> origin/gh/jamesjwu/185/head 2025-09-07T06:49:10.5534176Z * [new branch] gh/jamesjwu/185/orig -> origin/gh/jamesjwu/185/orig 2025-09-07T06:49:10.5534365Z * [new branch] gh/jamesjwu/186/base -> origin/gh/jamesjwu/186/base 2025-09-07T06:49:10.5534563Z * [new branch] gh/jamesjwu/186/head -> origin/gh/jamesjwu/186/head 2025-09-07T06:49:10.5534755Z * [new branch] gh/jamesjwu/186/orig -> origin/gh/jamesjwu/186/orig 2025-09-07T06:49:10.5534948Z * [new branch] gh/jamesjwu/187/base -> origin/gh/jamesjwu/187/base 2025-09-07T06:49:10.5535148Z * [new branch] gh/jamesjwu/187/head -> origin/gh/jamesjwu/187/head 2025-09-07T06:49:10.5535331Z * [new branch] gh/jamesjwu/187/orig -> origin/gh/jamesjwu/187/orig 2025-09-07T06:49:10.5535518Z * [new branch] gh/jamesjwu/188/base -> origin/gh/jamesjwu/188/base 2025-09-07T06:49:10.5535713Z * [new branch] gh/jamesjwu/188/head -> origin/gh/jamesjwu/188/head 2025-09-07T06:49:10.5535905Z * [new branch] gh/jamesjwu/188/orig -> origin/gh/jamesjwu/188/orig 2025-09-07T06:49:10.5536093Z * [new branch] gh/jamesjwu/189/base -> origin/gh/jamesjwu/189/base 2025-09-07T06:49:10.5536284Z * [new branch] gh/jamesjwu/189/head -> origin/gh/jamesjwu/189/head 2025-09-07T06:49:10.5536480Z * [new branch] gh/jamesjwu/189/orig -> origin/gh/jamesjwu/189/orig 2025-09-07T06:49:10.5536669Z * [new branch] gh/jamesjwu/190/base -> origin/gh/jamesjwu/190/base 2025-09-07T06:49:10.5536862Z * [new branch] gh/jamesjwu/190/head -> origin/gh/jamesjwu/190/head 2025-09-07T06:49:10.5537061Z * [new branch] gh/jamesjwu/190/orig -> origin/gh/jamesjwu/190/orig 2025-09-07T06:49:10.5537256Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-09-07T06:49:10.5537447Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-09-07T06:49:10.5537713Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-09-07T06:49:10.5537904Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-09-07T06:49:10.5538095Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-09-07T06:49:10.5538291Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-09-07T06:49:10.5538477Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-09-07T06:49:10.5538668Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-09-07T06:49:10.5538857Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-09-07T06:49:10.5539044Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-09-07T06:49:10.5539230Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-09-07T06:49:10.5539430Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-09-07T06:49:10.5539620Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-09-07T06:49:10.5539868Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-09-07T06:49:10.5540061Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-09-07T06:49:10.5540244Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-09-07T06:49:10.5540431Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-09-07T06:49:10.5540617Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-09-07T06:49:10.5540816Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-09-07T06:49:10.5541009Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-09-07T06:49:10.5541198Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-09-07T06:49:10.5541394Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-09-07T06:49:10.5541582Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-09-07T06:49:10.5541765Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-09-07T06:49:10.5541957Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-09-07T06:49:10.5542143Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-09-07T06:49:10.5542328Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-09-07T06:49:10.5542521Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-09-07T06:49:10.5542715Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-09-07T06:49:10.5542902Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-09-07T06:49:10.5543098Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-09-07T06:49:10.5543284Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-09-07T06:49:10.5543470Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-09-07T06:49:10.5543662Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-09-07T06:49:10.5543852Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-09-07T06:49:10.5544038Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-09-07T06:49:10.5544230Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-09-07T06:49:10.5544472Z * [new branch] gh/janeyx99/296/base -> origin/gh/janeyx99/296/base 2025-09-07T06:49:10.5544658Z * [new branch] gh/janeyx99/296/head -> origin/gh/janeyx99/296/head 2025-09-07T06:49:10.5544844Z * [new branch] gh/janeyx99/296/orig -> origin/gh/janeyx99/296/orig 2025-09-07T06:49:10.5545038Z * [new branch] gh/janeyx99/297/base -> origin/gh/janeyx99/297/base 2025-09-07T06:49:10.5545222Z * [new branch] gh/janeyx99/297/head -> origin/gh/janeyx99/297/head 2025-09-07T06:49:10.5545408Z * [new branch] gh/janeyx99/297/orig -> origin/gh/janeyx99/297/orig 2025-09-07T06:49:10.5545600Z * [new branch] gh/janeyx99/298/base -> origin/gh/janeyx99/298/base 2025-09-07T06:49:10.5545787Z * [new branch] gh/janeyx99/298/head -> origin/gh/janeyx99/298/head 2025-09-07T06:49:10.5545974Z * [new branch] gh/janeyx99/298/orig -> origin/gh/janeyx99/298/orig 2025-09-07T06:49:10.5546166Z * [new branch] gh/janeyx99/299/base -> origin/gh/janeyx99/299/base 2025-09-07T06:49:10.5546354Z * [new branch] gh/janeyx99/299/head -> origin/gh/janeyx99/299/head 2025-09-07T06:49:10.5546606Z * [new branch] gh/janeyx99/299/orig -> origin/gh/janeyx99/299/orig 2025-09-07T06:49:10.5546796Z * [new branch] gh/janeyx99/300/base -> origin/gh/janeyx99/300/base 2025-09-07T06:49:10.5546979Z * [new branch] gh/janeyx99/300/head -> origin/gh/janeyx99/300/head 2025-09-07T06:49:10.5547167Z * [new branch] gh/janeyx99/300/orig -> origin/gh/janeyx99/300/orig 2025-09-07T06:49:10.5547359Z * [new branch] gh/janeyx99/301/base -> origin/gh/janeyx99/301/base 2025-09-07T06:49:10.5547542Z * [new branch] gh/janeyx99/301/head -> origin/gh/janeyx99/301/head 2025-09-07T06:49:10.5547728Z * [new branch] gh/janeyx99/301/orig -> origin/gh/janeyx99/301/orig 2025-09-07T06:49:10.5547920Z * [new branch] gh/janeyx99/302/base -> origin/gh/janeyx99/302/base 2025-09-07T06:49:10.5548107Z * [new branch] gh/janeyx99/302/head -> origin/gh/janeyx99/302/head 2025-09-07T06:49:10.5548289Z * [new branch] gh/janeyx99/303/base -> origin/gh/janeyx99/303/base 2025-09-07T06:49:10.5548487Z * [new branch] gh/janeyx99/303/head -> origin/gh/janeyx99/303/head 2025-09-07T06:49:10.5548670Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-09-07T06:49:10.5548858Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-09-07T06:49:10.5549040Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-09-07T06:49:10.5549233Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-09-07T06:49:10.5549423Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-09-07T06:49:10.5549607Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-09-07T06:49:10.5549800Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-09-07T06:49:10.5549980Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-09-07T06:49:10.5550162Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-09-07T06:49:10.5550352Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-09-07T06:49:10.5550533Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-09-07T06:49:10.5550715Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-09-07T06:49:10.5550908Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-09-07T06:49:10.5551151Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-09-07T06:49:10.5551372Z * [new branch] gh/jbschlosser/208/head -> origin/gh/jbschlosser/208/head 2025-09-07T06:49:10.5551598Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-09-07T06:49:10.5551805Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-09-07T06:49:10.5552015Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-09-07T06:49:10.5552233Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-09-07T06:49:10.5552441Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-09-07T06:49:10.5552647Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-09-07T06:49:10.5552872Z * [new branch] gh/jbschlosser/250/base -> origin/gh/jbschlosser/250/base 2025-09-07T06:49:10.5553081Z * [new branch] gh/jbschlosser/250/head -> origin/gh/jbschlosser/250/head 2025-09-07T06:49:10.5553350Z * [new branch] gh/jbschlosser/250/orig -> origin/gh/jbschlosser/250/orig 2025-09-07T06:49:10.5553551Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-09-07T06:49:10.5553743Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-09-07T06:49:10.5553935Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-09-07T06:49:10.5554129Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-09-07T06:49:10.5554330Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-09-07T06:49:10.5554520Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-09-07T06:49:10.5554715Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-09-07T06:49:10.5554911Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-09-07T06:49:10.5555104Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-09-07T06:49:10.5555295Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-09-07T06:49:10.5555495Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-09-07T06:49:10.5555688Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-09-07T06:49:10.5555880Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-09-07T06:49:10.5556082Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-09-07T06:49:10.5556273Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-09-07T06:49:10.5556462Z * [new branch] gh/jiayisunx/67/base -> origin/gh/jiayisunx/67/base 2025-09-07T06:49:10.5556661Z * [new branch] gh/jiayisunx/67/head -> origin/gh/jiayisunx/67/head 2025-09-07T06:49:10.5556856Z * [new branch] gh/jiayisunx/67/orig -> origin/gh/jiayisunx/67/orig 2025-09-07T06:49:10.5557040Z * [new branch] gh/jiayisunx/68/base -> origin/gh/jiayisunx/68/base 2025-09-07T06:49:10.5557233Z * [new branch] gh/jiayisunx/68/head -> origin/gh/jiayisunx/68/head 2025-09-07T06:49:10.5557425Z * [new branch] gh/jiayisunx/68/orig -> origin/gh/jiayisunx/68/orig 2025-09-07T06:49:10.5557615Z * [new branch] gh/jiayisunx/69/base -> origin/gh/jiayisunx/69/base 2025-09-07T06:49:10.5557810Z * [new branch] gh/jiayisunx/69/head -> origin/gh/jiayisunx/69/head 2025-09-07T06:49:10.5558067Z * [new branch] gh/jiayisunx/69/orig -> origin/gh/jiayisunx/69/orig 2025-09-07T06:49:10.5558263Z * [new branch] gh/jiayisunx/70/base -> origin/gh/jiayisunx/70/base 2025-09-07T06:49:10.5558452Z * [new branch] gh/jiayisunx/70/head -> origin/gh/jiayisunx/70/head 2025-09-07T06:49:10.5558653Z * [new branch] gh/jiayisunx/70/orig -> origin/gh/jiayisunx/70/orig 2025-09-07T06:49:10.5558846Z * [new branch] gh/jiayisunx/71/base -> origin/gh/jiayisunx/71/base 2025-09-07T06:49:10.5559041Z * [new branch] gh/jiayisunx/71/head -> origin/gh/jiayisunx/71/head 2025-09-07T06:49:10.5559242Z * [new branch] gh/jiayisunx/71/orig -> origin/gh/jiayisunx/71/orig 2025-09-07T06:49:10.5559429Z * [new branch] gh/jiayisunx/72/base -> origin/gh/jiayisunx/72/base 2025-09-07T06:49:10.5559616Z * [new branch] gh/jiayisunx/72/head -> origin/gh/jiayisunx/72/head 2025-09-07T06:49:10.5559816Z * [new branch] gh/jiayisunx/72/orig -> origin/gh/jiayisunx/72/orig 2025-09-07T06:49:10.5560006Z * [new branch] gh/jiayisunx/73/base -> origin/gh/jiayisunx/73/base 2025-09-07T06:49:10.5560258Z * [new branch] gh/jiayisunx/73/head -> origin/gh/jiayisunx/73/head 2025-09-07T06:49:10.5560455Z * [new branch] gh/jiayisunx/73/orig -> origin/gh/jiayisunx/73/orig 2025-09-07T06:49:10.5560649Z * [new branch] gh/jiayisunx/74/base -> origin/gh/jiayisunx/74/base 2025-09-07T06:49:10.5560837Z * [new branch] gh/jiayisunx/74/head -> origin/gh/jiayisunx/74/head 2025-09-07T06:49:10.5561032Z * [new branch] gh/jiayisunx/74/orig -> origin/gh/jiayisunx/74/orig 2025-09-07T06:49:10.5561221Z * [new branch] gh/jiayisunx/75/base -> origin/gh/jiayisunx/75/base 2025-09-07T06:49:10.5561413Z * [new branch] gh/jiayisunx/75/head -> origin/gh/jiayisunx/75/head 2025-09-07T06:49:10.5561616Z * [new branch] gh/jiayisunx/75/orig -> origin/gh/jiayisunx/75/orig 2025-09-07T06:49:10.5561805Z * [new branch] gh/jiayisunx/76/base -> origin/gh/jiayisunx/76/base 2025-09-07T06:49:10.5561997Z * [new branch] gh/jiayisunx/76/head -> origin/gh/jiayisunx/76/head 2025-09-07T06:49:10.5562196Z * [new branch] gh/jiayisunx/76/orig -> origin/gh/jiayisunx/76/orig 2025-09-07T06:49:10.5562405Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-09-07T06:49:10.5562603Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-09-07T06:49:10.5562812Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-09-07T06:49:10.5563023Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-09-07T06:49:10.5563310Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-09-07T06:49:10.5563531Z * [new branch] gh/justinchuby/112/base -> origin/gh/justinchuby/112/base 2025-09-07T06:49:10.5563796Z * [new branch] gh/justinchuby/112/head -> origin/gh/justinchuby/112/head 2025-09-07T06:49:10.5564009Z * [new branch] gh/justinchuby/112/orig -> origin/gh/justinchuby/112/orig 2025-09-07T06:49:10.5564215Z * [new branch] gh/justinchuby/113/base -> origin/gh/justinchuby/113/base 2025-09-07T06:49:10.5564524Z * [new branch] gh/justinchuby/113/head -> origin/gh/justinchuby/113/head 2025-09-07T06:49:10.5564733Z * [new branch] gh/justinchuby/113/orig -> origin/gh/justinchuby/113/orig 2025-09-07T06:49:10.5564943Z * [new branch] gh/justinchuby/114/base -> origin/gh/justinchuby/114/base 2025-09-07T06:49:10.5565239Z * [new branch] gh/justinchuby/114/head -> origin/gh/justinchuby/114/head 2025-09-07T06:49:10.5565448Z * [new branch] gh/justinchuby/114/orig -> origin/gh/justinchuby/114/orig 2025-09-07T06:49:10.5565657Z * [new branch] gh/justinchuby/115/base -> origin/gh/justinchuby/115/base 2025-09-07T06:49:10.5565880Z * [new branch] gh/justinchuby/115/head -> origin/gh/justinchuby/115/head 2025-09-07T06:49:10.5566092Z * [new branch] gh/justinchuby/115/orig -> origin/gh/justinchuby/115/orig 2025-09-07T06:49:10.5566293Z * [new branch] gh/karthickai/1/base -> origin/gh/karthickai/1/base 2025-09-07T06:49:10.5566499Z * [new branch] gh/karthickai/1/head -> origin/gh/karthickai/1/head 2025-09-07T06:49:10.5566691Z * [new branch] gh/karthickai/1/orig -> origin/gh/karthickai/1/orig 2025-09-07T06:49:10.5566886Z * [new branch] gh/karthickai/2/base -> origin/gh/karthickai/2/base 2025-09-07T06:49:10.5567092Z * [new branch] gh/karthickai/2/head -> origin/gh/karthickai/2/head 2025-09-07T06:49:10.5567286Z * [new branch] gh/karthickai/2/orig -> origin/gh/karthickai/2/orig 2025-09-07T06:49:10.5567560Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-09-07T06:49:10.5567782Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-09-07T06:49:10.5567987Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-09-07T06:49:10.5568189Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-09-07T06:49:10.5568390Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-09-07T06:49:10.5568599Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-09-07T06:49:10.5568802Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-09-07T06:49:10.5569012Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-09-07T06:49:10.5569222Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-09-07T06:49:10.5569431Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-09-07T06:49:10.5569631Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-09-07T06:49:10.5569847Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-09-07T06:49:10.5570050Z * [new branch] gh/kurtamohler/46/base -> origin/gh/kurtamohler/46/base 2025-09-07T06:49:10.5570252Z * [new branch] gh/kurtamohler/46/head -> origin/gh/kurtamohler/46/head 2025-09-07T06:49:10.5570466Z * [new branch] gh/kurtamohler/46/orig -> origin/gh/kurtamohler/46/orig 2025-09-07T06:49:10.5570672Z * [new branch] gh/kurtamohler/47/base -> origin/gh/kurtamohler/47/base 2025-09-07T06:49:10.5570876Z * [new branch] gh/kurtamohler/47/head -> origin/gh/kurtamohler/47/head 2025-09-07T06:49:10.5571086Z * [new branch] gh/kurtamohler/47/orig -> origin/gh/kurtamohler/47/orig 2025-09-07T06:49:10.5571293Z * [new branch] gh/kurtamohler/48/base -> origin/gh/kurtamohler/48/base 2025-09-07T06:49:10.5571495Z * [new branch] gh/kurtamohler/48/head -> origin/gh/kurtamohler/48/head 2025-09-07T06:49:10.5571705Z * [new branch] gh/kurtamohler/48/orig -> origin/gh/kurtamohler/48/orig 2025-09-07T06:49:10.5571905Z * [new branch] gh/kurtamohler/49/base -> origin/gh/kurtamohler/49/base 2025-09-07T06:49:10.5572105Z * [new branch] gh/kurtamohler/49/head -> origin/gh/kurtamohler/49/head 2025-09-07T06:49:10.5572309Z * [new branch] gh/kurtamohler/49/orig -> origin/gh/kurtamohler/49/orig 2025-09-07T06:49:10.5572581Z * [new branch] gh/kurtamohler/50/base -> origin/gh/kurtamohler/50/base 2025-09-07T06:49:10.5572784Z * [new branch] gh/kurtamohler/50/head -> origin/gh/kurtamohler/50/head 2025-09-07T06:49:10.5572998Z * [new branch] gh/kurtamohler/50/orig -> origin/gh/kurtamohler/50/orig 2025-09-07T06:49:10.5573184Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-09-07T06:49:10.5573371Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-09-07T06:49:10.5573556Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-09-07T06:49:10.5573750Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-09-07T06:49:10.5573934Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-09-07T06:49:10.5574124Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-09-07T06:49:10.5574318Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-09-07T06:49:10.5574503Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-09-07T06:49:10.5574751Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-09-07T06:49:10.5574947Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-09-07T06:49:10.5575132Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-09-07T06:49:10.5575319Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-09-07T06:49:10.5575512Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-09-07T06:49:10.5575698Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-09-07T06:49:10.5575887Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-09-07T06:49:10.5576079Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-09-07T06:49:10.5576266Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-09-07T06:49:10.5576452Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-09-07T06:49:10.5576644Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-09-07T06:49:10.5576827Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-09-07T06:49:10.5577014Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-09-07T06:49:10.5577206Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-09-07T06:49:10.5577394Z * [new branch] gh/kwen2501/199/base -> origin/gh/kwen2501/199/base 2025-09-07T06:49:10.5577581Z * [new branch] gh/kwen2501/199/head -> origin/gh/kwen2501/199/head 2025-09-07T06:49:10.5577763Z * [new branch] gh/kwen2501/199/orig -> origin/gh/kwen2501/199/orig 2025-09-07T06:49:10.5577962Z * [new branch] gh/kwen2501/200/base -> origin/gh/kwen2501/200/base 2025-09-07T06:49:10.5578145Z * [new branch] gh/kwen2501/200/head -> origin/gh/kwen2501/200/head 2025-09-07T06:49:10.5578329Z * [new branch] gh/kwen2501/200/orig -> origin/gh/kwen2501/200/orig 2025-09-07T06:49:10.5578523Z * [new branch] gh/kwen2501/201/base -> origin/gh/kwen2501/201/base 2025-09-07T06:49:10.5578707Z * [new branch] gh/kwen2501/201/head -> origin/gh/kwen2501/201/head 2025-09-07T06:49:10.5578891Z * [new branch] gh/kwen2501/201/orig -> origin/gh/kwen2501/201/orig 2025-09-07T06:49:10.5579157Z * [new branch] gh/kwen2501/203/base -> origin/gh/kwen2501/203/base 2025-09-07T06:49:10.5579347Z * [new branch] gh/kwen2501/203/head -> origin/gh/kwen2501/203/head 2025-09-07T06:49:10.5579528Z * [new branch] gh/kwen2501/203/orig -> origin/gh/kwen2501/203/orig 2025-09-07T06:49:10.5579726Z * [new branch] gh/kwen2501/204/base -> origin/gh/kwen2501/204/base 2025-09-07T06:49:10.5579907Z * [new branch] gh/kwen2501/204/head -> origin/gh/kwen2501/204/head 2025-09-07T06:49:10.5580094Z * [new branch] gh/kwen2501/204/orig -> origin/gh/kwen2501/204/orig 2025-09-07T06:49:10.5580287Z * [new branch] gh/kwen2501/205/base -> origin/gh/kwen2501/205/base 2025-09-07T06:49:10.5580472Z * [new branch] gh/kwen2501/205/head -> origin/gh/kwen2501/205/head 2025-09-07T06:49:10.5580660Z * [new branch] gh/kwen2501/205/orig -> origin/gh/kwen2501/205/orig 2025-09-07T06:49:10.5580853Z * [new branch] gh/kwen2501/206/base -> origin/gh/kwen2501/206/base 2025-09-07T06:49:10.5581039Z * [new branch] gh/kwen2501/206/head -> origin/gh/kwen2501/206/head 2025-09-07T06:49:10.5581287Z * [new branch] gh/kwen2501/206/orig -> origin/gh/kwen2501/206/orig 2025-09-07T06:49:10.5581479Z * [new branch] gh/kwen2501/207/base -> origin/gh/kwen2501/207/base 2025-09-07T06:49:10.5581661Z * [new branch] gh/kwen2501/207/head -> origin/gh/kwen2501/207/head 2025-09-07T06:49:10.5581848Z * [new branch] gh/kwen2501/207/orig -> origin/gh/kwen2501/207/orig 2025-09-07T06:49:10.5582034Z * [new branch] gh/kwen2501/208/base -> origin/gh/kwen2501/208/base 2025-09-07T06:49:10.5582230Z * [new branch] gh/kwen2501/208/head -> origin/gh/kwen2501/208/head 2025-09-07T06:49:10.5582411Z * [new branch] gh/kwen2501/208/orig -> origin/gh/kwen2501/208/orig 2025-09-07T06:49:10.5582599Z * [new branch] gh/kwen2501/209/base -> origin/gh/kwen2501/209/base 2025-09-07T06:49:10.5582795Z * [new branch] gh/kwen2501/209/head -> origin/gh/kwen2501/209/head 2025-09-07T06:49:10.5582981Z * [new branch] gh/kwen2501/209/orig -> origin/gh/kwen2501/209/orig 2025-09-07T06:49:10.5583169Z * [new branch] gh/kwen2501/210/base -> origin/gh/kwen2501/210/base 2025-09-07T06:49:10.5583358Z * [new branch] gh/kwen2501/210/head -> origin/gh/kwen2501/210/head 2025-09-07T06:49:10.5583540Z * [new branch] gh/kwen2501/210/orig -> origin/gh/kwen2501/210/orig 2025-09-07T06:49:10.5583726Z * [new branch] gh/kwen2501/211/base -> origin/gh/kwen2501/211/base 2025-09-07T06:49:10.5583918Z * [new branch] gh/kwen2501/211/head -> origin/gh/kwen2501/211/head 2025-09-07T06:49:10.5584103Z * [new branch] gh/kwen2501/212/base -> origin/gh/kwen2501/212/base 2025-09-07T06:49:10.5584285Z * [new branch] gh/kwen2501/212/head -> origin/gh/kwen2501/212/head 2025-09-07T06:49:10.5584485Z * [new branch] gh/kwen2501/212/orig -> origin/gh/kwen2501/212/orig 2025-09-07T06:49:10.5584675Z * [new branch] gh/kwen2501/213/base -> origin/gh/kwen2501/213/base 2025-09-07T06:49:10.5584857Z * [new branch] gh/kwen2501/213/head -> origin/gh/kwen2501/213/head 2025-09-07T06:49:10.5585045Z * [new branch] gh/kwen2501/213/orig -> origin/gh/kwen2501/213/orig 2025-09-07T06:49:10.5585228Z * [new branch] gh/kwen2501/214/base -> origin/gh/kwen2501/214/base 2025-09-07T06:49:10.5585412Z * [new branch] gh/kwen2501/214/head -> origin/gh/kwen2501/214/head 2025-09-07T06:49:10.5585600Z * [new branch] gh/kwen2501/214/orig -> origin/gh/kwen2501/214/orig 2025-09-07T06:49:10.5585852Z * [new branch] gh/kwen2501/215/base -> origin/gh/kwen2501/215/base 2025-09-07T06:49:10.5586037Z * [new branch] gh/kwen2501/215/head -> origin/gh/kwen2501/215/head 2025-09-07T06:49:10.5586224Z * [new branch] gh/kwen2501/215/orig -> origin/gh/kwen2501/215/orig 2025-09-07T06:49:10.5586415Z * [new branch] gh/kwen2501/216/base -> origin/gh/kwen2501/216/base 2025-09-07T06:49:10.5586601Z * [new branch] gh/kwen2501/216/head -> origin/gh/kwen2501/216/head 2025-09-07T06:49:10.5586787Z * [new branch] gh/kwen2501/216/orig -> origin/gh/kwen2501/216/orig 2025-09-07T06:49:10.5586979Z * [new branch] gh/kwen2501/217/base -> origin/gh/kwen2501/217/base 2025-09-07T06:49:10.5587162Z * [new branch] gh/kwen2501/217/head -> origin/gh/kwen2501/217/head 2025-09-07T06:49:10.5587343Z * [new branch] gh/kwen2501/217/orig -> origin/gh/kwen2501/217/orig 2025-09-07T06:49:10.5587538Z * [new branch] gh/kwen2501/218/base -> origin/gh/kwen2501/218/base 2025-09-07T06:49:10.5587724Z * [new branch] gh/kwen2501/218/head -> origin/gh/kwen2501/218/head 2025-09-07T06:49:10.5587970Z * [new branch] gh/kwen2501/218/orig -> origin/gh/kwen2501/218/orig 2025-09-07T06:49:10.5588160Z * [new branch] gh/kwen2501/219/base -> origin/gh/kwen2501/219/base 2025-09-07T06:49:10.5588343Z * [new branch] gh/kwen2501/219/head -> origin/gh/kwen2501/219/head 2025-09-07T06:49:10.5588526Z * [new branch] gh/kwen2501/219/orig -> origin/gh/kwen2501/219/orig 2025-09-07T06:49:10.5588719Z * [new branch] gh/kwen2501/220/base -> origin/gh/kwen2501/220/base 2025-09-07T06:49:10.5588901Z * [new branch] gh/kwen2501/220/head -> origin/gh/kwen2501/220/head 2025-09-07T06:49:10.5589089Z * [new branch] gh/kwen2501/220/orig -> origin/gh/kwen2501/220/orig 2025-09-07T06:49:10.5589292Z * [new branch] gh/kwen2501/221/base -> origin/gh/kwen2501/221/base 2025-09-07T06:49:10.5589475Z * [new branch] gh/kwen2501/221/head -> origin/gh/kwen2501/221/head 2025-09-07T06:49:10.5589667Z * [new branch] gh/kwen2501/221/orig -> origin/gh/kwen2501/221/orig 2025-09-07T06:49:10.5589855Z * [new branch] gh/kwen2501/222/base -> origin/gh/kwen2501/222/base 2025-09-07T06:49:10.5590039Z * [new branch] gh/kwen2501/222/head -> origin/gh/kwen2501/222/head 2025-09-07T06:49:10.5590223Z * [new branch] gh/kwen2501/222/orig -> origin/gh/kwen2501/222/orig 2025-09-07T06:49:10.5590404Z * [new branch] gh/kwen2501/223/base -> origin/gh/kwen2501/223/base 2025-09-07T06:49:10.5590594Z * [new branch] gh/kwen2501/223/head -> origin/gh/kwen2501/223/head 2025-09-07T06:49:10.5590780Z * [new branch] gh/kwen2501/223/orig -> origin/gh/kwen2501/223/orig 2025-09-07T06:49:10.5590963Z * [new branch] gh/kwen2501/224/base -> origin/gh/kwen2501/224/base 2025-09-07T06:49:10.5591153Z * [new branch] gh/kwen2501/224/head -> origin/gh/kwen2501/224/head 2025-09-07T06:49:10.5591338Z * [new branch] gh/kwen2501/224/orig -> origin/gh/kwen2501/224/orig 2025-09-07T06:49:10.5591526Z * [new branch] gh/kwen2501/225/base -> origin/gh/kwen2501/225/base 2025-09-07T06:49:10.5591720Z * [new branch] gh/kwen2501/225/head -> origin/gh/kwen2501/225/head 2025-09-07T06:49:10.5591905Z * [new branch] gh/kwen2501/225/orig -> origin/gh/kwen2501/225/orig 2025-09-07T06:49:10.5592089Z * [new branch] gh/kwen2501/226/base -> origin/gh/kwen2501/226/base 2025-09-07T06:49:10.5592279Z * [new branch] gh/kwen2501/226/head -> origin/gh/kwen2501/226/head 2025-09-07T06:49:10.5592530Z * [new branch] gh/kwen2501/226/orig -> origin/gh/kwen2501/226/orig 2025-09-07T06:49:10.5592716Z * [new branch] gh/kwen2501/227/base -> origin/gh/kwen2501/227/base 2025-09-07T06:49:10.5592910Z * [new branch] gh/kwen2501/227/head -> origin/gh/kwen2501/227/head 2025-09-07T06:49:10.5593092Z * [new branch] gh/kwen2501/227/orig -> origin/gh/kwen2501/227/orig 2025-09-07T06:49:10.5593278Z * [new branch] gh/kwen2501/228/base -> origin/gh/kwen2501/228/base 2025-09-07T06:49:10.5593469Z * [new branch] gh/kwen2501/228/head -> origin/gh/kwen2501/228/head 2025-09-07T06:49:10.5593655Z * [new branch] gh/kwen2501/228/orig -> origin/gh/kwen2501/228/orig 2025-09-07T06:49:10.5593842Z * [new branch] gh/kwen2501/229/base -> origin/gh/kwen2501/229/base 2025-09-07T06:49:10.5594036Z * [new branch] gh/kwen2501/229/head -> origin/gh/kwen2501/229/head 2025-09-07T06:49:10.5594219Z * [new branch] gh/kwen2501/229/orig -> origin/gh/kwen2501/229/orig 2025-09-07T06:49:10.5594401Z * [new branch] gh/kwen2501/230/base -> origin/gh/kwen2501/230/base 2025-09-07T06:49:10.5595061Z * [new branch] gh/kwen2501/230/head -> origin/gh/kwen2501/230/head 2025-09-07T06:49:10.5595266Z * [new branch] gh/kwen2501/230/orig -> origin/gh/kwen2501/230/orig 2025-09-07T06:49:10.5595451Z * [new branch] gh/kwen2501/231/base -> origin/gh/kwen2501/231/base 2025-09-07T06:49:10.5595636Z * [new branch] gh/kwen2501/231/head -> origin/gh/kwen2501/231/head 2025-09-07T06:49:10.5595825Z * [new branch] gh/kwen2501/231/orig -> origin/gh/kwen2501/231/orig 2025-09-07T06:49:10.5596010Z * [new branch] gh/kwen2501/232/base -> origin/gh/kwen2501/232/base 2025-09-07T06:49:10.5596206Z * [new branch] gh/kwen2501/232/head -> origin/gh/kwen2501/232/head 2025-09-07T06:49:10.5596401Z * [new branch] gh/kwen2501/232/orig -> origin/gh/kwen2501/232/orig 2025-09-07T06:49:10.5596608Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-09-07T06:49:10.5596818Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-09-07T06:49:10.5597032Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-09-07T06:49:10.5597230Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-09-07T06:49:10.5597433Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-09-07T06:49:10.5597637Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-09-07T06:49:10.5597839Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-09-07T06:49:10.5598044Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-09-07T06:49:10.5598253Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-09-07T06:49:10.5598454Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-09-07T06:49:10.5598653Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-09-07T06:49:10.5598861Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-09-07T06:49:10.5599062Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-09-07T06:49:10.5599262Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-09-07T06:49:10.5599459Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-09-07T06:49:10.5599736Z * [new branch] gh/laithsakka/249/base -> origin/gh/laithsakka/249/base 2025-09-07T06:49:10.5599934Z * [new branch] gh/laithsakka/249/head -> origin/gh/laithsakka/249/head 2025-09-07T06:49:10.5600136Z * [new branch] gh/laithsakka/249/orig -> origin/gh/laithsakka/249/orig 2025-09-07T06:49:10.5600350Z * [new branch] gh/laithsakka/251/base -> origin/gh/laithsakka/251/base 2025-09-07T06:49:10.5600550Z * [new branch] gh/laithsakka/251/head -> origin/gh/laithsakka/251/head 2025-09-07T06:49:10.5600748Z * [new branch] gh/laithsakka/251/orig -> origin/gh/laithsakka/251/orig 2025-09-07T06:49:10.5600953Z * [new branch] gh/laithsakka/254/base -> origin/gh/laithsakka/254/base 2025-09-07T06:49:10.5601150Z * [new branch] gh/laithsakka/254/head -> origin/gh/laithsakka/254/head 2025-09-07T06:49:10.5601347Z * [new branch] gh/laithsakka/254/orig -> origin/gh/laithsakka/254/orig 2025-09-07T06:49:10.5601556Z * [new branch] gh/laithsakka/255/base -> origin/gh/laithsakka/255/base 2025-09-07T06:49:10.5601756Z * [new branch] gh/laithsakka/255/head -> origin/gh/laithsakka/255/head 2025-09-07T06:49:10.5602022Z * [new branch] gh/laithsakka/255/orig -> origin/gh/laithsakka/255/orig 2025-09-07T06:49:10.5602230Z * [new branch] gh/laithsakka/256/base -> origin/gh/laithsakka/256/base 2025-09-07T06:49:10.5602429Z * [new branch] gh/laithsakka/256/head -> origin/gh/laithsakka/256/head 2025-09-07T06:49:10.5602630Z * [new branch] gh/laithsakka/256/orig -> origin/gh/laithsakka/256/orig 2025-09-07T06:49:10.5602845Z * [new branch] gh/laithsakka/257/base -> origin/gh/laithsakka/257/base 2025-09-07T06:49:10.5603044Z * [new branch] gh/laithsakka/257/head -> origin/gh/laithsakka/257/head 2025-09-07T06:49:10.5603248Z * [new branch] gh/laithsakka/257/orig -> origin/gh/laithsakka/257/orig 2025-09-07T06:49:10.5603461Z * [new branch] gh/laithsakka/258/base -> origin/gh/laithsakka/258/base 2025-09-07T06:49:10.5603659Z * [new branch] gh/laithsakka/258/head -> origin/gh/laithsakka/258/head 2025-09-07T06:49:10.5603869Z * [new branch] gh/laithsakka/258/orig -> origin/gh/laithsakka/258/orig 2025-09-07T06:49:10.5604089Z * [new branch] gh/laithsakka/259/base -> origin/gh/laithsakka/259/base 2025-09-07T06:49:10.5604292Z * [new branch] gh/laithsakka/259/head -> origin/gh/laithsakka/259/head 2025-09-07T06:49:10.5604610Z * [new branch] gh/laithsakka/259/orig -> origin/gh/laithsakka/259/orig 2025-09-07T06:49:10.5604824Z * [new branch] gh/laithsakka/260/base -> origin/gh/laithsakka/260/base 2025-09-07T06:49:10.5605030Z * [new branch] gh/laithsakka/260/head -> origin/gh/laithsakka/260/head 2025-09-07T06:49:10.5605233Z * [new branch] gh/laithsakka/260/orig -> origin/gh/laithsakka/260/orig 2025-09-07T06:49:10.5605436Z * [new branch] gh/laithsakka/261/base -> origin/gh/laithsakka/261/base 2025-09-07T06:49:10.5605646Z * [new branch] gh/laithsakka/261/head -> origin/gh/laithsakka/261/head 2025-09-07T06:49:10.5605852Z * [new branch] gh/laithsakka/261/orig -> origin/gh/laithsakka/261/orig 2025-09-07T06:49:10.5606056Z * [new branch] gh/laithsakka/262/base -> origin/gh/laithsakka/262/base 2025-09-07T06:49:10.5606270Z * [new branch] gh/laithsakka/262/head -> origin/gh/laithsakka/262/head 2025-09-07T06:49:10.5606473Z * [new branch] gh/laithsakka/262/orig -> origin/gh/laithsakka/262/orig 2025-09-07T06:49:10.5606685Z * [new branch] gh/laithsakka/263/base -> origin/gh/laithsakka/263/base 2025-09-07T06:49:10.5607287Z * [new branch] gh/laithsakka/263/head -> origin/gh/laithsakka/263/head 2025-09-07T06:49:10.5607496Z * [new branch] gh/laithsakka/263/orig -> origin/gh/laithsakka/263/orig 2025-09-07T06:49:10.5607701Z * [new branch] gh/laithsakka/264/base -> origin/gh/laithsakka/264/base 2025-09-07T06:49:10.5607918Z * [new branch] gh/laithsakka/264/head -> origin/gh/laithsakka/264/head 2025-09-07T06:49:10.5608117Z * [new branch] gh/laithsakka/264/orig -> origin/gh/laithsakka/264/orig 2025-09-07T06:49:10.5608315Z * [new branch] gh/laithsakka/265/base -> origin/gh/laithsakka/265/base 2025-09-07T06:49:10.5608522Z * [new branch] gh/laithsakka/265/head -> origin/gh/laithsakka/265/head 2025-09-07T06:49:10.5608722Z * [new branch] gh/laithsakka/265/orig -> origin/gh/laithsakka/265/orig 2025-09-07T06:49:10.5608924Z * [new branch] gh/laithsakka/266/base -> origin/gh/laithsakka/266/base 2025-09-07T06:49:10.5609149Z * [new branch] gh/laithsakka/266/head -> origin/gh/laithsakka/266/head 2025-09-07T06:49:10.5609351Z * [new branch] gh/laithsakka/266/orig -> origin/gh/laithsakka/266/orig 2025-09-07T06:49:10.5609622Z * [new branch] gh/laithsakka/267/base -> origin/gh/laithsakka/267/base 2025-09-07T06:49:10.5609832Z * [new branch] gh/laithsakka/267/head -> origin/gh/laithsakka/267/head 2025-09-07T06:49:10.5610034Z * [new branch] gh/laithsakka/267/orig -> origin/gh/laithsakka/267/orig 2025-09-07T06:49:10.5610234Z * [new branch] gh/laithsakka/268/base -> origin/gh/laithsakka/268/base 2025-09-07T06:49:10.5610447Z * [new branch] gh/laithsakka/268/head -> origin/gh/laithsakka/268/head 2025-09-07T06:49:10.5610649Z * [new branch] gh/laithsakka/268/orig -> origin/gh/laithsakka/268/orig 2025-09-07T06:49:10.5610853Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-09-07T06:49:10.5611050Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-09-07T06:49:10.5611260Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-09-07T06:49:10.5611461Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-09-07T06:49:10.5611659Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-09-07T06:49:10.5611865Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-09-07T06:49:10.5612063Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-09-07T06:49:10.5612259Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-09-07T06:49:10.5612470Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-09-07T06:49:10.5612680Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-09-07T06:49:10.5612885Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-09-07T06:49:10.5613105Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-09-07T06:49:10.5613310Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-09-07T06:49:10.5613510Z * [new branch] gh/lucaskabela/11/base -> origin/gh/lucaskabela/11/base 2025-09-07T06:49:10.5613717Z * [new branch] gh/lucaskabela/11/head -> origin/gh/lucaskabela/11/head 2025-09-07T06:49:10.5613919Z * [new branch] gh/lucaskabela/11/orig -> origin/gh/lucaskabela/11/orig 2025-09-07T06:49:10.5614197Z * [new branch] gh/lucaskabela/12/base -> origin/gh/lucaskabela/12/base 2025-09-07T06:49:10.5614412Z * [new branch] gh/lucaskabela/12/head -> origin/gh/lucaskabela/12/head 2025-09-07T06:49:10.5614683Z * [new branch] gh/lucaskabela/12/orig -> origin/gh/lucaskabela/12/orig 2025-09-07T06:49:10.5614885Z * [new branch] gh/lucaskabela/13/base -> origin/gh/lucaskabela/13/base 2025-09-07T06:49:10.5615098Z * [new branch] gh/lucaskabela/13/head -> origin/gh/lucaskabela/13/head 2025-09-07T06:49:10.5615300Z * [new branch] gh/lucaskabela/13/orig -> origin/gh/lucaskabela/13/orig 2025-09-07T06:49:10.5615504Z * [new branch] gh/lucaskabela/14/base -> origin/gh/lucaskabela/14/base 2025-09-07T06:49:10.5615707Z * [new branch] gh/lucaskabela/14/head -> origin/gh/lucaskabela/14/head 2025-09-07T06:49:10.5615914Z * [new branch] gh/lucaskabela/14/orig -> origin/gh/lucaskabela/14/orig 2025-09-07T06:49:10.5616116Z * [new branch] gh/lucaskabela/15/base -> origin/gh/lucaskabela/15/base 2025-09-07T06:49:10.5616320Z * [new branch] gh/lucaskabela/15/head -> origin/gh/lucaskabela/15/head 2025-09-07T06:49:10.5616527Z * [new branch] gh/lucaskabela/15/orig -> origin/gh/lucaskabela/15/orig 2025-09-07T06:49:10.5616794Z * [new branch] gh/lucaskabela/16/base -> origin/gh/lucaskabela/16/base 2025-09-07T06:49:10.5616998Z * [new branch] gh/lucaskabela/16/head -> origin/gh/lucaskabela/16/head 2025-09-07T06:49:10.5617206Z * [new branch] gh/lucaskabela/16/orig -> origin/gh/lucaskabela/16/orig 2025-09-07T06:49:10.5617408Z * [new branch] gh/lucaskabela/17/base -> origin/gh/lucaskabela/17/base 2025-09-07T06:49:10.5617610Z * [new branch] gh/lucaskabela/17/head -> origin/gh/lucaskabela/17/head 2025-09-07T06:49:10.5617822Z * [new branch] gh/lucaskabela/17/orig -> origin/gh/lucaskabela/17/orig 2025-09-07T06:49:10.5618023Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-09-07T06:49:10.5618228Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-09-07T06:49:10.5618432Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-09-07T06:49:10.5618635Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-09-07T06:49:10.5618834Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-09-07T06:49:10.5619045Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-09-07T06:49:10.5619243Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-09-07T06:49:10.5619438Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-09-07T06:49:10.5619644Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-09-07T06:49:10.5619846Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-09-07T06:49:10.5620041Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-09-07T06:49:10.5620237Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-09-07T06:49:10.5620445Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-09-07T06:49:10.5620640Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-09-07T06:49:10.5620835Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-09-07T06:49:10.5621035Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-09-07T06:49:10.5621231Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-09-07T06:49:10.5621432Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-09-07T06:49:10.5621700Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-09-07T06:49:10.5621897Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-09-07T06:49:10.5622101Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-09-07T06:49:10.5622312Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-09-07T06:49:10.5622514Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-09-07T06:49:10.5622717Z * [new branch] gh/lucaskabela/9/orig -> origin/gh/lucaskabela/9/orig 2025-09-07T06:49:10.5622884Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-09-07T06:49:10.5623048Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-09-07T06:49:10.5623201Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-09-07T06:49:10.5623399Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-09-07T06:49:10.5623588Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-09-07T06:49:10.5623844Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-09-07T06:49:10.5624032Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-09-07T06:49:10.5624209Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-09-07T06:49:10.5624387Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-09-07T06:49:10.5624572Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-09-07T06:49:10.5624758Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-09-07T06:49:10.5624935Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-09-07T06:49:10.5625122Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-09-07T06:49:10.5625305Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-09-07T06:49:10.5625487Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-09-07T06:49:10.5625666Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-09-07T06:49:10.5625852Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-09-07T06:49:10.5626038Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-09-07T06:49:10.5626217Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-09-07T06:49:10.5626409Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-09-07T06:49:10.5626592Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-09-07T06:49:10.5626774Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-09-07T06:49:10.5626958Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-09-07T06:49:10.5627143Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-09-07T06:49:10.5627322Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-09-07T06:49:10.5627508Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-09-07T06:49:10.5627687Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-09-07T06:49:10.5627864Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-09-07T06:49:10.5628053Z * [new branch] gh/malfet/475/base -> origin/gh/malfet/475/base 2025-09-07T06:49:10.5628297Z * [new branch] gh/malfet/475/head -> origin/gh/malfet/475/head 2025-09-07T06:49:10.5628477Z * [new branch] gh/malfet/475/orig -> origin/gh/malfet/475/orig 2025-09-07T06:49:10.5628660Z * [new branch] gh/malfet/476/base -> origin/gh/malfet/476/base 2025-09-07T06:49:10.5628853Z * [new branch] gh/malfet/476/head -> origin/gh/malfet/476/head 2025-09-07T06:49:10.5629032Z * [new branch] gh/malfet/476/orig -> origin/gh/malfet/476/orig 2025-09-07T06:49:10.5629213Z * [new branch] gh/malfet/477/base -> origin/gh/malfet/477/base 2025-09-07T06:49:10.5629403Z * [new branch] gh/malfet/477/head -> origin/gh/malfet/477/head 2025-09-07T06:49:10.5629580Z * [new branch] gh/malfet/477/orig -> origin/gh/malfet/477/orig 2025-09-07T06:49:10.5629760Z * [new branch] gh/malfet/478/base -> origin/gh/malfet/478/base 2025-09-07T06:49:10.5629951Z * [new branch] gh/malfet/478/head -> origin/gh/malfet/478/head 2025-09-07T06:49:10.5630135Z * [new branch] gh/malfet/478/orig -> origin/gh/malfet/478/orig 2025-09-07T06:49:10.5630377Z * [new branch] gh/malfet/479/base -> origin/gh/malfet/479/base 2025-09-07T06:49:10.5630563Z * [new branch] gh/malfet/479/head -> origin/gh/malfet/479/head 2025-09-07T06:49:10.5630744Z * [new branch] gh/malfet/479/orig -> origin/gh/malfet/479/orig 2025-09-07T06:49:10.5630924Z * [new branch] gh/malfet/480/base -> origin/gh/malfet/480/base 2025-09-07T06:49:10.5631111Z * [new branch] gh/malfet/480/head -> origin/gh/malfet/480/head 2025-09-07T06:49:10.5631290Z * [new branch] gh/malfet/480/orig -> origin/gh/malfet/480/orig 2025-09-07T06:49:10.5631471Z * [new branch] gh/malfet/481/base -> origin/gh/malfet/481/base 2025-09-07T06:49:10.5631670Z * [new branch] gh/malfet/481/head -> origin/gh/malfet/481/head 2025-09-07T06:49:10.5631852Z * [new branch] gh/malfet/481/orig -> origin/gh/malfet/481/orig 2025-09-07T06:49:10.5632033Z * [new branch] gh/malfet/482/base -> origin/gh/malfet/482/base 2025-09-07T06:49:10.5632226Z * [new branch] gh/malfet/482/head -> origin/gh/malfet/482/head 2025-09-07T06:49:10.5632405Z * [new branch] gh/malfet/482/orig -> origin/gh/malfet/482/orig 2025-09-07T06:49:10.5632594Z * [new branch] gh/malfet/483/base -> origin/gh/malfet/483/base 2025-09-07T06:49:10.5632775Z * [new branch] gh/malfet/483/head -> origin/gh/malfet/483/head 2025-09-07T06:49:10.5632967Z * [new branch] gh/malfet/483/orig -> origin/gh/malfet/483/orig 2025-09-07T06:49:10.5633148Z * [new branch] gh/malfet/484/base -> origin/gh/malfet/484/base 2025-09-07T06:49:10.5633329Z * [new branch] gh/malfet/484/head -> origin/gh/malfet/484/head 2025-09-07T06:49:10.5633515Z * [new branch] gh/malfet/484/orig -> origin/gh/malfet/484/orig 2025-09-07T06:49:10.5633701Z * [new branch] gh/malfet/485/base -> origin/gh/malfet/485/base 2025-09-07T06:49:10.5633884Z * [new branch] gh/malfet/485/head -> origin/gh/malfet/485/head 2025-09-07T06:49:10.5634071Z * [new branch] gh/malfet/485/orig -> origin/gh/malfet/485/orig 2025-09-07T06:49:10.5634248Z * [new branch] gh/malfet/486/base -> origin/gh/malfet/486/base 2025-09-07T06:49:10.5634429Z * [new branch] gh/malfet/486/head -> origin/gh/malfet/486/head 2025-09-07T06:49:10.5634616Z * [new branch] gh/malfet/486/orig -> origin/gh/malfet/486/orig 2025-09-07T06:49:10.5634864Z * [new branch] gh/malfet/487/base -> origin/gh/malfet/487/base 2025-09-07T06:49:10.5635048Z * [new branch] gh/malfet/487/head -> origin/gh/malfet/487/head 2025-09-07T06:49:10.5635239Z * [new branch] gh/malfet/487/orig -> origin/gh/malfet/487/orig 2025-09-07T06:49:10.5635422Z * [new branch] gh/malfet/488/base -> origin/gh/malfet/488/base 2025-09-07T06:49:10.5635606Z * [new branch] gh/malfet/488/head -> origin/gh/malfet/488/head 2025-09-07T06:49:10.5635798Z * [new branch] gh/malfet/488/orig -> origin/gh/malfet/488/orig 2025-09-07T06:49:10.5635980Z * [new branch] gh/malfet/489/base -> origin/gh/malfet/489/base 2025-09-07T06:49:10.5636159Z * [new branch] gh/malfet/489/head -> origin/gh/malfet/489/head 2025-09-07T06:49:10.5636345Z * [new branch] gh/malfet/489/orig -> origin/gh/malfet/489/orig 2025-09-07T06:49:10.5636528Z * [new branch] gh/malfet/490/base -> origin/gh/malfet/490/base 2025-09-07T06:49:10.5636711Z * [new branch] gh/malfet/490/head -> origin/gh/malfet/490/head 2025-09-07T06:49:10.5636891Z * [new branch] gh/malfet/490/orig -> origin/gh/malfet/490/orig 2025-09-07T06:49:10.5637150Z * [new branch] gh/malfet/491/base -> origin/gh/malfet/491/base 2025-09-07T06:49:10.5637333Z * [new branch] gh/malfet/491/head -> origin/gh/malfet/491/head 2025-09-07T06:49:10.5637514Z * [new branch] gh/malfet/491/orig -> origin/gh/malfet/491/orig 2025-09-07T06:49:10.5637698Z * [new branch] gh/malfet/492/base -> origin/gh/malfet/492/base 2025-09-07T06:49:10.5637876Z * [new branch] gh/malfet/492/head -> origin/gh/malfet/492/head 2025-09-07T06:49:10.5638053Z * [new branch] gh/malfet/492/orig -> origin/gh/malfet/492/orig 2025-09-07T06:49:10.5638244Z * [new branch] gh/malfet/493/base -> origin/gh/malfet/493/base 2025-09-07T06:49:10.5638424Z * [new branch] gh/malfet/493/head -> origin/gh/malfet/493/head 2025-09-07T06:49:10.5638604Z * [new branch] gh/malfet/493/orig -> origin/gh/malfet/493/orig 2025-09-07T06:49:10.5638803Z * [new branch] gh/malfet/494/base -> origin/gh/malfet/494/base 2025-09-07T06:49:10.5638985Z * [new branch] gh/malfet/494/head -> origin/gh/malfet/494/head 2025-09-07T06:49:10.5639163Z * [new branch] gh/malfet/494/orig -> origin/gh/malfet/494/orig 2025-09-07T06:49:10.5639351Z * [new branch] gh/malfet/495/base -> origin/gh/malfet/495/base 2025-09-07T06:49:10.5639531Z * [new branch] gh/malfet/495/head -> origin/gh/malfet/495/head 2025-09-07T06:49:10.5639710Z * [new branch] gh/malfet/495/orig -> origin/gh/malfet/495/orig 2025-09-07T06:49:10.5639906Z * [new branch] gh/malfet/496/base -> origin/gh/malfet/496/base 2025-09-07T06:49:10.5640086Z * [new branch] gh/malfet/496/head -> origin/gh/malfet/496/head 2025-09-07T06:49:10.5640272Z * [new branch] gh/malfet/496/orig -> origin/gh/malfet/496/orig 2025-09-07T06:49:10.5640461Z * [new branch] gh/malfet/497/base -> origin/gh/malfet/497/base 2025-09-07T06:49:10.5640642Z * [new branch] gh/malfet/497/head -> origin/gh/malfet/497/head 2025-09-07T06:49:10.5640821Z * [new branch] gh/malfet/497/orig -> origin/gh/malfet/497/orig 2025-09-07T06:49:10.5641006Z * [new branch] gh/malfet/498/base -> origin/gh/malfet/498/base 2025-09-07T06:49:10.5641198Z * [new branch] gh/malfet/498/head -> origin/gh/malfet/498/head 2025-09-07T06:49:10.5641380Z * [new branch] gh/malfet/498/orig -> origin/gh/malfet/498/orig 2025-09-07T06:49:10.5641624Z * [new branch] gh/malfet/499/base -> origin/gh/malfet/499/base 2025-09-07T06:49:10.5641813Z * [new branch] gh/malfet/499/head -> origin/gh/malfet/499/head 2025-09-07T06:49:10.5641997Z * [new branch] gh/malfet/499/orig -> origin/gh/malfet/499/orig 2025-09-07T06:49:10.5642177Z * [new branch] gh/malfet/500/base -> origin/gh/malfet/500/base 2025-09-07T06:49:10.5642373Z * [new branch] gh/malfet/500/head -> origin/gh/malfet/500/head 2025-09-07T06:49:10.5642551Z * [new branch] gh/malfet/500/orig -> origin/gh/malfet/500/orig 2025-09-07T06:49:10.5642731Z * [new branch] gh/malfet/501/base -> origin/gh/malfet/501/base 2025-09-07T06:49:10.5642920Z * [new branch] gh/malfet/501/head -> origin/gh/malfet/501/head 2025-09-07T06:49:10.5643101Z * [new branch] gh/malfet/501/orig -> origin/gh/malfet/501/orig 2025-09-07T06:49:10.5643289Z * [new branch] gh/malfet/502/base -> origin/gh/malfet/502/base 2025-09-07T06:49:10.5643477Z * [new branch] gh/malfet/502/head -> origin/gh/malfet/502/head 2025-09-07T06:49:10.5643723Z * [new branch] gh/malfet/502/orig -> origin/gh/malfet/502/orig 2025-09-07T06:49:10.5643904Z * [new branch] gh/malfet/503/base -> origin/gh/malfet/503/base 2025-09-07T06:49:10.5644091Z * [new branch] gh/malfet/503/head -> origin/gh/malfet/503/head 2025-09-07T06:49:10.5644270Z * [new branch] gh/malfet/503/orig -> origin/gh/malfet/503/orig 2025-09-07T06:49:10.5644540Z * [new branch] gh/malfet/504/base -> origin/gh/malfet/504/base 2025-09-07T06:49:10.5644734Z * [new branch] gh/malfet/504/head -> origin/gh/malfet/504/head 2025-09-07T06:49:10.5644918Z * [new branch] gh/malfet/504/orig -> origin/gh/malfet/504/orig 2025-09-07T06:49:10.5645100Z * [new branch] gh/malfet/505/base -> origin/gh/malfet/505/base 2025-09-07T06:49:10.5645282Z * [new branch] gh/malfet/505/head -> origin/gh/malfet/505/head 2025-09-07T06:49:10.5645478Z * [new branch] gh/malfet/505/orig -> origin/gh/malfet/505/orig 2025-09-07T06:49:10.5645662Z * [new branch] gh/malfet/506/base -> origin/gh/malfet/506/base 2025-09-07T06:49:10.5645844Z * [new branch] gh/malfet/506/head -> origin/gh/malfet/506/head 2025-09-07T06:49:10.5646039Z * [new branch] gh/malfet/506/orig -> origin/gh/malfet/506/orig 2025-09-07T06:49:10.5646221Z * [new branch] gh/malfet/507/base -> origin/gh/malfet/507/base 2025-09-07T06:49:10.5646402Z * [new branch] gh/malfet/507/head -> origin/gh/malfet/507/head 2025-09-07T06:49:10.5646594Z * [new branch] gh/malfet/507/orig -> origin/gh/malfet/507/orig 2025-09-07T06:49:10.5646774Z * [new branch] gh/malfet/508/base -> origin/gh/malfet/508/base 2025-09-07T06:49:10.5646953Z * [new branch] gh/malfet/508/head -> origin/gh/malfet/508/head 2025-09-07T06:49:10.5647145Z * [new branch] gh/malfet/508/orig -> origin/gh/malfet/508/orig 2025-09-07T06:49:10.5647328Z * [new branch] gh/malfet/509/base -> origin/gh/malfet/509/base 2025-09-07T06:49:10.5647507Z * [new branch] gh/malfet/509/head -> origin/gh/malfet/509/head 2025-09-07T06:49:10.5647697Z * [new branch] gh/malfet/509/orig -> origin/gh/malfet/509/orig 2025-09-07T06:49:10.5647879Z * [new branch] gh/malfet/510/base -> origin/gh/malfet/510/base 2025-09-07T06:49:10.5648058Z * [new branch] gh/malfet/510/head -> origin/gh/malfet/510/head 2025-09-07T06:49:10.5648324Z * [new branch] gh/malfet/510/orig -> origin/gh/malfet/510/orig 2025-09-07T06:49:10.5648507Z * [new branch] gh/malfet/511/base -> origin/gh/malfet/511/base 2025-09-07T06:49:10.5648687Z * [new branch] gh/malfet/511/head -> origin/gh/malfet/511/head 2025-09-07T06:49:10.5648880Z * [new branch] gh/malfet/511/orig -> origin/gh/malfet/511/orig 2025-09-07T06:49:10.5649060Z * [new branch] gh/malfet/512/base -> origin/gh/malfet/512/base 2025-09-07T06:49:10.5649240Z * [new branch] gh/malfet/512/head -> origin/gh/malfet/512/head 2025-09-07T06:49:10.5649422Z * [new branch] gh/malfet/512/orig -> origin/gh/malfet/512/orig 2025-09-07T06:49:10.5649617Z * [new branch] gh/malfet/513/base -> origin/gh/malfet/513/base 2025-09-07T06:49:10.5649801Z * [new branch] gh/malfet/513/head -> origin/gh/malfet/513/head 2025-09-07T06:49:10.5649988Z * [new branch] gh/malfet/513/orig -> origin/gh/malfet/513/orig 2025-09-07T06:49:10.5650188Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-09-07T06:49:10.5650437Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-09-07T06:49:10.5650672Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-09-07T06:49:10.5650908Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-09-07T06:49:10.5651131Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-09-07T06:49:10.5651353Z * [new branch] gh/manuelcandales/11/base -> origin/gh/manuelcandales/11/base 2025-09-07T06:49:10.5651584Z * [new branch] gh/manuelcandales/11/head -> origin/gh/manuelcandales/11/head 2025-09-07T06:49:10.5651812Z * [new branch] gh/manuelcandales/11/orig -> origin/gh/manuelcandales/11/orig 2025-09-07T06:49:10.5652038Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-09-07T06:49:10.5652270Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-09-07T06:49:10.5652491Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-09-07T06:49:10.5652674Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-09-07T06:49:10.5652881Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-09-07T06:49:10.5653077Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-09-07T06:49:10.5653282Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-09-07T06:49:10.5653484Z * [new branch] gh/masnesral/235/base -> origin/gh/masnesral/235/base 2025-09-07T06:49:10.5653681Z * [new branch] gh/masnesral/235/head -> origin/gh/masnesral/235/head 2025-09-07T06:49:10.5653879Z * [new branch] gh/masnesral/235/orig -> origin/gh/masnesral/235/orig 2025-09-07T06:49:10.5654077Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-09-07T06:49:10.5654289Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-09-07T06:49:10.5654481Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-09-07T06:49:10.5654670Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-09-07T06:49:10.5654872Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-09-07T06:49:10.5655062Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-09-07T06:49:10.5655249Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-09-07T06:49:10.5655508Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-09-07T06:49:10.5655702Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-09-07T06:49:10.5655897Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-09-07T06:49:10.5656093Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-09-07T06:49:10.5656280Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-09-07T06:49:10.5656471Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-09-07T06:49:10.5656664Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-09-07T06:49:10.5656851Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-09-07T06:49:10.5657108Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-09-07T06:49:10.5657365Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-09-07T06:49:10.5657609Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-09-07T06:49:10.5657915Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-09-07T06:49:10.5658164Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-09-07T06:49:10.5658406Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-09-07T06:49:10.5658649Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-09-07T06:49:10.5658889Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-09-07T06:49:10.5659138Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-09-07T06:49:10.5659376Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-09-07T06:49:10.5659617Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-09-07T06:49:10.5659867Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-09-07T06:49:10.5660105Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-09-07T06:49:10.5660348Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-09-07T06:49:10.5660593Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-09-07T06:49:10.5660831Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-09-07T06:49:10.5661070Z * [new branch] gh/mikaylagawarecki/329/base -> origin/gh/mikaylagawarecki/329/base 2025-09-07T06:49:10.5661324Z * [new branch] gh/mikaylagawarecki/329/head -> origin/gh/mikaylagawarecki/329/head 2025-09-07T06:49:10.5661562Z * [new branch] gh/mikaylagawarecki/329/orig -> origin/gh/mikaylagawarecki/329/orig 2025-09-07T06:49:10.5661802Z * [new branch] gh/mikaylagawarecki/330/base -> origin/gh/mikaylagawarecki/330/base 2025-09-07T06:49:10.5662055Z * [new branch] gh/mikaylagawarecki/330/head -> origin/gh/mikaylagawarecki/330/head 2025-09-07T06:49:10.5662291Z * [new branch] gh/mikaylagawarecki/330/orig -> origin/gh/mikaylagawarecki/330/orig 2025-09-07T06:49:10.5662533Z * [new branch] gh/mikaylagawarecki/331/base -> origin/gh/mikaylagawarecki/331/base 2025-09-07T06:49:10.5662778Z * [new branch] gh/mikaylagawarecki/331/head -> origin/gh/mikaylagawarecki/331/head 2025-09-07T06:49:10.5663018Z * [new branch] gh/mikaylagawarecki/331/orig -> origin/gh/mikaylagawarecki/331/orig 2025-09-07T06:49:10.5663322Z * [new branch] gh/mikaylagawarecki/332/base -> origin/gh/mikaylagawarecki/332/base 2025-09-07T06:49:10.5663575Z * [new branch] gh/mikaylagawarecki/332/head -> origin/gh/mikaylagawarecki/332/head 2025-09-07T06:49:10.5663819Z * [new branch] gh/mikaylagawarecki/332/orig -> origin/gh/mikaylagawarecki/332/orig 2025-09-07T06:49:10.5664063Z * [new branch] gh/mikaylagawarecki/334/base -> origin/gh/mikaylagawarecki/334/base 2025-09-07T06:49:10.5664311Z * [new branch] gh/mikaylagawarecki/334/head -> origin/gh/mikaylagawarecki/334/head 2025-09-07T06:49:10.5664550Z * [new branch] gh/mikaylagawarecki/334/orig -> origin/gh/mikaylagawarecki/334/orig 2025-09-07T06:49:10.5664788Z * [new branch] gh/mikaylagawarecki/335/base -> origin/gh/mikaylagawarecki/335/base 2025-09-07T06:49:10.5665043Z * [new branch] gh/mikaylagawarecki/335/head -> origin/gh/mikaylagawarecki/335/head 2025-09-07T06:49:10.5665286Z * [new branch] gh/mikaylagawarecki/335/orig -> origin/gh/mikaylagawarecki/335/orig 2025-09-07T06:49:10.5665526Z * [new branch] gh/mikaylagawarecki/336/base -> origin/gh/mikaylagawarecki/336/base 2025-09-07T06:49:10.5665843Z * [new branch] gh/mikaylagawarecki/336/head -> origin/gh/mikaylagawarecki/336/head 2025-09-07T06:49:10.5666082Z * [new branch] gh/mikaylagawarecki/336/orig -> origin/gh/mikaylagawarecki/336/orig 2025-09-07T06:49:10.5666321Z * [new branch] gh/mikaylagawarecki/337/base -> origin/gh/mikaylagawarecki/337/base 2025-09-07T06:49:10.5666560Z * [new branch] gh/mikaylagawarecki/337/head -> origin/gh/mikaylagawarecki/337/head 2025-09-07T06:49:10.5666812Z * [new branch] gh/mikaylagawarecki/337/orig -> origin/gh/mikaylagawarecki/337/orig 2025-09-07T06:49:10.5667053Z * [new branch] gh/mikaylagawarecki/338/base -> origin/gh/mikaylagawarecki/338/base 2025-09-07T06:49:10.5667298Z * [new branch] gh/mikaylagawarecki/338/head -> origin/gh/mikaylagawarecki/338/head 2025-09-07T06:49:10.5667547Z * [new branch] gh/mikaylagawarecki/338/orig -> origin/gh/mikaylagawarecki/338/orig 2025-09-07T06:49:10.5667792Z * [new branch] gh/mikaylagawarecki/339/base -> origin/gh/mikaylagawarecki/339/base 2025-09-07T06:49:10.5668030Z * [new branch] gh/mikaylagawarecki/339/head -> origin/gh/mikaylagawarecki/339/head 2025-09-07T06:49:10.5668278Z * [new branch] gh/mikaylagawarecki/339/orig -> origin/gh/mikaylagawarecki/339/orig 2025-09-07T06:49:10.5668461Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-09-07T06:49:10.5668638Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-09-07T06:49:10.5668822Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-09-07T06:49:10.5669011Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-09-07T06:49:10.5669195Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-09-07T06:49:10.5669379Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-09-07T06:49:10.5669559Z * [new branch] gh/mlazos/13/base -> origin/gh/mlazos/13/base 2025-09-07T06:49:10.5669734Z * [new branch] gh/mlazos/13/head -> origin/gh/mlazos/13/head 2025-09-07T06:49:10.5669919Z * [new branch] gh/mlazos/13/orig -> origin/gh/mlazos/13/orig 2025-09-07T06:49:10.5670096Z * [new branch] gh/mlazos/14/base -> origin/gh/mlazos/14/base 2025-09-07T06:49:10.5670273Z * [new branch] gh/mlazos/14/head -> origin/gh/mlazos/14/head 2025-09-07T06:49:10.5670452Z * [new branch] gh/mlazos/14/orig -> origin/gh/mlazos/14/orig 2025-09-07T06:49:10.5670688Z * [new branch] gh/mlazos/15/base -> origin/gh/mlazos/15/base 2025-09-07T06:49:10.5670866Z * [new branch] gh/mlazos/15/head -> origin/gh/mlazos/15/head 2025-09-07T06:49:10.5671048Z * [new branch] gh/mlazos/15/orig -> origin/gh/mlazos/15/orig 2025-09-07T06:49:10.5671234Z * [new branch] gh/mlazos/16/base -> origin/gh/mlazos/16/base 2025-09-07T06:49:10.5671409Z * [new branch] gh/mlazos/16/head -> origin/gh/mlazos/16/head 2025-09-07T06:49:10.5671586Z * [new branch] gh/mlazos/16/orig -> origin/gh/mlazos/16/orig 2025-09-07T06:49:10.5671772Z * [new branch] gh/mlazos/17/base -> origin/gh/mlazos/17/base 2025-09-07T06:49:10.5671947Z * [new branch] gh/mlazos/17/head -> origin/gh/mlazos/17/head 2025-09-07T06:49:10.5672126Z * [new branch] gh/mlazos/17/orig -> origin/gh/mlazos/17/orig 2025-09-07T06:49:10.5672316Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-09-07T06:49:10.5672489Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-09-07T06:49:10.5672721Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-09-07T06:49:10.5672904Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-09-07T06:49:10.5673075Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-09-07T06:49:10.5673251Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-09-07T06:49:10.5673443Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-09-07T06:49:10.5673625Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-09-07T06:49:10.5673824Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-09-07T06:49:10.5674027Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-09-07T06:49:10.5674223Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-09-07T06:49:10.5674417Z * [new branch] gh/muchulee8/63/base -> origin/gh/muchulee8/63/base 2025-09-07T06:49:10.5674608Z * [new branch] gh/muchulee8/63/head -> origin/gh/muchulee8/63/head 2025-09-07T06:49:10.5674808Z * [new branch] gh/muchulee8/63/orig -> origin/gh/muchulee8/63/orig 2025-09-07T06:49:10.5675000Z * [new branch] gh/muchulee8/64/base -> origin/gh/muchulee8/64/base 2025-09-07T06:49:10.5675192Z * [new branch] gh/muchulee8/64/head -> origin/gh/muchulee8/64/head 2025-09-07T06:49:10.5675388Z * [new branch] gh/muchulee8/64/orig -> origin/gh/muchulee8/64/orig 2025-09-07T06:49:10.5675576Z * [new branch] gh/muchulee8/65/base -> origin/gh/muchulee8/65/base 2025-09-07T06:49:10.5675768Z * [new branch] gh/muchulee8/65/head -> origin/gh/muchulee8/65/head 2025-09-07T06:49:10.5675962Z * [new branch] gh/muchulee8/65/orig -> origin/gh/muchulee8/65/orig 2025-09-07T06:49:10.5676193Z * [new branch] gh/naveenthangudu/1/base -> origin/gh/naveenthangudu/1/base 2025-09-07T06:49:10.5676414Z * [new branch] gh/naveenthangudu/1/head -> origin/gh/naveenthangudu/1/head 2025-09-07T06:49:10.5676637Z * [new branch] gh/naveenthangudu/1/orig -> origin/gh/naveenthangudu/1/orig 2025-09-07T06:49:10.5676854Z * [new branch] gh/naveenthangudu/2/base -> origin/gh/naveenthangudu/2/base 2025-09-07T06:49:10.5677073Z * [new branch] gh/naveenthangudu/2/head -> origin/gh/naveenthangudu/2/head 2025-09-07T06:49:10.5677303Z * [new branch] gh/naveenthangudu/2/orig -> origin/gh/naveenthangudu/2/orig 2025-09-07T06:49:10.5677585Z * [new branch] gh/naveenthangudu/3/base -> origin/gh/naveenthangudu/3/base 2025-09-07T06:49:10.5677800Z * [new branch] gh/naveenthangudu/3/head -> origin/gh/naveenthangudu/3/head 2025-09-07T06:49:10.5678030Z * [new branch] gh/naveenthangudu/3/orig -> origin/gh/naveenthangudu/3/orig 2025-09-07T06:49:10.5678246Z * [new branch] gh/naveenthangudu/4/base -> origin/gh/naveenthangudu/4/base 2025-09-07T06:49:10.5678463Z * [new branch] gh/naveenthangudu/4/head -> origin/gh/naveenthangudu/4/head 2025-09-07T06:49:10.5678686Z * [new branch] gh/naveenthangudu/4/orig -> origin/gh/naveenthangudu/4/orig 2025-09-07T06:49:10.5678898Z * [new branch] gh/naveenthangudu/5/base -> origin/gh/naveenthangudu/5/base 2025-09-07T06:49:10.5679115Z * [new branch] gh/naveenthangudu/5/head -> origin/gh/naveenthangudu/5/head 2025-09-07T06:49:10.5679345Z * [new branch] gh/naveenthangudu/5/orig -> origin/gh/naveenthangudu/5/orig 2025-09-07T06:49:10.5679561Z * [new branch] gh/naveenthangudu/6/base -> origin/gh/naveenthangudu/6/base 2025-09-07T06:49:10.5679778Z * [new branch] gh/naveenthangudu/6/head -> origin/gh/naveenthangudu/6/head 2025-09-07T06:49:10.5680064Z * [new branch] gh/naveenthangudu/6/orig -> origin/gh/naveenthangudu/6/orig 2025-09-07T06:49:10.5680257Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-09-07T06:49:10.5680436Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-09-07T06:49:10.5680612Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-09-07T06:49:10.5680795Z * [new branch] gh/oulgen/48/base -> origin/gh/oulgen/48/base 2025-09-07T06:49:10.5680970Z * [new branch] gh/oulgen/48/head -> origin/gh/oulgen/48/head 2025-09-07T06:49:10.5681148Z * [new branch] gh/oulgen/48/orig -> origin/gh/oulgen/48/orig 2025-09-07T06:49:10.5681336Z * [new branch] gh/oulgen/49/base -> origin/gh/oulgen/49/base 2025-09-07T06:49:10.5681510Z * [new branch] gh/oulgen/49/head -> origin/gh/oulgen/49/head 2025-09-07T06:49:10.5681691Z * [new branch] gh/oulgen/49/orig -> origin/gh/oulgen/49/orig 2025-09-07T06:49:10.5681883Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-09-07T06:49:10.5682067Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-09-07T06:49:10.5682244Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-09-07T06:49:10.5682428Z * [new branch] gh/pearu/109/base -> origin/gh/pearu/109/base 2025-09-07T06:49:10.5682606Z * [new branch] gh/pearu/109/head -> origin/gh/pearu/109/head 2025-09-07T06:49:10.5682792Z * [new branch] gh/pearu/109/orig -> origin/gh/pearu/109/orig 2025-09-07T06:49:10.5682976Z * [new branch] gh/pearu/110/base -> origin/gh/pearu/110/base 2025-09-07T06:49:10.5683155Z * [new branch] gh/pearu/110/head -> origin/gh/pearu/110/head 2025-09-07T06:49:10.5683332Z * [new branch] gh/pearu/110/orig -> origin/gh/pearu/110/orig 2025-09-07T06:49:10.5683509Z * [new branch] gh/pearu/111/base -> origin/gh/pearu/111/base 2025-09-07T06:49:10.5683693Z * [new branch] gh/pearu/111/head -> origin/gh/pearu/111/head 2025-09-07T06:49:10.5683874Z * [new branch] gh/pearu/111/orig -> origin/gh/pearu/111/orig 2025-09-07T06:49:10.5684048Z * [new branch] gh/pearu/112/base -> origin/gh/pearu/112/base 2025-09-07T06:49:10.5684232Z * [new branch] gh/pearu/112/head -> origin/gh/pearu/112/head 2025-09-07T06:49:10.5684571Z * [new branch] gh/pearu/112/orig -> origin/gh/pearu/112/orig 2025-09-07T06:49:10.5684764Z * [new branch] gh/pearu/113/base -> origin/gh/pearu/113/base 2025-09-07T06:49:10.5684958Z * [new branch] gh/pearu/113/head -> origin/gh/pearu/113/head 2025-09-07T06:49:10.5685135Z * [new branch] gh/pearu/113/orig -> origin/gh/pearu/113/orig 2025-09-07T06:49:10.5685316Z * [new branch] gh/pearu/114/base -> origin/gh/pearu/114/base 2025-09-07T06:49:10.5685509Z * [new branch] gh/pearu/114/head -> origin/gh/pearu/114/head 2025-09-07T06:49:10.5685693Z * [new branch] gh/pearu/114/orig -> origin/gh/pearu/114/orig 2025-09-07T06:49:10.5685871Z * [new branch] gh/pearu/115/base -> origin/gh/pearu/115/base 2025-09-07T06:49:10.5686064Z * [new branch] gh/pearu/115/head -> origin/gh/pearu/115/head 2025-09-07T06:49:10.5686250Z * [new branch] gh/pearu/115/orig -> origin/gh/pearu/115/orig 2025-09-07T06:49:10.5686431Z * [new branch] gh/pearu/116/base -> origin/gh/pearu/116/base 2025-09-07T06:49:10.5686680Z * [new branch] gh/pearu/116/head -> origin/gh/pearu/116/head 2025-09-07T06:49:10.5686863Z * [new branch] gh/pearu/116/orig -> origin/gh/pearu/116/orig 2025-09-07T06:49:10.5687040Z * [new branch] gh/pearu/117/base -> origin/gh/pearu/117/base 2025-09-07T06:49:10.5687217Z * [new branch] gh/pearu/117/head -> origin/gh/pearu/117/head 2025-09-07T06:49:10.5687401Z * [new branch] gh/pearu/117/orig -> origin/gh/pearu/117/orig 2025-09-07T06:49:10.5687577Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-09-07T06:49:10.5687752Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-09-07T06:49:10.5687948Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-09-07T06:49:10.5688121Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-09-07T06:49:10.5688304Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-09-07T06:49:10.5688485Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-09-07T06:49:10.5688672Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-09-07T06:49:10.5688851Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-09-07T06:49:10.5689036Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-09-07T06:49:10.5689261Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-09-07T06:49:10.5689432Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-09-07T06:49:10.5689619Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-09-07T06:49:10.5689787Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-09-07T06:49:10.5689958Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-09-07T06:49:10.5690130Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-09-07T06:49:10.5690296Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-09-07T06:49:10.5690465Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-09-07T06:49:10.5690628Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-09-07T06:49:10.5690805Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-09-07T06:49:10.5690970Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-09-07T06:49:10.5691198Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-09-07T06:49:10.5691378Z * [new branch] gh/rec/160/base -> origin/gh/rec/160/base 2025-09-07T06:49:10.5691545Z * [new branch] gh/rec/160/head -> origin/gh/rec/160/head 2025-09-07T06:49:10.5691714Z * [new branch] gh/rec/160/orig -> origin/gh/rec/160/orig 2025-09-07T06:49:10.5691891Z * [new branch] gh/rec/162/base -> origin/gh/rec/162/base 2025-09-07T06:49:10.5692059Z * [new branch] gh/rec/162/head -> origin/gh/rec/162/head 2025-09-07T06:49:10.5692230Z * [new branch] gh/rec/162/orig -> origin/gh/rec/162/orig 2025-09-07T06:49:10.5692406Z * [new branch] gh/rec/163/base -> origin/gh/rec/163/base 2025-09-07T06:49:10.5692573Z * [new branch] gh/rec/163/head -> origin/gh/rec/163/head 2025-09-07T06:49:10.5692743Z * [new branch] gh/rec/163/orig -> origin/gh/rec/163/orig 2025-09-07T06:49:10.5692921Z * [new branch] gh/rec/164/base -> origin/gh/rec/164/base 2025-09-07T06:49:10.5693148Z * [new branch] gh/rec/164/head -> origin/gh/rec/164/head 2025-09-07T06:49:10.5693314Z * [new branch] gh/rec/164/orig -> origin/gh/rec/164/orig 2025-09-07T06:49:10.5693488Z * [new branch] gh/rec/165/base -> origin/gh/rec/165/base 2025-09-07T06:49:10.5693653Z * [new branch] gh/rec/165/head -> origin/gh/rec/165/head 2025-09-07T06:49:10.5693817Z * [new branch] gh/rec/165/orig -> origin/gh/rec/165/orig 2025-09-07T06:49:10.5693983Z * [new branch] gh/rec/166/base -> origin/gh/rec/166/base 2025-09-07T06:49:10.5694154Z * [new branch] gh/rec/166/head -> origin/gh/rec/166/head 2025-09-07T06:49:10.5694330Z * [new branch] gh/rec/166/orig -> origin/gh/rec/166/orig 2025-09-07T06:49:10.5694561Z * [new branch] gh/robert-hardwick/1/base -> origin/gh/robert-hardwick/1/base 2025-09-07T06:49:10.5694794Z * [new branch] gh/robert-hardwick/1/head -> origin/gh/robert-hardwick/1/head 2025-09-07T06:49:10.5695012Z * [new branch] gh/robert-hardwick/1/orig -> origin/gh/robert-hardwick/1/orig 2025-09-07T06:49:10.5695233Z * [new branch] gh/robert-hardwick/2/base -> origin/gh/robert-hardwick/2/base 2025-09-07T06:49:10.5695455Z * [new branch] gh/robert-hardwick/2/head -> origin/gh/robert-hardwick/2/head 2025-09-07T06:49:10.5695670Z * [new branch] gh/robert-hardwick/2/orig -> origin/gh/robert-hardwick/2/orig 2025-09-07T06:49:10.5695884Z * [new branch] gh/robert-hardwick/3/base -> origin/gh/robert-hardwick/3/base 2025-09-07T06:49:10.5696105Z * [new branch] gh/robert-hardwick/3/head -> origin/gh/robert-hardwick/3/head 2025-09-07T06:49:10.5696320Z * [new branch] gh/robert-hardwick/3/orig -> origin/gh/robert-hardwick/3/orig 2025-09-07T06:49:10.5696534Z * [new branch] gh/robert-hardwick/4/base -> origin/gh/robert-hardwick/4/base 2025-09-07T06:49:10.5696758Z * [new branch] gh/robert-hardwick/4/head -> origin/gh/robert-hardwick/4/head 2025-09-07T06:49:10.5696973Z * [new branch] gh/robert-hardwick/4/orig -> origin/gh/robert-hardwick/4/orig 2025-09-07T06:49:10.5697153Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-09-07T06:49:10.5697343Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-09-07T06:49:10.5697527Z * [new branch] gh/rtimpe/10/base -> origin/gh/rtimpe/10/base 2025-09-07T06:49:10.5697707Z * [new branch] gh/rtimpe/10/head -> origin/gh/rtimpe/10/head 2025-09-07T06:49:10.5697963Z * [new branch] gh/rtimpe/10/orig -> origin/gh/rtimpe/10/orig 2025-09-07T06:49:10.5698141Z * [new branch] gh/rtimpe/11/base -> origin/gh/rtimpe/11/base 2025-09-07T06:49:10.5698323Z * [new branch] gh/rtimpe/11/head -> origin/gh/rtimpe/11/head 2025-09-07T06:49:10.5698500Z * [new branch] gh/rtimpe/11/orig -> origin/gh/rtimpe/11/orig 2025-09-07T06:49:10.5698684Z * [new branch] gh/rtimpe/12/base -> origin/gh/rtimpe/12/base 2025-09-07T06:49:10.5698861Z * [new branch] gh/rtimpe/12/head -> origin/gh/rtimpe/12/head 2025-09-07T06:49:10.5699040Z * [new branch] gh/rtimpe/12/orig -> origin/gh/rtimpe/12/orig 2025-09-07T06:49:10.5699223Z * [new branch] gh/rtimpe/13/base -> origin/gh/rtimpe/13/base 2025-09-07T06:49:10.5699400Z * [new branch] gh/rtimpe/13/head -> origin/gh/rtimpe/13/head 2025-09-07T06:49:10.5699580Z * [new branch] gh/rtimpe/13/orig -> origin/gh/rtimpe/13/orig 2025-09-07T06:49:10.5699764Z * [new branch] gh/rtimpe/14/base -> origin/gh/rtimpe/14/base 2025-09-07T06:49:10.5700007Z * [new branch] gh/rtimpe/14/head -> origin/gh/rtimpe/14/head 2025-09-07T06:49:10.5700182Z * [new branch] gh/rtimpe/14/orig -> origin/gh/rtimpe/14/orig 2025-09-07T06:49:10.5700369Z * [new branch] gh/rtimpe/15/base -> origin/gh/rtimpe/15/base 2025-09-07T06:49:10.5700546Z * [new branch] gh/rtimpe/15/head -> origin/gh/rtimpe/15/head 2025-09-07T06:49:10.5700722Z * [new branch] gh/rtimpe/15/orig -> origin/gh/rtimpe/15/orig 2025-09-07T06:49:10.5700907Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-09-07T06:49:10.5701084Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-09-07T06:49:10.5701262Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-09-07T06:49:10.5701446Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-09-07T06:49:10.5701623Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-09-07T06:49:10.5701796Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-09-07T06:49:10.5701982Z * [new branch] gh/rtimpe/9/base -> origin/gh/rtimpe/9/base 2025-09-07T06:49:10.5702156Z * [new branch] gh/rtimpe/9/head -> origin/gh/rtimpe/9/head 2025-09-07T06:49:10.5702330Z * [new branch] gh/rtimpe/9/orig -> origin/gh/rtimpe/9/orig 2025-09-07T06:49:10.5702548Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-09-07T06:49:10.5702775Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-09-07T06:49:10.5702988Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-09-07T06:49:10.5703198Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-09-07T06:49:10.5703413Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-09-07T06:49:10.5703619Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-09-07T06:49:10.5703824Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-09-07T06:49:10.5704040Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-09-07T06:49:10.5704247Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-09-07T06:49:10.5704454Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-09-07T06:49:10.5704736Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-09-07T06:49:10.5704943Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-09-07T06:49:10.5705154Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-09-07T06:49:10.5705366Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-09-07T06:49:10.5705576Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-09-07T06:49:10.5705783Z * [new branch] gh/ruisizhang123/8/base -> origin/gh/ruisizhang123/8/base 2025-09-07T06:49:10.5705999Z * [new branch] gh/ruisizhang123/8/head -> origin/gh/ruisizhang123/8/head 2025-09-07T06:49:10.5706208Z * [new branch] gh/ruisizhang123/8/orig -> origin/gh/ruisizhang123/8/orig 2025-09-07T06:49:10.5706421Z * [new branch] gh/ruisizhang123/9/base -> origin/gh/ruisizhang123/9/base 2025-09-07T06:49:10.5706641Z * [new branch] gh/ruisizhang123/9/head -> origin/gh/ruisizhang123/9/head 2025-09-07T06:49:10.5706846Z * [new branch] gh/ruisizhang123/9/orig -> origin/gh/ruisizhang123/9/orig 2025-09-07T06:49:10.5707844Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-09-07T06:49:10.5708026Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-09-07T06:49:10.5708208Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-09-07T06:49:10.5708412Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-09-07T06:49:10.5708616Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-09-07T06:49:10.5708823Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-09-07T06:49:10.5709027Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-09-07T06:49:10.5709225Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-09-07T06:49:10.5709432Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-09-07T06:49:10.5709632Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-09-07T06:49:10.5709826Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-09-07T06:49:10.5710026Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-09-07T06:49:10.5710221Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-09-07T06:49:10.5710416Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-09-07T06:49:10.5710623Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-09-07T06:49:10.5710820Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-09-07T06:49:10.5711012Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-09-07T06:49:10.5711214Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-09-07T06:49:10.5711409Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-09-07T06:49:10.5711610Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-09-07T06:49:10.5711810Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-09-07T06:49:10.5712004Z * [new branch] gh/seemethere/52/base -> origin/gh/seemethere/52/base 2025-09-07T06:49:10.5712197Z * [new branch] gh/seemethere/52/head -> origin/gh/seemethere/52/head 2025-09-07T06:49:10.5712467Z * [new branch] gh/seemethere/52/orig -> origin/gh/seemethere/52/orig 2025-09-07T06:49:10.5712675Z * [new branch] gh/seemethere/53/base -> origin/gh/seemethere/53/base 2025-09-07T06:49:10.5712875Z * [new branch] gh/seemethere/53/head -> origin/gh/seemethere/53/head 2025-09-07T06:49:10.5713072Z * [new branch] gh/seemethere/53/orig -> origin/gh/seemethere/53/orig 2025-09-07T06:49:10.5713277Z * [new branch] gh/seemethere/54/base -> origin/gh/seemethere/54/base 2025-09-07T06:49:10.5713476Z * [new branch] gh/seemethere/54/head -> origin/gh/seemethere/54/head 2025-09-07T06:49:10.5713671Z * [new branch] gh/seemethere/54/orig -> origin/gh/seemethere/54/orig 2025-09-07T06:49:10.5713876Z * [new branch] gh/seemethere/55/base -> origin/gh/seemethere/55/base 2025-09-07T06:49:10.5714071Z * [new branch] gh/seemethere/55/head -> origin/gh/seemethere/55/head 2025-09-07T06:49:10.5714266Z * [new branch] gh/seemethere/55/orig -> origin/gh/seemethere/55/orig 2025-09-07T06:49:10.5714473Z * [new branch] gh/seemethere/56/base -> origin/gh/seemethere/56/base 2025-09-07T06:49:10.5714737Z * [new branch] gh/seemethere/56/head -> origin/gh/seemethere/56/head 2025-09-07T06:49:10.5714938Z * [new branch] gh/seemethere/56/orig -> origin/gh/seemethere/56/orig 2025-09-07T06:49:10.5715145Z * [new branch] gh/seemethere/57/base -> origin/gh/seemethere/57/base 2025-09-07T06:49:10.5715345Z * [new branch] gh/seemethere/57/head -> origin/gh/seemethere/57/head 2025-09-07T06:49:10.5715539Z * [new branch] gh/seemethere/57/orig -> origin/gh/seemethere/57/orig 2025-09-07T06:49:10.5715740Z * [new branch] gh/seemethere/58/base -> origin/gh/seemethere/58/base 2025-09-07T06:49:10.5715941Z * [new branch] gh/seemethere/58/head -> origin/gh/seemethere/58/head 2025-09-07T06:49:10.5716139Z * [new branch] gh/seemethere/58/orig -> origin/gh/seemethere/58/orig 2025-09-07T06:49:10.5716344Z * [new branch] gh/seemethere/59/base -> origin/gh/seemethere/59/base 2025-09-07T06:49:10.5716545Z * [new branch] gh/seemethere/59/head -> origin/gh/seemethere/59/head 2025-09-07T06:49:10.5716746Z * [new branch] gh/seemethere/59/orig -> origin/gh/seemethere/59/orig 2025-09-07T06:49:10.5716947Z * [new branch] gh/seemethere/60/base -> origin/gh/seemethere/60/base 2025-09-07T06:49:10.5717155Z * [new branch] gh/seemethere/60/head -> origin/gh/seemethere/60/head 2025-09-07T06:49:10.5717352Z * [new branch] gh/seemethere/60/orig -> origin/gh/seemethere/60/orig 2025-09-07T06:49:10.5717553Z * [new branch] gh/seemethere/61/base -> origin/gh/seemethere/61/base 2025-09-07T06:49:10.5717757Z * [new branch] gh/seemethere/61/head -> origin/gh/seemethere/61/head 2025-09-07T06:49:10.5717952Z * [new branch] gh/seemethere/61/orig -> origin/gh/seemethere/61/orig 2025-09-07T06:49:10.5718152Z * [new branch] gh/seemethere/62/base -> origin/gh/seemethere/62/base 2025-09-07T06:49:10.5718360Z * [new branch] gh/seemethere/62/head -> origin/gh/seemethere/62/head 2025-09-07T06:49:10.5718558Z * [new branch] gh/seemethere/62/orig -> origin/gh/seemethere/62/orig 2025-09-07T06:49:10.5718749Z * [new branch] gh/seemethere/63/base -> origin/gh/seemethere/63/base 2025-09-07T06:49:10.5718947Z * [new branch] gh/seemethere/63/head -> origin/gh/seemethere/63/head 2025-09-07T06:49:10.5719144Z * [new branch] gh/seemethere/63/orig -> origin/gh/seemethere/63/orig 2025-09-07T06:49:10.5719352Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-09-07T06:49:10.5720303Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-09-07T06:49:10.5720515Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-09-07T06:49:10.5720725Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-09-07T06:49:10.5720942Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-09-07T06:49:10.5721144Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-09-07T06:49:10.5721357Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-09-07T06:49:10.5721573Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-09-07T06:49:10.5721779Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-09-07T06:49:10.5721986Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-09-07T06:49:10.5722191Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-09-07T06:49:10.5722413Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-09-07T06:49:10.5722681Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-09-07T06:49:10.5722882Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-09-07T06:49:10.5723094Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-09-07T06:49:10.5723298Z * [new branch] gh/shunting314/214/base -> origin/gh/shunting314/214/base 2025-09-07T06:49:10.5723496Z * [new branch] gh/shunting314/214/head -> origin/gh/shunting314/214/head 2025-09-07T06:49:10.5723704Z * [new branch] gh/shunting314/214/orig -> origin/gh/shunting314/214/orig 2025-09-07T06:49:10.5723914Z * [new branch] gh/shunting314/215/base -> origin/gh/shunting314/215/base 2025-09-07T06:49:10.5724120Z * [new branch] gh/shunting314/215/head -> origin/gh/shunting314/215/head 2025-09-07T06:49:10.5724344Z * [new branch] gh/shunting314/215/orig -> origin/gh/shunting314/215/orig 2025-09-07T06:49:10.5724642Z * [new branch] gh/shunting314/216/base -> origin/gh/shunting314/216/base 2025-09-07T06:49:10.5724853Z * [new branch] gh/shunting314/216/head -> origin/gh/shunting314/216/head 2025-09-07T06:49:10.5725065Z * [new branch] gh/shunting314/216/orig -> origin/gh/shunting314/216/orig 2025-09-07T06:49:10.5725267Z * [new branch] gh/shunting314/217/base -> origin/gh/shunting314/217/base 2025-09-07T06:49:10.5725471Z * [new branch] gh/shunting314/217/head -> origin/gh/shunting314/217/head 2025-09-07T06:49:10.5725690Z * [new branch] gh/shunting314/217/orig -> origin/gh/shunting314/217/orig 2025-09-07T06:49:10.5725893Z * [new branch] gh/shunting314/218/base -> origin/gh/shunting314/218/base 2025-09-07T06:49:10.5726095Z * [new branch] gh/shunting314/218/head -> origin/gh/shunting314/218/head 2025-09-07T06:49:10.5726312Z * [new branch] gh/shunting314/218/orig -> origin/gh/shunting314/218/orig 2025-09-07T06:49:10.5726522Z * [new branch] gh/shunting314/219/base -> origin/gh/shunting314/219/base 2025-09-07T06:49:10.5726729Z * [new branch] gh/shunting314/219/head -> origin/gh/shunting314/219/head 2025-09-07T06:49:10.5726941Z * [new branch] gh/shunting314/219/orig -> origin/gh/shunting314/219/orig 2025-09-07T06:49:10.5727144Z * [new branch] gh/shunting314/220/base -> origin/gh/shunting314/220/base 2025-09-07T06:49:10.5727347Z * [new branch] gh/shunting314/220/head -> origin/gh/shunting314/220/head 2025-09-07T06:49:10.5727624Z * [new branch] gh/shunting314/220/orig -> origin/gh/shunting314/220/orig 2025-09-07T06:49:10.5727842Z * [new branch] gh/shunting314/221/base -> origin/gh/shunting314/221/base 2025-09-07T06:49:10.5728051Z * [new branch] gh/shunting314/221/head -> origin/gh/shunting314/221/head 2025-09-07T06:49:10.5728256Z * [new branch] gh/shunting314/221/orig -> origin/gh/shunting314/221/orig 2025-09-07T06:49:10.5728467Z * [new branch] gh/shunting314/222/base -> origin/gh/shunting314/222/base 2025-09-07T06:49:10.5728669Z * [new branch] gh/shunting314/222/head -> origin/gh/shunting314/222/head 2025-09-07T06:49:10.5728871Z * [new branch] gh/shunting314/222/orig -> origin/gh/shunting314/222/orig 2025-09-07T06:49:10.5729087Z * [new branch] gh/shunting314/223/base -> origin/gh/shunting314/223/base 2025-09-07T06:49:10.5729296Z * [new branch] gh/shunting314/223/head -> origin/gh/shunting314/223/head 2025-09-07T06:49:10.5729500Z * [new branch] gh/shunting314/223/orig -> origin/gh/shunting314/223/orig 2025-09-07T06:49:10.5729771Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-09-07T06:49:10.5729963Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-09-07T06:49:10.5730157Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-09-07T06:49:10.5730359Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-09-07T06:49:10.5730557Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-09-07T06:49:10.5730747Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-09-07T06:49:10.5730953Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-09-07T06:49:10.5731147Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-09-07T06:49:10.5731348Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-09-07T06:49:10.5731561Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-09-07T06:49:10.5731749Z * [new branch] gh/skarjala/17/base -> origin/gh/skarjala/17/base 2025-09-07T06:49:10.5731936Z * [new branch] gh/skarjala/17/head -> origin/gh/skarjala/17/head 2025-09-07T06:49:10.5732130Z * [new branch] gh/skarjala/17/orig -> origin/gh/skarjala/17/orig 2025-09-07T06:49:10.5732316Z * [new branch] gh/skarjala/18/base -> origin/gh/skarjala/18/base 2025-09-07T06:49:10.5732501Z * [new branch] gh/skarjala/18/head -> origin/gh/skarjala/18/head 2025-09-07T06:49:10.5732690Z * [new branch] gh/skarjala/18/orig -> origin/gh/skarjala/18/orig 2025-09-07T06:49:10.5732885Z * [new branch] gh/skarjala/19/base -> origin/gh/skarjala/19/base 2025-09-07T06:49:10.5733075Z * [new branch] gh/skarjala/19/head -> origin/gh/skarjala/19/head 2025-09-07T06:49:10.5733263Z * [new branch] gh/skarjala/19/orig -> origin/gh/skarjala/19/orig 2025-09-07T06:49:10.5733460Z * [new branch] gh/slayton58/1/base -> origin/gh/slayton58/1/base 2025-09-07T06:49:10.5733641Z * [new branch] gh/slayton58/1/head -> origin/gh/slayton58/1/head 2025-09-07T06:49:10.5733833Z * [new branch] gh/slayton58/1/orig -> origin/gh/slayton58/1/orig 2025-09-07T06:49:10.5734024Z * [new branch] gh/slayton58/2/base -> origin/gh/slayton58/2/base 2025-09-07T06:49:10.5734206Z * [new branch] gh/slayton58/2/head -> origin/gh/slayton58/2/head 2025-09-07T06:49:10.5734457Z * [new branch] gh/slayton58/2/orig -> origin/gh/slayton58/2/orig 2025-09-07T06:49:10.5734653Z * [new branch] gh/slayton58/3/base -> origin/gh/slayton58/3/base 2025-09-07T06:49:10.5734836Z * [new branch] gh/slayton58/3/head -> origin/gh/slayton58/3/head 2025-09-07T06:49:10.5735022Z * [new branch] gh/slayton58/3/orig -> origin/gh/slayton58/3/orig 2025-09-07T06:49:10.5735216Z * [new branch] gh/slayton58/4/base -> origin/gh/slayton58/4/base 2025-09-07T06:49:10.5735401Z * [new branch] gh/slayton58/4/head -> origin/gh/slayton58/4/head 2025-09-07T06:49:10.5735583Z * [new branch] gh/slayton58/4/orig -> origin/gh/slayton58/4/orig 2025-09-07T06:49:10.5735773Z * [new branch] gh/slayton58/5/base -> origin/gh/slayton58/5/base 2025-09-07T06:49:10.5735959Z * [new branch] gh/slayton58/5/head -> origin/gh/slayton58/5/head 2025-09-07T06:49:10.5736144Z * [new branch] gh/slayton58/5/orig -> origin/gh/slayton58/5/orig 2025-09-07T06:49:10.5736347Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-09-07T06:49:10.5736607Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-09-07T06:49:10.5736805Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-09-07T06:49:10.5736998Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-09-07T06:49:10.5737196Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-09-07T06:49:10.5737392Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-09-07T06:49:10.5737585Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-09-07T06:49:10.5737797Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-09-07T06:49:10.5737991Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-09-07T06:49:10.5738188Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-09-07T06:49:10.5738396Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-09-07T06:49:10.5738597Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-09-07T06:49:10.5738793Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-09-07T06:49:10.5738996Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-09-07T06:49:10.5739188Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-09-07T06:49:10.5739379Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-09-07T06:49:10.5739587Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-09-07T06:49:10.5739780Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-09-07T06:49:10.5739971Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-09-07T06:49:10.5740176Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-09-07T06:49:10.5740369Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-09-07T06:49:10.5740561Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-09-07T06:49:10.5740758Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-09-07T06:49:10.5740949Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-09-07T06:49:10.5741143Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-09-07T06:49:10.5741404Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-09-07T06:49:10.5741607Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-09-07T06:49:10.5741803Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-09-07T06:49:10.5741993Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-09-07T06:49:10.5742191Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-09-07T06:49:10.5742381Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-09-07T06:49:10.5742573Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-09-07T06:49:10.5742773Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-09-07T06:49:10.5742969Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-09-07T06:49:10.5743160Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-09-07T06:49:10.5743360Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-09-07T06:49:10.5743617Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-09-07T06:49:10.5743811Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-09-07T06:49:10.5744016Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-09-07T06:49:10.5744209Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-09-07T06:49:10.5744405Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-09-07T06:49:10.5744604Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-09-07T06:49:10.5744800Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-09-07T06:49:10.5744995Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-09-07T06:49:10.5745201Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-09-07T06:49:10.5745394Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-09-07T06:49:10.5745584Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-09-07T06:49:10.5745779Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-09-07T06:49:10.5745987Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-09-07T06:49:10.5746182Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-09-07T06:49:10.5746373Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-09-07T06:49:10.5746577Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-09-07T06:49:10.5746767Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-09-07T06:49:10.5746962Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-09-07T06:49:10.5747165Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-09-07T06:49:10.5747357Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-09-07T06:49:10.5747551Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-09-07T06:49:10.5747752Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-09-07T06:49:10.5747943Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-09-07T06:49:10.5748206Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-09-07T06:49:10.5748408Z * [new branch] gh/soulitzer/373/base -> origin/gh/soulitzer/373/base 2025-09-07T06:49:10.5748603Z * [new branch] gh/soulitzer/373/head -> origin/gh/soulitzer/373/head 2025-09-07T06:49:10.5748798Z * [new branch] gh/soulitzer/373/orig -> origin/gh/soulitzer/373/orig 2025-09-07T06:49:10.5748997Z * [new branch] gh/soulitzer/374/base -> origin/gh/soulitzer/374/base 2025-09-07T06:49:10.5749191Z * [new branch] gh/soulitzer/374/head -> origin/gh/soulitzer/374/head 2025-09-07T06:49:10.5749386Z * [new branch] gh/soulitzer/374/orig -> origin/gh/soulitzer/374/orig 2025-09-07T06:49:10.5749587Z * [new branch] gh/soulitzer/375/base -> origin/gh/soulitzer/375/base 2025-09-07T06:49:10.5749785Z * [new branch] gh/soulitzer/375/head -> origin/gh/soulitzer/375/head 2025-09-07T06:49:10.5749984Z * [new branch] gh/soulitzer/375/orig -> origin/gh/soulitzer/375/orig 2025-09-07T06:49:10.5750178Z * [new branch] gh/soulitzer/376/base -> origin/gh/soulitzer/376/base 2025-09-07T06:49:10.5750444Z * [new branch] gh/soulitzer/376/head -> origin/gh/soulitzer/376/head 2025-09-07T06:49:10.5750639Z * [new branch] gh/soulitzer/376/orig -> origin/gh/soulitzer/376/orig 2025-09-07T06:49:10.5750832Z * [new branch] gh/soulitzer/377/base -> origin/gh/soulitzer/377/base 2025-09-07T06:49:10.5751036Z * [new branch] gh/soulitzer/377/head -> origin/gh/soulitzer/377/head 2025-09-07T06:49:10.5751229Z * [new branch] gh/soulitzer/377/orig -> origin/gh/soulitzer/377/orig 2025-09-07T06:49:10.5751421Z * [new branch] gh/soulitzer/378/base -> origin/gh/soulitzer/378/base 2025-09-07T06:49:10.5751632Z * [new branch] gh/soulitzer/378/head -> origin/gh/soulitzer/378/head 2025-09-07T06:49:10.5751824Z * [new branch] gh/soulitzer/378/orig -> origin/gh/soulitzer/378/orig 2025-09-07T06:49:10.5752017Z * [new branch] gh/soulitzer/379/base -> origin/gh/soulitzer/379/base 2025-09-07T06:49:10.5752224Z * [new branch] gh/soulitzer/379/head -> origin/gh/soulitzer/379/head 2025-09-07T06:49:10.5752422Z * [new branch] gh/soulitzer/379/orig -> origin/gh/soulitzer/379/orig 2025-09-07T06:49:10.5752614Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-09-07T06:49:10.5752811Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-09-07T06:49:10.5753003Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-09-07T06:49:10.5753201Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-09-07T06:49:10.5753404Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-09-07T06:49:10.5753591Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-09-07T06:49:10.5753781Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-09-07T06:49:10.5753972Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-09-07T06:49:10.5754169Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-09-07T06:49:10.5754356Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-09-07T06:49:10.5754550Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-09-07T06:49:10.5754746Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-09-07T06:49:10.5754936Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-09-07T06:49:10.5755189Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-09-07T06:49:10.5755386Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-09-07T06:49:10.5755577Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-09-07T06:49:10.5755765Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-09-07T06:49:10.5755962Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-09-07T06:49:10.5756148Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-09-07T06:49:10.5756337Z * [new branch] gh/swolchok/786/base -> origin/gh/swolchok/786/base 2025-09-07T06:49:10.5756533Z * [new branch] gh/swolchok/786/head -> origin/gh/swolchok/786/head 2025-09-07T06:49:10.5756727Z * [new branch] gh/swolchok/786/orig -> origin/gh/swolchok/786/orig 2025-09-07T06:49:10.5756914Z * [new branch] gh/swolchok/787/base -> origin/gh/swolchok/787/base 2025-09-07T06:49:10.5757118Z * [new branch] gh/swolchok/787/head -> origin/gh/swolchok/787/head 2025-09-07T06:49:10.5757379Z * [new branch] gh/swolchok/787/orig -> origin/gh/swolchok/787/orig 2025-09-07T06:49:10.5757567Z * [new branch] gh/swolchok/788/base -> origin/gh/swolchok/788/base 2025-09-07T06:49:10.5757763Z * [new branch] gh/swolchok/788/head -> origin/gh/swolchok/788/head 2025-09-07T06:49:10.5757949Z * [new branch] gh/swolchok/788/orig -> origin/gh/swolchok/788/orig 2025-09-07T06:49:10.5758135Z * [new branch] gh/swolchok/789/base -> origin/gh/swolchok/789/base 2025-09-07T06:49:10.5758324Z * [new branch] gh/swolchok/789/head -> origin/gh/swolchok/789/head 2025-09-07T06:49:10.5758524Z * [new branch] gh/swolchok/789/orig -> origin/gh/swolchok/789/orig 2025-09-07T06:49:10.5758713Z * [new branch] gh/swolchok/790/base -> origin/gh/swolchok/790/base 2025-09-07T06:49:10.5758905Z * [new branch] gh/swolchok/790/head -> origin/gh/swolchok/790/head 2025-09-07T06:49:10.5759111Z * [new branch] gh/swolchok/790/orig -> origin/gh/swolchok/790/orig 2025-09-07T06:49:10.5759299Z * [new branch] gh/swolchok/791/base -> origin/gh/swolchok/791/base 2025-09-07T06:49:10.5759485Z * [new branch] gh/swolchok/791/head -> origin/gh/swolchok/791/head 2025-09-07T06:49:10.5759684Z * [new branch] gh/swolchok/791/orig -> origin/gh/swolchok/791/orig 2025-09-07T06:49:10.5759875Z * [new branch] gh/swolchok/792/base -> origin/gh/swolchok/792/base 2025-09-07T06:49:10.5760066Z * [new branch] gh/swolchok/792/head -> origin/gh/swolchok/792/head 2025-09-07T06:49:10.5760268Z * [new branch] gh/swolchok/792/orig -> origin/gh/swolchok/792/orig 2025-09-07T06:49:10.5760456Z * [new branch] gh/swolchok/793/base -> origin/gh/swolchok/793/base 2025-09-07T06:49:10.5760646Z * [new branch] gh/swolchok/793/head -> origin/gh/swolchok/793/head 2025-09-07T06:49:10.5760848Z * [new branch] gh/swolchok/793/orig -> origin/gh/swolchok/793/orig 2025-09-07T06:49:10.5761043Z * [new branch] gh/swolchok/794/base -> origin/gh/swolchok/794/base 2025-09-07T06:49:10.5761232Z * [new branch] gh/swolchok/794/head -> origin/gh/swolchok/794/head 2025-09-07T06:49:10.5761434Z * [new branch] gh/swolchok/794/orig -> origin/gh/swolchok/794/orig 2025-09-07T06:49:10.5761623Z * [new branch] gh/swolchok/795/base -> origin/gh/swolchok/795/base 2025-09-07T06:49:10.5761883Z * [new branch] gh/swolchok/795/head -> origin/gh/swolchok/795/head 2025-09-07T06:49:10.5762085Z * [new branch] gh/swolchok/795/orig -> origin/gh/swolchok/795/orig 2025-09-07T06:49:10.5762273Z * [new branch] gh/swolchok/796/base -> origin/gh/swolchok/796/base 2025-09-07T06:49:10.5762471Z * [new branch] gh/swolchok/796/head -> origin/gh/swolchok/796/head 2025-09-07T06:49:10.5762659Z * [new branch] gh/swolchok/796/orig -> origin/gh/swolchok/796/orig 2025-09-07T06:49:10.5762853Z * [new branch] gh/swolchok/797/base -> origin/gh/swolchok/797/base 2025-09-07T06:49:10.5763042Z * [new branch] gh/swolchok/797/head -> origin/gh/swolchok/797/head 2025-09-07T06:49:10.5763229Z * [new branch] gh/swolchok/797/orig -> origin/gh/swolchok/797/orig 2025-09-07T06:49:10.5763423Z * [new branch] gh/swolchok/798/base -> origin/gh/swolchok/798/base 2025-09-07T06:49:10.5763613Z * [new branch] gh/swolchok/798/head -> origin/gh/swolchok/798/head 2025-09-07T06:49:10.5763801Z * [new branch] gh/swolchok/798/orig -> origin/gh/swolchok/798/orig 2025-09-07T06:49:10.5763994Z * [new branch] gh/swolchok/799/base -> origin/gh/swolchok/799/base 2025-09-07T06:49:10.5764250Z * [new branch] gh/swolchok/799/head -> origin/gh/swolchok/799/head 2025-09-07T06:49:10.5764439Z * [new branch] gh/swolchok/799/orig -> origin/gh/swolchok/799/orig 2025-09-07T06:49:10.5764711Z * [new branch] gh/swolchok/800/base -> origin/gh/swolchok/800/base 2025-09-07T06:49:10.5764899Z * [new branch] gh/swolchok/800/head -> origin/gh/swolchok/800/head 2025-09-07T06:49:10.5765088Z * [new branch] gh/swolchok/800/orig -> origin/gh/swolchok/800/orig 2025-09-07T06:49:10.5765287Z * [new branch] gh/swolchok/801/base -> origin/gh/swolchok/801/base 2025-09-07T06:49:10.5765481Z * [new branch] gh/swolchok/801/head -> origin/gh/swolchok/801/head 2025-09-07T06:49:10.5765677Z * [new branch] gh/swolchok/801/orig -> origin/gh/swolchok/801/orig 2025-09-07T06:49:10.5765887Z * [new branch] gh/swolchok/802/base -> origin/gh/swolchok/802/base 2025-09-07T06:49:10.5766077Z * [new branch] gh/swolchok/802/head -> origin/gh/swolchok/802/head 2025-09-07T06:49:10.5766265Z * [new branch] gh/swolchok/802/orig -> origin/gh/swolchok/802/orig 2025-09-07T06:49:10.5766464Z * [new branch] gh/swolchok/803/base -> origin/gh/swolchok/803/base 2025-09-07T06:49:10.5766654Z * [new branch] gh/swolchok/803/head -> origin/gh/swolchok/803/head 2025-09-07T06:49:10.5766842Z * [new branch] gh/swolchok/803/orig -> origin/gh/swolchok/803/orig 2025-09-07T06:49:10.5767033Z * [new branch] gh/swolchok/804/base -> origin/gh/swolchok/804/base 2025-09-07T06:49:10.5767232Z * [new branch] gh/swolchok/804/head -> origin/gh/swolchok/804/head 2025-09-07T06:49:10.5767420Z * [new branch] gh/swolchok/804/orig -> origin/gh/swolchok/804/orig 2025-09-07T06:49:10.5767611Z * [new branch] gh/swolchok/805/base -> origin/gh/swolchok/805/base 2025-09-07T06:49:10.5767806Z * [new branch] gh/swolchok/805/head -> origin/gh/swolchok/805/head 2025-09-07T06:49:10.5767995Z * [new branch] gh/swolchok/805/orig -> origin/gh/swolchok/805/orig 2025-09-07T06:49:10.5768187Z * [new branch] gh/swolchok/806/base -> origin/gh/swolchok/806/base 2025-09-07T06:49:10.5768382Z * [new branch] gh/swolchok/806/head -> origin/gh/swolchok/806/head 2025-09-07T06:49:10.5768569Z * [new branch] gh/swolchok/806/orig -> origin/gh/swolchok/806/orig 2025-09-07T06:49:10.5768835Z * [new branch] gh/swolchok/807/base -> origin/gh/swolchok/807/base 2025-09-07T06:49:10.5769036Z * [new branch] gh/swolchok/807/head -> origin/gh/swolchok/807/head 2025-09-07T06:49:10.5769227Z * [new branch] gh/swolchok/807/orig -> origin/gh/swolchok/807/orig 2025-09-07T06:49:10.5769426Z * [new branch] gh/swolchok/808/base -> origin/gh/swolchok/808/base 2025-09-07T06:49:10.5769624Z * [new branch] gh/swolchok/808/head -> origin/gh/swolchok/808/head 2025-09-07T06:49:10.5769814Z * [new branch] gh/swolchok/808/orig -> origin/gh/swolchok/808/orig 2025-09-07T06:49:10.5782004Z * [new branch] gh/swolchok/809/base -> origin/gh/swolchok/809/base 2025-09-07T06:49:10.5782376Z * [new branch] gh/swolchok/809/head -> origin/gh/swolchok/809/head 2025-09-07T06:49:10.5782592Z * [new branch] gh/swolchok/809/orig -> origin/gh/swolchok/809/orig 2025-09-07T06:49:10.5782834Z * [new branch] gh/swolchok/810/base -> origin/gh/swolchok/810/base 2025-09-07T06:49:10.5783030Z * [new branch] gh/swolchok/810/head -> origin/gh/swolchok/810/head 2025-09-07T06:49:10.5783371Z * [new branch] gh/swolchok/810/orig -> origin/gh/swolchok/810/orig 2025-09-07T06:49:10.5783565Z * [new branch] gh/swolchok/811/base -> origin/gh/swolchok/811/base 2025-09-07T06:49:10.5783753Z * [new branch] gh/swolchok/811/head -> origin/gh/swolchok/811/head 2025-09-07T06:49:10.5783952Z * [new branch] gh/swolchok/811/orig -> origin/gh/swolchok/811/orig 2025-09-07T06:49:10.5784139Z * [new branch] gh/swolchok/812/base -> origin/gh/swolchok/812/base 2025-09-07T06:49:10.5784330Z * [new branch] gh/swolchok/812/head -> origin/gh/swolchok/812/head 2025-09-07T06:49:10.5784534Z * [new branch] gh/swolchok/812/orig -> origin/gh/swolchok/812/orig 2025-09-07T06:49:10.5784731Z * [new branch] gh/swolchok/813/base -> origin/gh/swolchok/813/base 2025-09-07T06:49:10.5784920Z * [new branch] gh/swolchok/813/head -> origin/gh/swolchok/813/head 2025-09-07T06:49:10.5785127Z * [new branch] gh/swolchok/813/orig -> origin/gh/swolchok/813/orig 2025-09-07T06:49:10.5785325Z * [new branch] gh/swolchok/814/base -> origin/gh/swolchok/814/base 2025-09-07T06:49:10.5785513Z * [new branch] gh/swolchok/814/head -> origin/gh/swolchok/814/head 2025-09-07T06:49:10.5785710Z * [new branch] gh/swolchok/814/orig -> origin/gh/swolchok/814/orig 2025-09-07T06:49:10.5785902Z * [new branch] gh/swolchok/815/base -> origin/gh/swolchok/815/base 2025-09-07T06:49:10.5786090Z * [new branch] gh/swolchok/815/head -> origin/gh/swolchok/815/head 2025-09-07T06:49:10.5786294Z * [new branch] gh/swolchok/815/orig -> origin/gh/swolchok/815/orig 2025-09-07T06:49:10.5786484Z * [new branch] gh/swolchok/816/base -> origin/gh/swolchok/816/base 2025-09-07T06:49:10.5786671Z * [new branch] gh/swolchok/816/head -> origin/gh/swolchok/816/head 2025-09-07T06:49:10.5786864Z * [new branch] gh/swolchok/816/orig -> origin/gh/swolchok/816/orig 2025-09-07T06:49:10.5787059Z * [new branch] gh/swolchok/817/base -> origin/gh/swolchok/817/base 2025-09-07T06:49:10.5787245Z * [new branch] gh/swolchok/817/head -> origin/gh/swolchok/817/head 2025-09-07T06:49:10.5787441Z * [new branch] gh/swolchok/817/orig -> origin/gh/swolchok/817/orig 2025-09-07T06:49:10.5787637Z * [new branch] gh/swolchok/818/base -> origin/gh/swolchok/818/base 2025-09-07T06:49:10.5787826Z * [new branch] gh/swolchok/818/head -> origin/gh/swolchok/818/head 2025-09-07T06:49:10.5788144Z * [new branch] gh/swolchok/818/orig -> origin/gh/swolchok/818/orig 2025-09-07T06:49:10.5788358Z * [new branch] gh/swolchok/819/base -> origin/gh/swolchok/819/base 2025-09-07T06:49:10.5788556Z * [new branch] gh/swolchok/819/head -> origin/gh/swolchok/819/head 2025-09-07T06:49:10.5788784Z * [new branch] gh/swolchok/819/orig -> origin/gh/swolchok/819/orig 2025-09-07T06:49:10.5788987Z * [new branch] gh/swolchok/820/base -> origin/gh/swolchok/820/base 2025-09-07T06:49:10.5789175Z * [new branch] gh/swolchok/820/head -> origin/gh/swolchok/820/head 2025-09-07T06:49:10.5789365Z * [new branch] gh/swolchok/820/orig -> origin/gh/swolchok/820/orig 2025-09-07T06:49:10.5789571Z * [new branch] gh/swolchok/821/base -> origin/gh/swolchok/821/base 2025-09-07T06:49:10.5789761Z * [new branch] gh/swolchok/821/head -> origin/gh/swolchok/821/head 2025-09-07T06:49:10.5789954Z * [new branch] gh/swolchok/821/orig -> origin/gh/swolchok/821/orig 2025-09-07T06:49:10.5790154Z * [new branch] gh/swolchok/822/base -> origin/gh/swolchok/822/base 2025-09-07T06:49:10.5790415Z * [new branch] gh/swolchok/822/head -> origin/gh/swolchok/822/head 2025-09-07T06:49:10.5790604Z * [new branch] gh/swolchok/822/orig -> origin/gh/swolchok/822/orig 2025-09-07T06:49:10.5790804Z * [new branch] gh/swolchok/823/base -> origin/gh/swolchok/823/base 2025-09-07T06:49:10.5790993Z * [new branch] gh/swolchok/823/head -> origin/gh/swolchok/823/head 2025-09-07T06:49:10.5791181Z * [new branch] gh/swolchok/823/orig -> origin/gh/swolchok/823/orig 2025-09-07T06:49:10.5791370Z * [new branch] gh/swolchok/824/base -> origin/gh/swolchok/824/base 2025-09-07T06:49:10.5791574Z * [new branch] gh/swolchok/824/head -> origin/gh/swolchok/824/head 2025-09-07T06:49:10.5791761Z * [new branch] gh/swolchok/824/orig -> origin/gh/swolchok/824/orig 2025-09-07T06:49:10.5791949Z * [new branch] gh/swolchok/825/base -> origin/gh/swolchok/825/base 2025-09-07T06:49:10.5792149Z * [new branch] gh/swolchok/825/head -> origin/gh/swolchok/825/head 2025-09-07T06:49:10.5792337Z * [new branch] gh/swolchok/825/orig -> origin/gh/swolchok/825/orig 2025-09-07T06:49:10.5792528Z * [new branch] gh/swolchok/826/base -> origin/gh/swolchok/826/base 2025-09-07T06:49:10.5792726Z * [new branch] gh/swolchok/826/head -> origin/gh/swolchok/826/head 2025-09-07T06:49:10.5792919Z * [new branch] gh/swolchok/826/orig -> origin/gh/swolchok/826/orig 2025-09-07T06:49:10.5793111Z * [new branch] gh/swolchok/827/base -> origin/gh/swolchok/827/base 2025-09-07T06:49:10.5793314Z * [new branch] gh/swolchok/827/head -> origin/gh/swolchok/827/head 2025-09-07T06:49:10.5793504Z * [new branch] gh/swolchok/827/orig -> origin/gh/swolchok/827/orig 2025-09-07T06:49:10.5793697Z * [new branch] gh/swolchok/828/base -> origin/gh/swolchok/828/base 2025-09-07T06:49:10.5793934Z * [new branch] gh/swolchok/828/head -> origin/gh/swolchok/828/head 2025-09-07T06:49:10.5794129Z * [new branch] gh/swolchok/828/orig -> origin/gh/swolchok/828/orig 2025-09-07T06:49:10.5794353Z * [new branch] gh/swolchok/829/base -> origin/gh/swolchok/829/base 2025-09-07T06:49:10.5794554Z * [new branch] gh/swolchok/829/head -> origin/gh/swolchok/829/head 2025-09-07T06:49:10.5794744Z * [new branch] gh/swolchok/829/orig -> origin/gh/swolchok/829/orig 2025-09-07T06:49:10.5794933Z * [new branch] gh/swolchok/830/base -> origin/gh/swolchok/830/base 2025-09-07T06:49:10.5795194Z * [new branch] gh/swolchok/830/head -> origin/gh/swolchok/830/head 2025-09-07T06:49:10.5795383Z * [new branch] gh/swolchok/830/orig -> origin/gh/swolchok/830/orig 2025-09-07T06:49:10.5795577Z * [new branch] gh/swolchok/831/base -> origin/gh/swolchok/831/base 2025-09-07T06:49:10.5795763Z * [new branch] gh/swolchok/831/head -> origin/gh/swolchok/831/head 2025-09-07T06:49:10.5795955Z * [new branch] gh/swolchok/831/orig -> origin/gh/swolchok/831/orig 2025-09-07T06:49:10.5796143Z * [new branch] gh/swolchok/832/base -> origin/gh/swolchok/832/base 2025-09-07T06:49:10.5796333Z * [new branch] gh/swolchok/832/head -> origin/gh/swolchok/832/head 2025-09-07T06:49:10.5796533Z * [new branch] gh/swolchok/832/orig -> origin/gh/swolchok/832/orig 2025-09-07T06:49:10.5796740Z * [new branch] gh/syed-ahmed/3/base -> origin/gh/syed-ahmed/3/base 2025-09-07T06:49:10.5796935Z * [new branch] gh/syed-ahmed/3/head -> origin/gh/syed-ahmed/3/head 2025-09-07T06:49:10.5797143Z * [new branch] gh/syed-ahmed/3/orig -> origin/gh/syed-ahmed/3/orig 2025-09-07T06:49:10.5797396Z * [new branch] gh/syed-ahmed/4/base -> origin/gh/syed-ahmed/4/base 2025-09-07T06:49:10.5797584Z * [new branch] gh/syed-ahmed/4/head -> origin/gh/syed-ahmed/4/head 2025-09-07T06:49:10.5797775Z * [new branch] gh/syed-ahmed/4/orig -> origin/gh/syed-ahmed/4/orig 2025-09-07T06:49:10.5797966Z * [new branch] gh/syed-ahmed/5/base -> origin/gh/syed-ahmed/5/base 2025-09-07T06:49:10.5798158Z * [new branch] gh/syed-ahmed/5/head -> origin/gh/syed-ahmed/5/head 2025-09-07T06:49:10.5798356Z * [new branch] gh/syed-ahmed/5/orig -> origin/gh/syed-ahmed/5/orig 2025-09-07T06:49:10.5798546Z * [new branch] gh/teja-rao/4/base -> origin/gh/teja-rao/4/base 2025-09-07T06:49:10.5798727Z * [new branch] gh/teja-rao/4/head -> origin/gh/teja-rao/4/head 2025-09-07T06:49:10.5798931Z * [new branch] gh/teja-rao/4/orig -> origin/gh/teja-rao/4/orig 2025-09-07T06:49:10.5799115Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-09-07T06:49:10.5799299Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-09-07T06:49:10.5799486Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-09-07T06:49:10.5799706Z * [new branch] gh/tianyu-l/3/base -> origin/gh/tianyu-l/3/base 2025-09-07T06:49:10.5799885Z * [new branch] gh/tianyu-l/3/head -> origin/gh/tianyu-l/3/head 2025-09-07T06:49:10.5800098Z * [new branch] gh/tianyu-l/3/orig -> origin/gh/tianyu-l/3/orig 2025-09-07T06:49:10.5800294Z * [new branch] gh/tianyu-l/4/base -> origin/gh/tianyu-l/4/base 2025-09-07T06:49:10.5800473Z * [new branch] gh/tianyu-l/4/head -> origin/gh/tianyu-l/4/head 2025-09-07T06:49:10.5800656Z * [new branch] gh/tianyu-l/4/orig -> origin/gh/tianyu-l/4/orig 2025-09-07T06:49:10.5800892Z * [new branch] gh/tugsbayasgalan/1/base -> origin/gh/tugsbayasgalan/1/base 2025-09-07T06:49:10.5801113Z * [new branch] gh/tugsbayasgalan/1/head -> origin/gh/tugsbayasgalan/1/head 2025-09-07T06:49:10.5801331Z * [new branch] gh/tugsbayasgalan/1/orig -> origin/gh/tugsbayasgalan/1/orig 2025-09-07T06:49:10.5801568Z * [new branch] gh/tugsbayasgalan/10/base -> origin/gh/tugsbayasgalan/10/base 2025-09-07T06:49:10.5801793Z * [new branch] gh/tugsbayasgalan/10/head -> origin/gh/tugsbayasgalan/10/head 2025-09-07T06:49:10.5802084Z * [new branch] gh/tugsbayasgalan/10/orig -> origin/gh/tugsbayasgalan/10/orig 2025-09-07T06:49:10.5802379Z * [new branch] gh/tugsbayasgalan/11/base -> origin/gh/tugsbayasgalan/11/base 2025-09-07T06:49:10.5802618Z * [new branch] gh/tugsbayasgalan/11/head -> origin/gh/tugsbayasgalan/11/head 2025-09-07T06:49:10.5802844Z * [new branch] gh/tugsbayasgalan/11/orig -> origin/gh/tugsbayasgalan/11/orig 2025-09-07T06:49:10.5803077Z * [new branch] gh/tugsbayasgalan/12/base -> origin/gh/tugsbayasgalan/12/base 2025-09-07T06:49:10.5803301Z * [new branch] gh/tugsbayasgalan/12/head -> origin/gh/tugsbayasgalan/12/head 2025-09-07T06:49:10.5803523Z * [new branch] gh/tugsbayasgalan/12/orig -> origin/gh/tugsbayasgalan/12/orig 2025-09-07T06:49:10.5803759Z * [new branch] gh/tugsbayasgalan/13/base -> origin/gh/tugsbayasgalan/13/base 2025-09-07T06:49:10.5803992Z * [new branch] gh/tugsbayasgalan/13/head -> origin/gh/tugsbayasgalan/13/head 2025-09-07T06:49:10.5804219Z * [new branch] gh/tugsbayasgalan/13/orig -> origin/gh/tugsbayasgalan/13/orig 2025-09-07T06:49:10.5804504Z * [new branch] gh/tugsbayasgalan/14/base -> origin/gh/tugsbayasgalan/14/base 2025-09-07T06:49:10.5804821Z * [new branch] gh/tugsbayasgalan/14/head -> origin/gh/tugsbayasgalan/14/head 2025-09-07T06:49:10.5805044Z * [new branch] gh/tugsbayasgalan/14/orig -> origin/gh/tugsbayasgalan/14/orig 2025-09-07T06:49:10.5805267Z * [new branch] gh/tugsbayasgalan/15/base -> origin/gh/tugsbayasgalan/15/base 2025-09-07T06:49:10.5805549Z * [new branch] gh/tugsbayasgalan/15/head -> origin/gh/tugsbayasgalan/15/head 2025-09-07T06:49:10.5805777Z * [new branch] gh/tugsbayasgalan/15/orig -> origin/gh/tugsbayasgalan/15/orig 2025-09-07T06:49:10.5806039Z * [new branch] gh/tugsbayasgalan/2/base -> origin/gh/tugsbayasgalan/2/base 2025-09-07T06:49:10.5806274Z * [new branch] gh/tugsbayasgalan/2/head -> origin/gh/tugsbayasgalan/2/head 2025-09-07T06:49:10.5806494Z * [new branch] gh/tugsbayasgalan/2/orig -> origin/gh/tugsbayasgalan/2/orig 2025-09-07T06:49:10.5806721Z * [new branch] gh/tugsbayasgalan/3/base -> origin/gh/tugsbayasgalan/3/base 2025-09-07T06:49:10.5806948Z * [new branch] gh/tugsbayasgalan/3/head -> origin/gh/tugsbayasgalan/3/head 2025-09-07T06:49:10.5807170Z * [new branch] gh/tugsbayasgalan/3/orig -> origin/gh/tugsbayasgalan/3/orig 2025-09-07T06:49:10.5807390Z * [new branch] gh/tugsbayasgalan/4/base -> origin/gh/tugsbayasgalan/4/base 2025-09-07T06:49:10.5807619Z * [new branch] gh/tugsbayasgalan/4/head -> origin/gh/tugsbayasgalan/4/head 2025-09-07T06:49:10.5807835Z * [new branch] gh/tugsbayasgalan/4/orig -> origin/gh/tugsbayasgalan/4/orig 2025-09-07T06:49:10.5808067Z * [new branch] gh/tugsbayasgalan/5/base -> origin/gh/tugsbayasgalan/5/base 2025-09-07T06:49:10.5808295Z * [new branch] gh/tugsbayasgalan/5/head -> origin/gh/tugsbayasgalan/5/head 2025-09-07T06:49:10.5808514Z * [new branch] gh/tugsbayasgalan/5/orig -> origin/gh/tugsbayasgalan/5/orig 2025-09-07T06:49:10.5808740Z * [new branch] gh/tugsbayasgalan/6/base -> origin/gh/tugsbayasgalan/6/base 2025-09-07T06:49:10.5808966Z * [new branch] gh/tugsbayasgalan/6/head -> origin/gh/tugsbayasgalan/6/head 2025-09-07T06:49:10.5809182Z * [new branch] gh/tugsbayasgalan/6/orig -> origin/gh/tugsbayasgalan/6/orig 2025-09-07T06:49:10.5809399Z * [new branch] gh/tugsbayasgalan/7/base -> origin/gh/tugsbayasgalan/7/base 2025-09-07T06:49:10.5809630Z * [new branch] gh/tugsbayasgalan/7/head -> origin/gh/tugsbayasgalan/7/head 2025-09-07T06:49:10.5809848Z * [new branch] gh/tugsbayasgalan/7/orig -> origin/gh/tugsbayasgalan/7/orig 2025-09-07T06:49:10.5810138Z * [new branch] gh/tugsbayasgalan/8/base -> origin/gh/tugsbayasgalan/8/base 2025-09-07T06:49:10.5810372Z * [new branch] gh/tugsbayasgalan/8/head -> origin/gh/tugsbayasgalan/8/head 2025-09-07T06:49:10.5810595Z * [new branch] gh/tugsbayasgalan/8/orig -> origin/gh/tugsbayasgalan/8/orig 2025-09-07T06:49:10.5810818Z * [new branch] gh/tugsbayasgalan/9/base -> origin/gh/tugsbayasgalan/9/base 2025-09-07T06:49:10.5811042Z * [new branch] gh/tugsbayasgalan/9/head -> origin/gh/tugsbayasgalan/9/head 2025-09-07T06:49:10.5811309Z * [new branch] gh/tugsbayasgalan/9/orig -> origin/gh/tugsbayasgalan/9/orig 2025-09-07T06:49:10.5811487Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-09-07T06:49:10.5811693Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-09-07T06:49:10.5811871Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-09-07T06:49:10.5812033Z * [new branch] gh/v0i0/4/base -> origin/gh/v0i0/4/base 2025-09-07T06:49:10.5812195Z * [new branch] gh/v0i0/4/head -> origin/gh/v0i0/4/head 2025-09-07T06:49:10.5812441Z * [new branch] gh/v0i0/4/orig -> origin/gh/v0i0/4/orig 2025-09-07T06:49:10.5812602Z * [new branch] gh/v0i0/6/base -> origin/gh/v0i0/6/base 2025-09-07T06:49:10.5812762Z * [new branch] gh/v0i0/6/head -> origin/gh/v0i0/6/head 2025-09-07T06:49:10.5812929Z * [new branch] gh/v0i0/6/orig -> origin/gh/v0i0/6/orig 2025-09-07T06:49:10.5813545Z * [new branch] gh/v0i0/7/base -> origin/gh/v0i0/7/base 2025-09-07T06:49:10.5813707Z * [new branch] gh/v0i0/7/head -> origin/gh/v0i0/7/head 2025-09-07T06:49:10.5813881Z * [new branch] gh/v0i0/7/orig -> origin/gh/v0i0/7/orig 2025-09-07T06:49:10.5814046Z * [new branch] gh/v0i0/8/base -> origin/gh/v0i0/8/base 2025-09-07T06:49:10.5814207Z * [new branch] gh/v0i0/8/head -> origin/gh/v0i0/8/head 2025-09-07T06:49:10.5814386Z * [new branch] gh/v0i0/8/orig -> origin/gh/v0i0/8/orig 2025-09-07T06:49:10.5814549Z * [new branch] gh/v0i0/9/base -> origin/gh/v0i0/9/base 2025-09-07T06:49:10.5814710Z * [new branch] gh/v0i0/9/head -> origin/gh/v0i0/9/head 2025-09-07T06:49:10.5814885Z * [new branch] gh/v0i0/9/orig -> origin/gh/v0i0/9/orig 2025-09-07T06:49:10.5815062Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-09-07T06:49:10.5815233Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-09-07T06:49:10.5815414Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-09-07T06:49:10.5815590Z * [new branch] gh/vkuzo/4/base -> origin/gh/vkuzo/4/base 2025-09-07T06:49:10.5815760Z * [new branch] gh/vkuzo/4/head -> origin/gh/vkuzo/4/head 2025-09-07T06:49:10.5815934Z * [new branch] gh/vkuzo/4/orig -> origin/gh/vkuzo/4/orig 2025-09-07T06:49:10.5816109Z * [new branch] gh/vkuzo/5/base -> origin/gh/vkuzo/5/base 2025-09-07T06:49:10.5816281Z * [new branch] gh/vkuzo/5/head -> origin/gh/vkuzo/5/head 2025-09-07T06:49:10.5816452Z * [new branch] gh/vkuzo/5/orig -> origin/gh/vkuzo/5/orig 2025-09-07T06:49:10.5816623Z * [new branch] gh/vkuzo/6/base -> origin/gh/vkuzo/6/base 2025-09-07T06:49:10.5816796Z * [new branch] gh/vkuzo/6/head -> origin/gh/vkuzo/6/head 2025-09-07T06:49:10.5817000Z * [new branch] gh/vkuzo/6/orig -> origin/gh/vkuzo/6/orig 2025-09-07T06:49:10.5817252Z * [new branch] gh/vkuzo/7/base -> origin/gh/vkuzo/7/base 2025-09-07T06:49:10.5817467Z * [new branch] gh/vkuzo/7/head -> origin/gh/vkuzo/7/head 2025-09-07T06:49:10.5817642Z * [new branch] gh/vkuzo/7/orig -> origin/gh/vkuzo/7/orig 2025-09-07T06:49:10.5817853Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-09-07T06:49:10.5818046Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-09-07T06:49:10.5818239Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-09-07T06:49:10.5818447Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-09-07T06:49:10.5818638Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-09-07T06:49:10.5818831Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-09-07T06:49:10.5819037Z * [new branch] gh/wconstab/435/base -> origin/gh/wconstab/435/base 2025-09-07T06:49:10.5819227Z * [new branch] gh/wconstab/435/head -> origin/gh/wconstab/435/head 2025-09-07T06:49:10.5819491Z * [new branch] gh/wconstab/435/orig -> origin/gh/wconstab/435/orig 2025-09-07T06:49:10.5819682Z * [new branch] gh/wconstab/438/base -> origin/gh/wconstab/438/base 2025-09-07T06:49:10.5819879Z * [new branch] gh/wconstab/438/head -> origin/gh/wconstab/438/head 2025-09-07T06:49:10.5820066Z * [new branch] gh/wconstab/438/orig -> origin/gh/wconstab/438/orig 2025-09-07T06:49:10.5820254Z * [new branch] gh/wconstab/440/base -> origin/gh/wconstab/440/base 2025-09-07T06:49:10.5820452Z * [new branch] gh/wconstab/440/head -> origin/gh/wconstab/440/head 2025-09-07T06:49:10.5820647Z * [new branch] gh/wconstab/440/orig -> origin/gh/wconstab/440/orig 2025-09-07T06:49:10.5820838Z * [new branch] gh/wconstab/441/base -> origin/gh/wconstab/441/base 2025-09-07T06:49:10.5821032Z * [new branch] gh/wconstab/441/head -> origin/gh/wconstab/441/head 2025-09-07T06:49:10.5821232Z * [new branch] gh/wconstab/441/orig -> origin/gh/wconstab/441/orig 2025-09-07T06:49:10.5821420Z * [new branch] gh/wconstab/442/base -> origin/gh/wconstab/442/base 2025-09-07T06:49:10.5821618Z * [new branch] gh/wconstab/442/head -> origin/gh/wconstab/442/head 2025-09-07T06:49:10.5821805Z * [new branch] gh/wconstab/442/orig -> origin/gh/wconstab/442/orig 2025-09-07T06:49:10.5821992Z * [new branch] gh/wconstab/443/base -> origin/gh/wconstab/443/base 2025-09-07T06:49:10.5822187Z * [new branch] gh/wconstab/443/head -> origin/gh/wconstab/443/head 2025-09-07T06:49:10.5822382Z * [new branch] gh/wconstab/443/orig -> origin/gh/wconstab/443/orig 2025-09-07T06:49:10.5822605Z * [new branch] gh/wconstab/444/base -> origin/gh/wconstab/444/base 2025-09-07T06:49:10.5822818Z * [new branch] gh/wconstab/444/head -> origin/gh/wconstab/444/head 2025-09-07T06:49:10.5823041Z * [new branch] gh/wconstab/444/orig -> origin/gh/wconstab/444/orig 2025-09-07T06:49:10.5823233Z * [new branch] gh/wconstab/445/base -> origin/gh/wconstab/445/base 2025-09-07T06:49:10.5823427Z * [new branch] gh/wconstab/445/head -> origin/gh/wconstab/445/head 2025-09-07T06:49:10.5823627Z * [new branch] gh/wconstab/445/orig -> origin/gh/wconstab/445/orig 2025-09-07T06:49:10.5823816Z * [new branch] gh/wconstab/446/base -> origin/gh/wconstab/446/base 2025-09-07T06:49:10.5824007Z * [new branch] gh/wconstab/446/head -> origin/gh/wconstab/446/head 2025-09-07T06:49:10.5824268Z * [new branch] gh/wconstab/446/orig -> origin/gh/wconstab/446/orig 2025-09-07T06:49:10.5824459Z * [new branch] gh/wconstab/447/base -> origin/gh/wconstab/447/base 2025-09-07T06:49:10.5824654Z * [new branch] gh/wconstab/447/head -> origin/gh/wconstab/447/head 2025-09-07T06:49:10.5824846Z * [new branch] gh/wconstab/447/orig -> origin/gh/wconstab/447/orig 2025-09-07T06:49:10.5825055Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-09-07T06:49:10.5825250Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-09-07T06:49:10.5825445Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-09-07T06:49:10.5825648Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-09-07T06:49:10.5825846Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-09-07T06:49:10.5826041Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-09-07T06:49:10.5826277Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-09-07T06:49:10.5826557Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-09-07T06:49:10.5826776Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-09-07T06:49:10.5826995Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-09-07T06:49:10.5827204Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-09-07T06:49:10.5827413Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-09-07T06:49:10.5827628Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-09-07T06:49:10.5827845Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-09-07T06:49:10.5828052Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-09-07T06:49:10.5828271Z * [new branch] gh/williamwen42/266/base -> origin/gh/williamwen42/266/base 2025-09-07T06:49:10.5828521Z * [new branch] gh/williamwen42/266/head -> origin/gh/williamwen42/266/head 2025-09-07T06:49:10.5828732Z * [new branch] gh/williamwen42/266/orig -> origin/gh/williamwen42/266/orig 2025-09-07T06:49:10.5828948Z * [new branch] gh/williamwen42/267/base -> origin/gh/williamwen42/267/base 2025-09-07T06:49:10.5829195Z * [new branch] gh/williamwen42/267/head -> origin/gh/williamwen42/267/head 2025-09-07T06:49:10.5829408Z * [new branch] gh/williamwen42/267/orig -> origin/gh/williamwen42/267/orig 2025-09-07T06:49:10.5829632Z * [new branch] gh/williamwen42/270/base -> origin/gh/williamwen42/270/base 2025-09-07T06:49:10.5829840Z * [new branch] gh/williamwen42/270/head -> origin/gh/williamwen42/270/head 2025-09-07T06:49:10.5830055Z * [new branch] gh/williamwen42/270/orig -> origin/gh/williamwen42/270/orig 2025-09-07T06:49:10.5830265Z * [new branch] gh/williamwen42/271/base -> origin/gh/williamwen42/271/base 2025-09-07T06:49:10.5830484Z * [new branch] gh/williamwen42/271/head -> origin/gh/williamwen42/271/head 2025-09-07T06:49:10.5830691Z * [new branch] gh/williamwen42/271/orig -> origin/gh/williamwen42/271/orig 2025-09-07T06:49:10.5830904Z * [new branch] gh/williamwen42/272/base -> origin/gh/williamwen42/272/base 2025-09-07T06:49:10.5831134Z * [new branch] gh/williamwen42/272/head -> origin/gh/williamwen42/272/head 2025-09-07T06:49:10.5831412Z * [new branch] gh/williamwen42/272/orig -> origin/gh/williamwen42/272/orig 2025-09-07T06:49:10.5831624Z * [new branch] gh/williamwen42/274/base -> origin/gh/williamwen42/274/base 2025-09-07T06:49:10.5831843Z * [new branch] gh/williamwen42/274/head -> origin/gh/williamwen42/274/head 2025-09-07T06:49:10.5832063Z * [new branch] gh/williamwen42/274/orig -> origin/gh/williamwen42/274/orig 2025-09-07T06:49:10.5832271Z * [new branch] gh/williamwen42/275/base -> origin/gh/williamwen42/275/base 2025-09-07T06:49:10.5832482Z * [new branch] gh/williamwen42/275/head -> origin/gh/williamwen42/275/head 2025-09-07T06:49:10.5832690Z * [new branch] gh/williamwen42/276/base -> origin/gh/williamwen42/276/base 2025-09-07T06:49:10.5832899Z * [new branch] gh/williamwen42/276/head -> origin/gh/williamwen42/276/head 2025-09-07T06:49:10.5833121Z * [new branch] gh/williamwen42/276/orig -> origin/gh/williamwen42/276/orig 2025-09-07T06:49:10.5833336Z * [new branch] gh/williamwen42/277/base -> origin/gh/williamwen42/277/base 2025-09-07T06:49:10.5833548Z * [new branch] gh/williamwen42/277/head -> origin/gh/williamwen42/277/head 2025-09-07T06:49:10.5834361Z * [new branch] gh/williamwen42/277/orig -> origin/gh/williamwen42/277/orig 2025-09-07T06:49:10.5834617Z * [new branch] gh/williamwen42/278/base -> origin/gh/williamwen42/278/base 2025-09-07T06:49:10.5834825Z * [new branch] gh/williamwen42/278/head -> origin/gh/williamwen42/278/head 2025-09-07T06:49:10.5835084Z * [new branch] gh/williamwen42/278/orig -> origin/gh/williamwen42/278/orig 2025-09-07T06:49:10.5835297Z * [new branch] gh/williamwen42/279/base -> origin/gh/williamwen42/279/base 2025-09-07T06:49:10.5835503Z * [new branch] gh/williamwen42/279/head -> origin/gh/williamwen42/279/head 2025-09-07T06:49:10.5835724Z * [new branch] gh/williamwen42/279/orig -> origin/gh/williamwen42/279/orig 2025-09-07T06:49:10.5835937Z * [new branch] gh/williamwen42/280/base -> origin/gh/williamwen42/280/base 2025-09-07T06:49:10.5836149Z * [new branch] gh/williamwen42/280/head -> origin/gh/williamwen42/280/head 2025-09-07T06:49:10.5836362Z * [new branch] gh/williamwen42/280/orig -> origin/gh/williamwen42/280/orig 2025-09-07T06:49:10.5836579Z * [new branch] gh/williamwen42/281/base -> origin/gh/williamwen42/281/base 2025-09-07T06:49:10.5836789Z * [new branch] gh/williamwen42/281/head -> origin/gh/williamwen42/281/head 2025-09-07T06:49:10.5836995Z * [new branch] gh/williamwen42/281/orig -> origin/gh/williamwen42/281/orig 2025-09-07T06:49:10.5837209Z * [new branch] gh/williamwen42/282/base -> origin/gh/williamwen42/282/base 2025-09-07T06:49:10.5837415Z * [new branch] gh/williamwen42/282/head -> origin/gh/williamwen42/282/head 2025-09-07T06:49:10.5837628Z * [new branch] gh/williamwen42/282/orig -> origin/gh/williamwen42/282/orig 2025-09-07T06:49:10.5837839Z * [new branch] gh/williamwen42/283/base -> origin/gh/williamwen42/283/base 2025-09-07T06:49:10.5838049Z * [new branch] gh/williamwen42/283/head -> origin/gh/williamwen42/283/head 2025-09-07T06:49:10.5838258Z * [new branch] gh/williamwen42/283/orig -> origin/gh/williamwen42/283/orig 2025-09-07T06:49:10.5838471Z * [new branch] gh/williamwen42/284/base -> origin/gh/williamwen42/284/base 2025-09-07T06:49:10.5838677Z * [new branch] gh/williamwen42/284/head -> origin/gh/williamwen42/284/head 2025-09-07T06:49:10.5838887Z * [new branch] gh/williamwen42/284/orig -> origin/gh/williamwen42/284/orig 2025-09-07T06:49:10.5839102Z * [new branch] gh/williamwen42/285/base -> origin/gh/williamwen42/285/base 2025-09-07T06:49:10.5839392Z * [new branch] gh/williamwen42/285/head -> origin/gh/williamwen42/285/head 2025-09-07T06:49:10.5839603Z * [new branch] gh/williamwen42/285/orig -> origin/gh/williamwen42/285/orig 2025-09-07T06:49:10.5839823Z * [new branch] gh/williamwen42/286/base -> origin/gh/williamwen42/286/base 2025-09-07T06:49:10.5840035Z * [new branch] gh/williamwen42/286/head -> origin/gh/williamwen42/286/head 2025-09-07T06:49:10.5840252Z * [new branch] gh/williamwen42/286/orig -> origin/gh/williamwen42/286/orig 2025-09-07T06:49:10.5840508Z * [new branch] gh/williamwen42/287/base -> origin/gh/williamwen42/287/base 2025-09-07T06:49:10.5840719Z * [new branch] gh/williamwen42/287/head -> origin/gh/williamwen42/287/head 2025-09-07T06:49:10.5840966Z * [new branch] gh/williamwen42/287/orig -> origin/gh/williamwen42/287/orig 2025-09-07T06:49:10.5841185Z * [new branch] gh/williamwen42/288/base -> origin/gh/williamwen42/288/base 2025-09-07T06:49:10.5841395Z * [new branch] gh/williamwen42/288/head -> origin/gh/williamwen42/288/head 2025-09-07T06:49:10.5841608Z * [new branch] gh/williamwen42/288/orig -> origin/gh/williamwen42/288/orig 2025-09-07T06:49:10.5841888Z * [new branch] gh/williamwen42/289/base -> origin/gh/williamwen42/289/base 2025-09-07T06:49:10.5842101Z * [new branch] gh/williamwen42/289/head -> origin/gh/williamwen42/289/head 2025-09-07T06:49:10.5842306Z * [new branch] gh/williamwen42/289/orig -> origin/gh/williamwen42/289/orig 2025-09-07T06:49:10.5842483Z * [new branch] gh/wychi/1/base -> origin/gh/wychi/1/base 2025-09-07T06:49:10.5842661Z * [new branch] gh/wychi/1/head -> origin/gh/wychi/1/head 2025-09-07T06:49:10.5842835Z * [new branch] gh/wychi/1/orig -> origin/gh/wychi/1/orig 2025-09-07T06:49:10.5843020Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-09-07T06:49:10.5843215Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-09-07T06:49:10.5843392Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-09-07T06:49:10.5843569Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-09-07T06:49:10.5843763Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-09-07T06:49:10.5843936Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-09-07T06:49:10.5844112Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-09-07T06:49:10.5844294Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-09-07T06:49:10.5844541Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-09-07T06:49:10.5844727Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-09-07T06:49:10.5844911Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-09-07T06:49:10.5845092Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-09-07T06:49:10.5845274Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-09-07T06:49:10.5845454Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-09-07T06:49:10.5845641Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-09-07T06:49:10.5845821Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-09-07T06:49:10.5845997Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-09-07T06:49:10.5846222Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-09-07T06:49:10.5846842Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-09-07T06:49:10.5847032Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-09-07T06:49:10.5847219Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-09-07T06:49:10.5847396Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-09-07T06:49:10.5847572Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-09-07T06:49:10.5847754Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-09-07T06:49:10.5847928Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-09-07T06:49:10.5848103Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-09-07T06:49:10.5848287Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-09-07T06:49:10.5848470Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-09-07T06:49:10.5848644Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-09-07T06:49:10.5848895Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-09-07T06:49:10.5849071Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-09-07T06:49:10.5849244Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-09-07T06:49:10.5849431Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-09-07T06:49:10.5849607Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-09-07T06:49:10.5849780Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-09-07T06:49:10.5849953Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-09-07T06:49:10.5850149Z * [new branch] gh/xmfan/274/base -> origin/gh/xmfan/274/base 2025-09-07T06:49:10.5850324Z * [new branch] gh/xmfan/274/head -> origin/gh/xmfan/274/head 2025-09-07T06:49:10.5850508Z * [new branch] gh/xmfan/274/orig -> origin/gh/xmfan/274/orig 2025-09-07T06:49:10.5850697Z * [new branch] gh/xmfan/276/base -> origin/gh/xmfan/276/base 2025-09-07T06:49:10.5850873Z * [new branch] gh/xmfan/276/head -> origin/gh/xmfan/276/head 2025-09-07T06:49:10.5851052Z * [new branch] gh/xmfan/276/orig -> origin/gh/xmfan/276/orig 2025-09-07T06:49:10.5851239Z * [new branch] gh/xmfan/277/base -> origin/gh/xmfan/277/base 2025-09-07T06:49:10.5851413Z * [new branch] gh/xmfan/277/head -> origin/gh/xmfan/277/head 2025-09-07T06:49:10.5851588Z * [new branch] gh/xmfan/277/orig -> origin/gh/xmfan/277/orig 2025-09-07T06:49:10.5851782Z * [new branch] gh/xmfan/278/base -> origin/gh/xmfan/278/base 2025-09-07T06:49:10.5851955Z * [new branch] gh/xmfan/278/head -> origin/gh/xmfan/278/head 2025-09-07T06:49:10.5852181Z * [new branch] gh/xmfan/278/orig -> origin/gh/xmfan/278/orig 2025-09-07T06:49:10.5852373Z * [new branch] gh/xmfan/279/base -> origin/gh/xmfan/279/base 2025-09-07T06:49:10.5852581Z * [new branch] gh/xmfan/279/head -> origin/gh/xmfan/279/head 2025-09-07T06:49:10.5852755Z * [new branch] gh/xmfan/279/orig -> origin/gh/xmfan/279/orig 2025-09-07T06:49:10.5852941Z * [new branch] gh/xmfan/280/base -> origin/gh/xmfan/280/base 2025-09-07T06:49:10.5853115Z * [new branch] gh/xmfan/280/head -> origin/gh/xmfan/280/head 2025-09-07T06:49:10.5853289Z * [new branch] gh/xmfan/280/orig -> origin/gh/xmfan/280/orig 2025-09-07T06:49:10.5853532Z * [new branch] gh/xmfan/281/base -> origin/gh/xmfan/281/base 2025-09-07T06:49:10.5853722Z * [new branch] gh/xmfan/281/head -> origin/gh/xmfan/281/head 2025-09-07T06:49:10.5853902Z * [new branch] gh/xmfan/281/orig -> origin/gh/xmfan/281/orig 2025-09-07T06:49:10.5854078Z * [new branch] gh/xmfan/282/base -> origin/gh/xmfan/282/base 2025-09-07T06:49:10.5854269Z * [new branch] gh/xmfan/282/head -> origin/gh/xmfan/282/head 2025-09-07T06:49:10.5854448Z * [new branch] gh/xmfan/283/base -> origin/gh/xmfan/283/base 2025-09-07T06:49:10.5854627Z * [new branch] gh/xmfan/283/head -> origin/gh/xmfan/283/head 2025-09-07T06:49:10.5854809Z * [new branch] gh/xmfan/283/orig -> origin/gh/xmfan/283/orig 2025-09-07T06:49:10.5855031Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-09-07T06:49:10.5855244Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-09-07T06:49:10.5855457Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-09-07T06:49:10.5855733Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-09-07T06:49:10.5855939Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-09-07T06:49:10.5856151Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-09-07T06:49:10.5856353Z * [new branch] gh/xuanzhang816/22/base -> origin/gh/xuanzhang816/22/base 2025-09-07T06:49:10.5856558Z * [new branch] gh/xuanzhang816/22/head -> origin/gh/xuanzhang816/22/head 2025-09-07T06:49:10.5856771Z * [new branch] gh/xuanzhang816/22/orig -> origin/gh/xuanzhang816/22/orig 2025-09-07T06:49:10.5856977Z * [new branch] gh/xuanzhang816/23/base -> origin/gh/xuanzhang816/23/base 2025-09-07T06:49:10.5857181Z * [new branch] gh/xuanzhang816/23/head -> origin/gh/xuanzhang816/23/head 2025-09-07T06:49:10.5857400Z * [new branch] gh/xuanzhang816/23/orig -> origin/gh/xuanzhang816/23/orig 2025-09-07T06:49:10.5857603Z * [new branch] gh/xuanzhang816/24/base -> origin/gh/xuanzhang816/24/base 2025-09-07T06:49:10.5857809Z * [new branch] gh/xuanzhang816/24/head -> origin/gh/xuanzhang816/24/head 2025-09-07T06:49:10.5858062Z * [new branch] gh/xuanzhang816/24/orig -> origin/gh/xuanzhang816/24/orig 2025-09-07T06:49:10.5858266Z * [new branch] gh/xuanzhang816/25/base -> origin/gh/xuanzhang816/25/base 2025-09-07T06:49:10.5858504Z * [new branch] gh/xuanzhang816/25/head -> origin/gh/xuanzhang816/25/head 2025-09-07T06:49:10.5858723Z * [new branch] gh/xuanzhang816/25/orig -> origin/gh/xuanzhang816/25/orig 2025-09-07T06:49:10.5858925Z * [new branch] gh/xuanzhang816/26/base -> origin/gh/xuanzhang816/26/base 2025-09-07T06:49:10.5859126Z * [new branch] gh/xuanzhang816/26/head -> origin/gh/xuanzhang816/26/head 2025-09-07T06:49:10.5859344Z * [new branch] gh/xuanzhang816/26/orig -> origin/gh/xuanzhang816/26/orig 2025-09-07T06:49:10.5859538Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-09-07T06:49:10.5859730Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-09-07T06:49:10.5859915Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-09-07T06:49:10.5860107Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-09-07T06:49:10.5860299Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-09-07T06:49:10.5860553Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-09-07T06:49:10.5860748Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-09-07T06:49:10.5860937Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-09-07T06:49:10.5861120Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-09-07T06:49:10.5861310Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-09-07T06:49:10.5861495Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-09-07T06:49:10.5861678Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-09-07T06:49:10.5861873Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-09-07T06:49:10.5862057Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-09-07T06:49:10.5862246Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-09-07T06:49:10.5862441Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-09-07T06:49:10.5862692Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-09-07T06:49:10.5862876Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-09-07T06:49:10.5863071Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-09-07T06:49:10.5863254Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-09-07T06:49:10.5863438Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-09-07T06:49:10.5863632Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-09-07T06:49:10.5863824Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-09-07T06:49:10.5864055Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-09-07T06:49:10.5864242Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-09-07T06:49:10.5864478Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-09-07T06:49:10.5864668Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-09-07T06:49:10.5864853Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-09-07T06:49:10.5865047Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-09-07T06:49:10.5865236Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-09-07T06:49:10.5865418Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-09-07T06:49:10.5865615Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-09-07T06:49:10.5865801Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-09-07T06:49:10.5865992Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-09-07T06:49:10.5866185Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-09-07T06:49:10.5866371Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-09-07T06:49:10.5866555Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-09-07T06:49:10.5866757Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-09-07T06:49:10.5866941Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-09-07T06:49:10.5867125Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-09-07T06:49:10.5867389Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-09-07T06:49:10.5867577Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-09-07T06:49:10.5867768Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-09-07T06:49:10.5867955Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-09-07T06:49:10.5868152Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-09-07T06:49:10.5868337Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-09-07T06:49:10.5868526Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-09-07T06:49:10.5868724Z * [new branch] gh/yangw-dev/12/base -> origin/gh/yangw-dev/12/base 2025-09-07T06:49:10.5868914Z * [new branch] gh/yangw-dev/12/head -> origin/gh/yangw-dev/12/head 2025-09-07T06:49:10.5869103Z * [new branch] gh/yangw-dev/12/orig -> origin/gh/yangw-dev/12/orig 2025-09-07T06:49:10.5869299Z * [new branch] gh/yangw-dev/13/base -> origin/gh/yangw-dev/13/base 2025-09-07T06:49:10.5869546Z * [new branch] gh/yangw-dev/13/head -> origin/gh/yangw-dev/13/head 2025-09-07T06:49:10.5869731Z * [new branch] gh/yangw-dev/13/orig -> origin/gh/yangw-dev/13/orig 2025-09-07T06:49:10.5869964Z * [new branch] gh/yangw-dev/14/base -> origin/gh/yangw-dev/14/base 2025-09-07T06:49:10.5870156Z * [new branch] gh/yangw-dev/14/head -> origin/gh/yangw-dev/14/head 2025-09-07T06:49:10.5870377Z * [new branch] gh/yangw-dev/14/orig -> origin/gh/yangw-dev/14/orig 2025-09-07T06:49:10.5870574Z * [new branch] gh/yangw-dev/15/base -> origin/gh/yangw-dev/15/base 2025-09-07T06:49:10.5870765Z * [new branch] gh/yangw-dev/15/head -> origin/gh/yangw-dev/15/head 2025-09-07T06:49:10.5870953Z * [new branch] gh/yangw-dev/15/orig -> origin/gh/yangw-dev/15/orig 2025-09-07T06:49:10.5871155Z * [new branch] gh/yangw-dev/16/base -> origin/gh/yangw-dev/16/base 2025-09-07T06:49:10.5871341Z * [new branch] gh/yangw-dev/16/head -> origin/gh/yangw-dev/16/head 2025-09-07T06:49:10.5871531Z * [new branch] gh/yangw-dev/16/orig -> origin/gh/yangw-dev/16/orig 2025-09-07T06:49:10.5871723Z * [new branch] gh/yangw-dev/17/base -> origin/gh/yangw-dev/17/base 2025-09-07T06:49:10.5871906Z * [new branch] gh/yangw-dev/17/head -> origin/gh/yangw-dev/17/head 2025-09-07T06:49:10.5872092Z * [new branch] gh/yangw-dev/17/orig -> origin/gh/yangw-dev/17/orig 2025-09-07T06:49:10.5872276Z * [new branch] gh/yangw-dev/18/base -> origin/gh/yangw-dev/18/base 2025-09-07T06:49:10.5872471Z * [new branch] gh/yangw-dev/18/head -> origin/gh/yangw-dev/18/head 2025-09-07T06:49:10.5872654Z * [new branch] gh/yangw-dev/18/orig -> origin/gh/yangw-dev/18/orig 2025-09-07T06:49:10.5872842Z * [new branch] gh/yangw-dev/19/base -> origin/gh/yangw-dev/19/base 2025-09-07T06:49:10.5873032Z * [new branch] gh/yangw-dev/19/head -> origin/gh/yangw-dev/19/head 2025-09-07T06:49:10.5873217Z * [new branch] gh/yangw-dev/19/orig -> origin/gh/yangw-dev/19/orig 2025-09-07T06:49:10.5873402Z * [new branch] gh/yangw-dev/20/base -> origin/gh/yangw-dev/20/base 2025-09-07T06:49:10.5873597Z * [new branch] gh/yangw-dev/20/head -> origin/gh/yangw-dev/20/head 2025-09-07T06:49:10.5873780Z * [new branch] gh/yangw-dev/20/orig -> origin/gh/yangw-dev/20/orig 2025-09-07T06:49:10.5874035Z * [new branch] gh/yangw-dev/21/base -> origin/gh/yangw-dev/21/base 2025-09-07T06:49:10.5874230Z * [new branch] gh/yangw-dev/21/head -> origin/gh/yangw-dev/21/head 2025-09-07T06:49:10.5874420Z * [new branch] gh/yangw-dev/21/orig -> origin/gh/yangw-dev/21/orig 2025-09-07T06:49:10.5874613Z * [new branch] gh/yangw-dev/22/base -> origin/gh/yangw-dev/22/base 2025-09-07T06:49:10.5874803Z * [new branch] gh/yangw-dev/22/head -> origin/gh/yangw-dev/22/head 2025-09-07T06:49:10.5874990Z * [new branch] gh/yangw-dev/22/orig -> origin/gh/yangw-dev/22/orig 2025-09-07T06:49:10.5875177Z * [new branch] gh/yangw-dev/23/base -> origin/gh/yangw-dev/23/base 2025-09-07T06:49:10.5875367Z * [new branch] gh/yangw-dev/23/head -> origin/gh/yangw-dev/23/head 2025-09-07T06:49:10.5875549Z * [new branch] gh/yangw-dev/23/orig -> origin/gh/yangw-dev/23/orig 2025-09-07T06:49:10.5875785Z * [new branch] gh/yangw-dev/24/base -> origin/gh/yangw-dev/24/base 2025-09-07T06:49:10.5875980Z * [new branch] gh/yangw-dev/24/head -> origin/gh/yangw-dev/24/head 2025-09-07T06:49:10.5876273Z * [new branch] gh/yangw-dev/24/orig -> origin/gh/yangw-dev/24/orig 2025-09-07T06:49:10.5876461Z * [new branch] gh/yangw-dev/25/base -> origin/gh/yangw-dev/25/base 2025-09-07T06:49:10.5876647Z * [new branch] gh/yangw-dev/25/head -> origin/gh/yangw-dev/25/head 2025-09-07T06:49:10.5876854Z * [new branch] gh/yangw-dev/25/orig -> origin/gh/yangw-dev/25/orig 2025-09-07T06:49:10.5877037Z * [new branch] gh/yangw-dev/26/base -> origin/gh/yangw-dev/26/base 2025-09-07T06:49:10.5877225Z * [new branch] gh/yangw-dev/26/head -> origin/gh/yangw-dev/26/head 2025-09-07T06:49:10.5877423Z * [new branch] gh/yangw-dev/26/orig -> origin/gh/yangw-dev/26/orig 2025-09-07T06:49:10.5877611Z * [new branch] gh/yangw-dev/27/base -> origin/gh/yangw-dev/27/base 2025-09-07T06:49:10.5877800Z * [new branch] gh/yangw-dev/27/head -> origin/gh/yangw-dev/27/head 2025-09-07T06:49:10.5878001Z * [new branch] gh/yangw-dev/27/orig -> origin/gh/yangw-dev/27/orig 2025-09-07T06:49:10.5878182Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-09-07T06:49:10.5878357Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-09-07T06:49:10.5878546Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-09-07T06:49:10.5878719Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-09-07T06:49:10.5878893Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-09-07T06:49:10.5879080Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-09-07T06:49:10.5879252Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-09-07T06:49:10.5879423Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-09-07T06:49:10.5879613Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-09-07T06:49:10.5879789Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-09-07T06:49:10.5879967Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-09-07T06:49:10.5880148Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-09-07T06:49:10.5880319Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-09-07T06:49:10.5880491Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-09-07T06:49:10.5880731Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-09-07T06:49:10.5880914Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-09-07T06:49:10.5881084Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-09-07T06:49:10.5881260Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-09-07T06:49:10.5881448Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-09-07T06:49:10.5881666Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-09-07T06:49:10.5881845Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-09-07T06:49:10.5882071Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-09-07T06:49:10.5882245Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-09-07T06:49:10.5882426Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-09-07T06:49:10.5882606Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-09-07T06:49:10.5882784Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-09-07T06:49:10.5883026Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-09-07T06:49:10.5883205Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-09-07T06:49:10.5883378Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-09-07T06:49:10.5883552Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-09-07T06:49:10.5883733Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-09-07T06:49:10.5883907Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-09-07T06:49:10.5884084Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-09-07T06:49:10.5884258Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-09-07T06:49:10.5884444Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-09-07T06:49:10.5884681Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-09-07T06:49:10.5884856Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-09-07T06:49:10.5885044Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-09-07T06:49:10.5885218Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-09-07T06:49:10.5885393Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-09-07T06:49:10.5885579Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-09-07T06:49:10.5885757Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-09-07T06:49:10.5885932Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-09-07T06:49:10.5886114Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-09-07T06:49:10.5886293Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-09-07T06:49:10.5886469Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-09-07T06:49:10.5886653Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-09-07T06:49:10.5886827Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-09-07T06:49:10.5887001Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-09-07T06:49:10.5887189Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-09-07T06:49:10.5887479Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-09-07T06:49:10.5887665Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-09-07T06:49:10.5887845Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-09-07T06:49:10.5888071Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-09-07T06:49:10.5888245Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-09-07T06:49:10.5888419Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-09-07T06:49:10.5888606Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-09-07T06:49:10.5888780Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-09-07T06:49:10.5888958Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-09-07T06:49:10.5889144Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-09-07T06:49:10.5889320Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-09-07T06:49:10.5889566Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-09-07T06:49:10.5889748Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-09-07T06:49:10.5889923Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-09-07T06:49:10.5890098Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-09-07T06:49:10.5890279Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-09-07T06:49:10.5890462Z * [new branch] gh/ydwu4/300/base -> origin/gh/ydwu4/300/base 2025-09-07T06:49:10.5890640Z * [new branch] gh/ydwu4/300/head -> origin/gh/ydwu4/300/head 2025-09-07T06:49:10.5890837Z * [new branch] gh/ydwu4/300/orig -> origin/gh/ydwu4/300/orig 2025-09-07T06:49:10.5891015Z * [new branch] gh/ydwu4/301/base -> origin/gh/ydwu4/301/base 2025-09-07T06:49:10.5891196Z * [new branch] gh/ydwu4/301/head -> origin/gh/ydwu4/301/head 2025-09-07T06:49:10.5891373Z * [new branch] gh/ydwu4/301/orig -> origin/gh/ydwu4/301/orig 2025-09-07T06:49:10.5891557Z * [new branch] gh/ydwu4/302/base -> origin/gh/ydwu4/302/base 2025-09-07T06:49:10.5891732Z * [new branch] gh/ydwu4/302/head -> origin/gh/ydwu4/302/head 2025-09-07T06:49:10.5891907Z * [new branch] gh/ydwu4/302/orig -> origin/gh/ydwu4/302/orig 2025-09-07T06:49:10.5892090Z * [new branch] gh/ydwu4/303/base -> origin/gh/ydwu4/303/base 2025-09-07T06:49:10.5892267Z * [new branch] gh/ydwu4/303/head -> origin/gh/ydwu4/303/head 2025-09-07T06:49:10.5892441Z * [new branch] gh/ydwu4/303/orig -> origin/gh/ydwu4/303/orig 2025-09-07T06:49:10.5892622Z * [new branch] gh/ydwu4/304/base -> origin/gh/ydwu4/304/base 2025-09-07T06:49:10.5892796Z * [new branch] gh/ydwu4/304/head -> origin/gh/ydwu4/304/head 2025-09-07T06:49:10.5892966Z * [new branch] gh/ydwu4/304/orig -> origin/gh/ydwu4/304/orig 2025-09-07T06:49:10.5893149Z * [new branch] gh/ydwu4/305/base -> origin/gh/ydwu4/305/base 2025-09-07T06:49:10.5893355Z * [new branch] gh/ydwu4/305/head -> origin/gh/ydwu4/305/head 2025-09-07T06:49:10.5893527Z * [new branch] gh/ydwu4/305/orig -> origin/gh/ydwu4/305/orig 2025-09-07T06:49:10.5893751Z * [new branch] gh/ydwu4/306/base -> origin/gh/ydwu4/306/base 2025-09-07T06:49:10.5893927Z * [new branch] gh/ydwu4/306/head -> origin/gh/ydwu4/306/head 2025-09-07T06:49:10.5894166Z * [new branch] gh/ydwu4/306/orig -> origin/gh/ydwu4/306/orig 2025-09-07T06:49:10.5894352Z * [new branch] gh/ydwu4/307/base -> origin/gh/ydwu4/307/base 2025-09-07T06:49:10.5894528Z * [new branch] gh/ydwu4/307/head -> origin/gh/ydwu4/307/head 2025-09-07T06:49:10.5894705Z * [new branch] gh/ydwu4/307/orig -> origin/gh/ydwu4/307/orig 2025-09-07T06:49:10.5894880Z * [new branch] gh/ydwu4/308/base -> origin/gh/ydwu4/308/base 2025-09-07T06:49:10.5895060Z * [new branch] gh/ydwu4/308/head -> origin/gh/ydwu4/308/head 2025-09-07T06:49:10.5895232Z * [new branch] gh/ydwu4/308/orig -> origin/gh/ydwu4/308/orig 2025-09-07T06:49:10.5895404Z * [new branch] gh/ydwu4/309/base -> origin/gh/ydwu4/309/base 2025-09-07T06:49:10.5895588Z * [new branch] gh/ydwu4/309/head -> origin/gh/ydwu4/309/head 2025-09-07T06:49:10.5895766Z * [new branch] gh/ydwu4/309/orig -> origin/gh/ydwu4/309/orig 2025-09-07T06:49:10.5895938Z * [new branch] gh/ydwu4/310/base -> origin/gh/ydwu4/310/base 2025-09-07T06:49:10.5896183Z * [new branch] gh/ydwu4/310/head -> origin/gh/ydwu4/310/head 2025-09-07T06:49:10.5896355Z * [new branch] gh/ydwu4/310/orig -> origin/gh/ydwu4/310/orig 2025-09-07T06:49:10.5896526Z * [new branch] gh/ydwu4/311/base -> origin/gh/ydwu4/311/base 2025-09-07T06:49:10.5896705Z * [new branch] gh/ydwu4/311/head -> origin/gh/ydwu4/311/head 2025-09-07T06:49:10.5896878Z * [new branch] gh/ydwu4/311/orig -> origin/gh/ydwu4/311/orig 2025-09-07T06:49:10.5897051Z * [new branch] gh/ydwu4/312/base -> origin/gh/ydwu4/312/base 2025-09-07T06:49:10.5897239Z * [new branch] gh/ydwu4/312/head -> origin/gh/ydwu4/312/head 2025-09-07T06:49:10.5897413Z * [new branch] gh/ydwu4/312/orig -> origin/gh/ydwu4/312/orig 2025-09-07T06:49:10.5897585Z * [new branch] gh/ydwu4/313/base -> origin/gh/ydwu4/313/base 2025-09-07T06:49:10.5897770Z * [new branch] gh/ydwu4/313/head -> origin/gh/ydwu4/313/head 2025-09-07T06:49:10.5897943Z * [new branch] gh/ydwu4/313/orig -> origin/gh/ydwu4/313/orig 2025-09-07T06:49:10.5898114Z * [new branch] gh/ydwu4/314/base -> origin/gh/ydwu4/314/base 2025-09-07T06:49:10.5898284Z * [new branch] gh/ydwu4/314/head -> origin/gh/ydwu4/314/head 2025-09-07T06:49:10.5898468Z * [new branch] gh/ydwu4/314/orig -> origin/gh/ydwu4/314/orig 2025-09-07T06:49:10.5898641Z * [new branch] gh/ydwu4/315/base -> origin/gh/ydwu4/315/base 2025-09-07T06:49:10.5898816Z * [new branch] gh/ydwu4/315/head -> origin/gh/ydwu4/315/head 2025-09-07T06:49:10.5899036Z * [new branch] gh/ydwu4/315/orig -> origin/gh/ydwu4/315/orig 2025-09-07T06:49:10.5899212Z * [new branch] gh/ydwu4/316/base -> origin/gh/ydwu4/316/base 2025-09-07T06:49:10.5899426Z * [new branch] gh/ydwu4/316/head -> origin/gh/ydwu4/316/head 2025-09-07T06:49:10.5899611Z * [new branch] gh/ydwu4/316/orig -> origin/gh/ydwu4/316/orig 2025-09-07T06:49:10.5899782Z * [new branch] gh/ydwu4/317/base -> origin/gh/ydwu4/317/base 2025-09-07T06:49:10.5899954Z * [new branch] gh/ydwu4/317/head -> origin/gh/ydwu4/317/head 2025-09-07T06:49:10.5900137Z * [new branch] gh/ydwu4/317/orig -> origin/gh/ydwu4/317/orig 2025-09-07T06:49:10.5900312Z * [new branch] gh/ydwu4/318/base -> origin/gh/ydwu4/318/base 2025-09-07T06:49:10.5900554Z * [new branch] gh/ydwu4/318/head -> origin/gh/ydwu4/318/head 2025-09-07T06:49:10.5900740Z * [new branch] gh/ydwu4/318/orig -> origin/gh/ydwu4/318/orig 2025-09-07T06:49:10.5900917Z * [new branch] gh/ydwu4/319/base -> origin/gh/ydwu4/319/base 2025-09-07T06:49:10.5901092Z * [new branch] gh/ydwu4/319/head -> origin/gh/ydwu4/319/head 2025-09-07T06:49:10.5901270Z * [new branch] gh/ydwu4/319/orig -> origin/gh/ydwu4/319/orig 2025-09-07T06:49:10.5901441Z * [new branch] gh/ydwu4/320/base -> origin/gh/ydwu4/320/base 2025-09-07T06:49:10.5901612Z * [new branch] gh/ydwu4/320/head -> origin/gh/ydwu4/320/head 2025-09-07T06:49:10.5901783Z * [new branch] gh/ydwu4/320/orig -> origin/gh/ydwu4/320/orig 2025-09-07T06:49:10.5901971Z * [new branch] gh/ydwu4/321/base -> origin/gh/ydwu4/321/base 2025-09-07T06:49:10.5902153Z * [new branch] gh/ydwu4/321/head -> origin/gh/ydwu4/321/head 2025-09-07T06:49:10.5902324Z * [new branch] gh/ydwu4/321/orig -> origin/gh/ydwu4/321/orig 2025-09-07T06:49:10.5902505Z * [new branch] gh/ydwu4/322/base -> origin/gh/ydwu4/322/base 2025-09-07T06:49:10.5902740Z * [new branch] gh/ydwu4/322/head -> origin/gh/ydwu4/322/head 2025-09-07T06:49:10.5902915Z * [new branch] gh/ydwu4/322/orig -> origin/gh/ydwu4/322/orig 2025-09-07T06:49:10.5903097Z * [new branch] gh/ydwu4/323/base -> origin/gh/ydwu4/323/base 2025-09-07T06:49:10.5903271Z * [new branch] gh/ydwu4/323/head -> origin/gh/ydwu4/323/head 2025-09-07T06:49:10.5903445Z * [new branch] gh/ydwu4/323/orig -> origin/gh/ydwu4/323/orig 2025-09-07T06:49:10.5903624Z * [new branch] gh/ydwu4/324/base -> origin/gh/ydwu4/324/base 2025-09-07T06:49:10.5903801Z * [new branch] gh/ydwu4/324/head -> origin/gh/ydwu4/324/head 2025-09-07T06:49:10.5903973Z * [new branch] gh/ydwu4/324/orig -> origin/gh/ydwu4/324/orig 2025-09-07T06:49:10.5904157Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-09-07T06:49:10.5904330Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-09-07T06:49:10.5904499Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-09-07T06:49:10.5904722Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-09-07T06:49:10.5904899Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-09-07T06:49:10.5905105Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-09-07T06:49:10.5905291Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-09-07T06:49:10.5905472Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-09-07T06:49:10.5905645Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-09-07T06:49:10.5905821Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-09-07T06:49:10.5906026Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-09-07T06:49:10.5906220Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-09-07T06:49:10.5906410Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-09-07T06:49:10.5906609Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-09-07T06:49:10.5906800Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-09-07T06:49:10.5906985Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-09-07T06:49:10.5907260Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-09-07T06:49:10.5907450Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-09-07T06:49:10.5907643Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-09-07T06:49:10.5907840Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-09-07T06:49:10.5908034Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-09-07T06:49:10.5908225Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-09-07T06:49:10.5908427Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-09-07T06:49:10.5908619Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-09-07T06:49:10.5908813Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-09-07T06:49:10.5909014Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-09-07T06:49:10.5909202Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-09-07T06:49:10.5909455Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-09-07T06:49:10.5909646Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-09-07T06:49:10.5909840Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-09-07T06:49:10.5910031Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-09-07T06:49:10.5910229Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-09-07T06:49:10.5910464Z * [new branch] gh/zhxchen17/34/base -> origin/gh/zhxchen17/34/base 2025-09-07T06:49:10.5910658Z * [new branch] gh/zhxchen17/34/head -> origin/gh/zhxchen17/34/head 2025-09-07T06:49:10.5910885Z * [new branch] gh/zhxchen17/35/base -> origin/gh/zhxchen17/35/base 2025-09-07T06:49:10.5911089Z * [new branch] gh/zhxchen17/35/head -> origin/gh/zhxchen17/35/head 2025-09-07T06:49:10.5911274Z * [new branch] gh/zhxchen17/37/base -> origin/gh/zhxchen17/37/base 2025-09-07T06:49:10.5911464Z * [new branch] gh/zhxchen17/37/head -> origin/gh/zhxchen17/37/head 2025-09-07T06:49:10.5911654Z * [new branch] gh/zhxchen17/37/orig -> origin/gh/zhxchen17/37/orig 2025-09-07T06:49:10.5911843Z * [new branch] gh/zhxchen17/38/base -> origin/gh/zhxchen17/38/base 2025-09-07T06:49:10.5912030Z * [new branch] gh/zhxchen17/38/head -> origin/gh/zhxchen17/38/head 2025-09-07T06:49:10.5912225Z * [new branch] gh/zhxchen17/38/orig -> origin/gh/zhxchen17/38/orig 2025-09-07T06:49:10.5912413Z * [new branch] gh/zhxchen17/39/base -> origin/gh/zhxchen17/39/base 2025-09-07T06:49:10.5912601Z * [new branch] gh/zhxchen17/39/head -> origin/gh/zhxchen17/39/head 2025-09-07T06:49:10.5912798Z * [new branch] gh/zhxchen17/39/orig -> origin/gh/zhxchen17/39/orig 2025-09-07T06:49:10.5912984Z * [new branch] gh/zhxchen17/40/base -> origin/gh/zhxchen17/40/base 2025-09-07T06:49:10.5913169Z * [new branch] gh/zhxchen17/40/head -> origin/gh/zhxchen17/40/head 2025-09-07T06:49:10.5913358Z * [new branch] gh/zhxchen17/40/orig -> origin/gh/zhxchen17/40/orig 2025-09-07T06:49:10.5913543Z * [new branch] gh/zhxchen17/41/base -> origin/gh/zhxchen17/41/base 2025-09-07T06:49:10.5913729Z * [new branch] gh/zhxchen17/41/head -> origin/gh/zhxchen17/41/head 2025-09-07T06:49:10.5913993Z * [new branch] gh/zhxchen17/41/orig -> origin/gh/zhxchen17/41/orig 2025-09-07T06:49:10.5914189Z * [new branch] gh/zhxchen17/42/base -> origin/gh/zhxchen17/42/base 2025-09-07T06:49:10.5914377Z * [new branch] gh/zhxchen17/42/head -> origin/gh/zhxchen17/42/head 2025-09-07T06:49:10.5914568Z * [new branch] gh/zhxchen17/42/orig -> origin/gh/zhxchen17/42/orig 2025-09-07T06:49:10.5914766Z * [new branch] gh/zhxchen17/43/base -> origin/gh/zhxchen17/43/base 2025-09-07T06:49:10.5914951Z * [new branch] gh/zhxchen17/43/head -> origin/gh/zhxchen17/43/head 2025-09-07T06:49:10.5915138Z * [new branch] gh/zhxchen17/43/orig -> origin/gh/zhxchen17/43/orig 2025-09-07T06:49:10.5915332Z * [new branch] gh/zhxchen17/44/base -> origin/gh/zhxchen17/44/base 2025-09-07T06:49:10.5915520Z * [new branch] gh/zhxchen17/44/head -> origin/gh/zhxchen17/44/head 2025-09-07T06:49:10.5915712Z * [new branch] gh/zhxchen17/44/orig -> origin/gh/zhxchen17/44/orig 2025-09-07T06:49:10.5915915Z * [new branch] gh/zhxchen17/45/base -> origin/gh/zhxchen17/45/base 2025-09-07T06:49:10.5916145Z * [new branch] gh/zhxchen17/45/head -> origin/gh/zhxchen17/45/head 2025-09-07T06:49:10.5916398Z * [new branch] gh/zhxchen17/45/orig -> origin/gh/zhxchen17/45/orig 2025-09-07T06:49:10.5916625Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-09-07T06:49:10.5916808Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-09-07T06:49:10.5916983Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-09-07T06:49:10.5917166Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-09-07T06:49:10.5917342Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-09-07T06:49:10.5917523Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-09-07T06:49:10.5917706Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-09-07T06:49:10.5917888Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-09-07T06:49:10.5918066Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-09-07T06:49:10.5918241Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-09-07T06:49:10.5918425Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-09-07T06:49:10.5918601Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-09-07T06:49:10.5918775Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-09-07T06:49:10.5918960Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-09-07T06:49:10.5919141Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-09-07T06:49:10.5919316Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-09-07T06:49:10.5919502Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-09-07T06:49:10.5919679Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-09-07T06:49:10.5919853Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-09-07T06:49:10.5920036Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-09-07T06:49:10.5920212Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-09-07T06:49:10.5920387Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-09-07T06:49:10.5920572Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-09-07T06:49:10.5920817Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-09-07T06:49:10.5920996Z * [new branch] gh/zklaus/19/base -> origin/gh/zklaus/19/base 2025-09-07T06:49:10.5921182Z * [new branch] gh/zklaus/19/head -> origin/gh/zklaus/19/head 2025-09-07T06:49:10.5921357Z * [new branch] gh/zklaus/19/orig -> origin/gh/zklaus/19/orig 2025-09-07T06:49:10.5921533Z * [new branch] gh/zklaus/20/base -> origin/gh/zklaus/20/base 2025-09-07T06:49:10.5921711Z * [new branch] gh/zklaus/20/head -> origin/gh/zklaus/20/head 2025-09-07T06:49:10.5921935Z * [new branch] gh/zklaus/20/orig -> origin/gh/zklaus/20/orig 2025-09-07T06:49:10.5922115Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-09-07T06:49:10.5922295Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-09-07T06:49:10.5922520Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-09-07T06:49:10.5922698Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-09-07T06:49:10.5922942Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-09-07T06:49:10.5923130Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-09-07T06:49:10.5923321Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-09-07T06:49:10.5923512Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-09-07T06:49:10.5923702Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-09-07T06:49:10.5923890Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-09-07T06:49:10.5924083Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-09-07T06:49:10.5924281Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-09-07T06:49:10.5924463Z * [new branch] gh/zou3519/1191/base -> origin/gh/zou3519/1191/base 2025-09-07T06:49:10.5924729Z * [new branch] gh/zou3519/1191/head -> origin/gh/zou3519/1191/head 2025-09-07T06:49:10.5924926Z * [new branch] gh/zou3519/1191/orig -> origin/gh/zou3519/1191/orig 2025-09-07T06:49:10.5925107Z * [new branch] gh/zou3519/1192/base -> origin/gh/zou3519/1192/base 2025-09-07T06:49:10.5925293Z * [new branch] gh/zou3519/1192/head -> origin/gh/zou3519/1192/head 2025-09-07T06:49:10.5925486Z * [new branch] gh/zou3519/1192/orig -> origin/gh/zou3519/1192/orig 2025-09-07T06:49:10.5925671Z * [new branch] gh/zou3519/1193/base -> origin/gh/zou3519/1193/base 2025-09-07T06:49:10.5925859Z * [new branch] gh/zou3519/1193/head -> origin/gh/zou3519/1193/head 2025-09-07T06:49:10.5926044Z * [new branch] gh/zou3519/1193/orig -> origin/gh/zou3519/1193/orig 2025-09-07T06:49:10.5926241Z * [new branch] gh/zou3519/1194/base -> origin/gh/zou3519/1194/base 2025-09-07T06:49:10.5926426Z * [new branch] gh/zou3519/1194/head -> origin/gh/zou3519/1194/head 2025-09-07T06:49:10.5926611Z * [new branch] gh/zou3519/1194/orig -> origin/gh/zou3519/1194/orig 2025-09-07T06:49:10.5926810Z * [new branch] gh/zou3519/1195/base -> origin/gh/zou3519/1195/base 2025-09-07T06:49:10.5926991Z * [new branch] gh/zou3519/1195/head -> origin/gh/zou3519/1195/head 2025-09-07T06:49:10.5927177Z * [new branch] gh/zou3519/1195/orig -> origin/gh/zou3519/1195/orig 2025-09-07T06:49:10.5927365Z * [new branch] gh/zou3519/1196/base -> origin/gh/zou3519/1196/base 2025-09-07T06:49:10.5927615Z * [new branch] gh/zou3519/1196/head -> origin/gh/zou3519/1196/head 2025-09-07T06:49:10.5927799Z * [new branch] gh/zou3519/1196/orig -> origin/gh/zou3519/1196/orig 2025-09-07T06:49:10.5928037Z * [new branch] gh/zou3519/1197/base -> origin/gh/zou3519/1197/base 2025-09-07T06:49:10.5928219Z * [new branch] gh/zou3519/1197/head -> origin/gh/zou3519/1197/head 2025-09-07T06:49:10.5928437Z * [new branch] gh/zou3519/1197/orig -> origin/gh/zou3519/1197/orig 2025-09-07T06:49:10.5928633Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-09-07T06:49:10.5928807Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-09-07T06:49:10.5928986Z * [new branch] gh/zpcore/10/base -> origin/gh/zpcore/10/base 2025-09-07T06:49:10.5929177Z * [new branch] gh/zpcore/10/head -> origin/gh/zpcore/10/head 2025-09-07T06:49:10.5929355Z * [new branch] gh/zpcore/10/orig -> origin/gh/zpcore/10/orig 2025-09-07T06:49:10.5929532Z * [new branch] gh/zpcore/11/base -> origin/gh/zpcore/11/base 2025-09-07T06:49:10.5929777Z * [new branch] gh/zpcore/11/head -> origin/gh/zpcore/11/head 2025-09-07T06:49:10.5929967Z * [new branch] gh/zpcore/11/orig -> origin/gh/zpcore/11/orig 2025-09-07T06:49:10.5930143Z * [new branch] gh/zpcore/12/base -> origin/gh/zpcore/12/base 2025-09-07T06:49:10.5930322Z * [new branch] gh/zpcore/12/head -> origin/gh/zpcore/12/head 2025-09-07T06:49:10.5930505Z * [new branch] gh/zpcore/12/orig -> origin/gh/zpcore/12/orig 2025-09-07T06:49:10.5930684Z * [new branch] gh/zpcore/13/base -> origin/gh/zpcore/13/base 2025-09-07T06:49:10.5930859Z * [new branch] gh/zpcore/13/head -> origin/gh/zpcore/13/head 2025-09-07T06:49:10.5931050Z * [new branch] gh/zpcore/13/orig -> origin/gh/zpcore/13/orig 2025-09-07T06:49:10.5931227Z * [new branch] gh/zpcore/14/base -> origin/gh/zpcore/14/base 2025-09-07T06:49:10.5931408Z * [new branch] gh/zpcore/14/head -> origin/gh/zpcore/14/head 2025-09-07T06:49:10.5931590Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-09-07T06:49:10.5931763Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-09-07T06:49:10.5931937Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-09-07T06:49:10.5932122Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-09-07T06:49:10.5932299Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-09-07T06:49:10.5932476Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-09-07T06:49:10.5932653Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-09-07T06:49:10.5932826Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-09-07T06:49:10.5933002Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-09-07T06:49:10.5933175Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-09-07T06:49:10.5933356Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-09-07T06:49:10.5933527Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-09-07T06:49:10.5933702Z * [new branch] gh/zpcore/8/base -> origin/gh/zpcore/8/base 2025-09-07T06:49:10.5933921Z * [new branch] gh/zpcore/8/head -> origin/gh/zpcore/8/head 2025-09-07T06:49:10.5934092Z * [new branch] google-main -> origin/google-main 2025-09-07T06:49:10.5934417Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-09-07T06:49:10.5934623Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-09-07T06:49:10.5934812Z * [new branch] guangyey/reimport -> origin/guangyey/reimport 2025-09-07T06:49:10.5935000Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-09-07T06:49:10.5935368Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-09-07T06:49:10.5935594Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-09-07T06:49:10.5935755Z * [new branch] hc_baseline -> origin/hc_baseline 2025-09-07T06:49:10.5935918Z * [new branch] hf_update -> origin/hf_update 2025-09-07T06:49:10.5936092Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-09-07T06:49:10.5936241Z * [new branch] hhh_rand -> origin/hhh_rand 2025-09-07T06:49:10.5936413Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-09-07T06:49:10.5936675Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-09-07T06:49:10.5936950Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-09-07T06:49:10.5937186Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-09-07T06:49:10.5937414Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-09-07T06:49:10.5937607Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-09-07T06:49:10.5937755Z * [new branch] inline -> origin/inline 2025-09-07T06:49:10.5937916Z * [new branch] inlining -> origin/inlining 2025-09-07T06:49:10.5938096Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-09-07T06:49:10.5938316Z * [new branch] install-torchao-0.13.0 -> origin/install-torchao-0.13.0 2025-09-07T06:49:10.5938479Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-09-07T06:49:10.5938659Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-09-07T06:49:10.5938816Z * [new branch] issue#58739 -> origin/issue#58739 2025-09-07T06:49:10.5939143Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-09-07T06:49:10.5939410Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-09-07T06:49:10.5939744Z * [new branch] jeanschmidt/disable_rocm_build_tests -> origin/jeanschmidt/disable_rocm_build_tests 2025-09-07T06:49:10.5939976Z * [new branch] jithunnair-amd-patch-1 -> origin/jithunnair-amd-patch-1 2025-09-07T06:49:10.5940230Z * [new branch] jithunnair-amd-patch-2 -> origin/jithunnair-amd-patch-2 2025-09-07T06:49:10.5940469Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-09-07T06:49:10.5940704Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-09-07T06:49:10.5940887Z * [new branch] justinchu/ort-122 -> origin/justinchu/ort-122 2025-09-07T06:49:10.5941103Z * [new branch] justinchuby/dynamo-true -> origin/justinchuby/dynamo-true 2025-09-07T06:49:10.5941296Z * [new branch] kainan666/xlf_debug -> origin/kainan666/xlf_debug 2025-09-07T06:49:10.5941456Z * [new branch] kainan_test -> origin/kainan_test 2025-09-07T06:49:10.5941695Z * [new branch] learnablebias -> origin/learnablebias 2025-09-07T06:49:10.5941971Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-09-07T06:49:10.5942243Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-09-07T06:49:10.5942451Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-09-07T06:49:10.5942719Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-09-07T06:49:10.5942929Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-09-07T06:49:10.5943114Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-09-07T06:49:10.5943285Z * [new branch] llama4-stable -> origin/llama4-stable 2025-09-07T06:49:10.5943449Z * [new branch] logdetfix -> origin/logdetfix 2025-09-07T06:49:10.5943628Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-09-07T06:49:10.5943820Z * [new branch] lucaskabela/#94773 -> origin/lucaskabela/#94773 2025-09-07T06:49:10.5945233Z * [new branch] lucaskabela/flop_counter -> origin/lucaskabela/flop_counter 2025-09-07T06:49:10.5945487Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-09-07T06:49:10.5945809Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-09-07T06:49:10.5946189Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-09-07T06:49:10.5946409Z * [new branch] lucaskabela/issue_120648 -> origin/lucaskabela/issue_120648 2025-09-07T06:49:10.5946666Z * [new branch] lucaskabela/misc_typing_dynamo -> origin/lucaskabela/misc_typing_dynamo 2025-09-07T06:49:10.5946975Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-09-07T06:49:10.5947322Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-09-07T06:49:10.5947539Z * [new branch] lucaskabela/rnn_decomp -> origin/lucaskabela/rnn_decomp 2025-09-07T06:49:10.5947776Z * [new branch] lucaskabela/typing_backends -> origin/lucaskabela/typing_backends 2025-09-07T06:49:10.5948072Z * [new branch] lucaskabela/typing_symbolic_convert -> origin/lucaskabela/typing_symbolic_convert 2025-09-07T06:49:10.5948380Z * [new branch] lucaskabela/typing_utils_improvements -> origin/lucaskabela/typing_utils_improvements 2025-09-07T06:49:10.5948529Z * [new branch] main -> origin/main 2025-09-07T06:49:10.5948844Z * [new branch] main-enable-b200-distributed-tests -> origin/main-enable-b200-distributed-tests 2025-09-07T06:49:10.5949026Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-09-07T06:49:10.5949215Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-09-07T06:49:10.5949398Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-09-07T06:49:10.5949570Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-09-07T06:49:10.5949747Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-09-07T06:49:10.5950197Z * [new branch] malfet/be-move-more-settings-to-checkout-pytorch -> origin/malfet/be-move-more-settings-to-checkout-pytorch 2025-09-07T06:49:10.5950435Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-09-07T06:49:10.5950688Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-09-07T06:49:10.5951059Z * [new branch] manuel/test-ops-common-allow-mps -> origin/manuel/test-ops-common-allow-mps 2025-09-07T06:49:10.5951261Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-09-07T06:49:10.5951499Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-09-07T06:49:10.5951667Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-09-07T06:49:10.5951855Z * [new branch] mlazos/arg-renames -> origin/mlazos/arg-renames 2025-09-07T06:49:10.5952123Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-09-07T06:49:10.5952342Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-09-07T06:49:10.5952520Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-09-07T06:49:10.5952777Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-09-07T06:49:10.5952974Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-09-07T06:49:10.5953160Z * [new branch] mlazos/better-msg -> origin/mlazos/better-msg 2025-09-07T06:49:10.5953411Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-09-07T06:49:10.5953598Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-09-07T06:49:10.5953769Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-09-07T06:49:10.5953925Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-09-07T06:49:10.5954132Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-09-07T06:49:10.5954321Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-09-07T06:49:10.5954515Z * [new branch] mlazos/cuda-cmd-log -> origin/mlazos/cuda-cmd-log 2025-09-07T06:49:10.5954736Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-09-07T06:49:10.5954999Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-09-07T06:49:10.5955195Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-09-07T06:49:10.5955420Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-09-07T06:49:10.5955607Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-09-07T06:49:10.5955796Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-09-07T06:49:10.5955979Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-09-07T06:49:10.5956203Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-09-07T06:49:10.5956377Z * [new branch] mlazos/dc-attrs -> origin/mlazos/dc-attrs 2025-09-07T06:49:10.5956552Z * [new branch] mlazos/dc-helion -> origin/mlazos/dc-helion 2025-09-07T06:49:10.5956736Z * [new branch] mlazos/dict-fix -> origin/mlazos/dict-fix 2025-09-07T06:49:10.5956964Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-09-07T06:49:10.5957148Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-09-07T06:49:10.5957331Z * [new branch] mlazos/dupe-fix -> origin/mlazos/dupe-fix 2025-09-07T06:49:10.5957547Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-09-07T06:49:10.5957704Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-09-07T06:49:10.5957928Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-09-07T06:49:10.5958649Z * [new branch] mlazos/extract-examples -> origin/mlazos/extract-examples 2025-09-07T06:49:10.5958851Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-09-07T06:49:10.5959027Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-09-07T06:49:10.5959210Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-09-07T06:49:10.5959421Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-09-07T06:49:10.5959608Z * [new branch] mlazos/fp8-fixes -> origin/mlazos/fp8-fixes 2025-09-07T06:49:10.5959788Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-09-07T06:49:10.5959956Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-09-07T06:49:10.5960124Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-09-07T06:49:10.5960312Z * [new branch] mlazos/hash-hop -> origin/mlazos/hash-hop 2025-09-07T06:49:10.5960465Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-09-07T06:49:10.5960712Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-09-07T06:49:10.5960893Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-09-07T06:49:10.5961067Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-09-07T06:49:10.5961237Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-09-07T06:49:10.5961404Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-09-07T06:49:10.5961567Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-09-07T06:49:10.5961722Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-09-07T06:49:10.5961895Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-09-07T06:49:10.5962053Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-09-07T06:49:10.5962214Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-09-07T06:49:10.5962380Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-09-07T06:49:10.5962537Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-09-07T06:49:10.5962688Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-09-07T06:49:10.5962850Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-09-07T06:49:10.5963001Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-09-07T06:49:10.5963157Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-09-07T06:49:10.5963359Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-09-07T06:49:10.5963521Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-09-07T06:49:10.5963686Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-09-07T06:49:10.5963910Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-09-07T06:49:10.5964170Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-09-07T06:49:10.5964371Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-09-07T06:49:10.5964650Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-09-07T06:49:10.5964882Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-09-07T06:49:10.5965079Z * [new branch] mlazos/main -> origin/mlazos/main 2025-09-07T06:49:10.5965429Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-09-07T06:49:10.5965609Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-09-07T06:49:10.5965879Z * [new branch] mlazos/mark-static-update -> origin/mlazos/mark-static-update 2025-09-07T06:49:10.5966041Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-09-07T06:49:10.5966254Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-09-07T06:49:10.5966479Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-09-07T06:49:10.5966668Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-09-07T06:49:10.5966983Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-09-07T06:49:10.5967259Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-09-07T06:49:10.5967438Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-09-07T06:49:10.5967654Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-09-07T06:49:10.5967907Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-09-07T06:49:10.5968118Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-09-07T06:49:10.5968378Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-09-07T06:49:10.5968591Z * [new branch] mlazos/offsets -> origin/mlazos/offsets 2025-09-07T06:49:10.5968833Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-09-07T06:49:10.5969015Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-09-07T06:49:10.5969252Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-09-07T06:49:10.5969439Z * [new branch] mlazos/quant-fix -> origin/mlazos/quant-fix 2025-09-07T06:49:10.5969664Z * [new branch] mlazos/resnet-fix -> origin/mlazos/resnet-fix 2025-09-07T06:49:10.5969885Z * [new branch] mlazos/revert-inline -> origin/mlazos/revert-inline 2025-09-07T06:49:10.5970112Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-09-07T06:49:10.5970287Z * [new branch] mlazos/rm-code -> origin/mlazos/rm-code 2025-09-07T06:49:10.5970494Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-09-07T06:49:10.5970654Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-09-07T06:49:10.5970898Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-09-07T06:49:10.5971164Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-09-07T06:49:10.5971374Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-09-07T06:49:10.5971583Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-09-07T06:49:10.5971806Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-09-07T06:49:10.5972005Z * [new branch] mlazos/test -> origin/mlazos/test 2025-09-07T06:49:10.5972175Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-09-07T06:49:10.5972422Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-09-07T06:49:10.5972660Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-09-07T06:49:10.5972860Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-09-07T06:49:10.5973164Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-09-07T06:49:10.5973352Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-09-07T06:49:10.5973592Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-09-07T06:49:10.5973821Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-09-07T06:49:10.5974016Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-09-07T06:49:10.5974245Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-09-07T06:49:10.5974448Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-09-07T06:49:10.5974685Z * [new branch] mlazos/user-streams -> origin/mlazos/user-streams 2025-09-07T06:49:10.5974863Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-09-07T06:49:10.5975089Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-09-07T06:49:10.5975288Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-09-07T06:49:10.5975513Z * [new branch] mm_out_dtype_compile -> origin/mm_out_dtype_compile 2025-09-07T06:49:10.5975805Z * [new branch] modify-setupvllm -> origin/modify-setupvllm 2025-09-07T06:49:10.5975979Z * [new branch] module-shim -> origin/module-shim 2025-09-07T06:49:10.5976231Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-09-07T06:49:10.5976401Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-09-07T06:49:10.5976625Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-09-07T06:49:10.5976872Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-09-07T06:49:10.5977083Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-09-07T06:49:10.5977296Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-09-07T06:49:10.5977459Z * [new branch] muon_dev -> origin/muon_dev 2025-09-07T06:49:10.5977615Z * [new branch] muon_dev_1 -> origin/muon_dev_1 2025-09-07T06:49:10.5977847Z * [new branch] nativert_num_outputs -> origin/nativert_num_outputs 2025-09-07T06:49:10.5978084Z * [new branch] nativert_numoutputs -> origin/nativert_numoutputs 2025-09-07T06:49:10.5978296Z * [new branch] new-modifiy-setupvllm -> origin/new-modifiy-setupvllm 2025-09-07T06:49:10.5978500Z * [new branch] new-setupvllm -> origin/new-setupvllm 2025-09-07T06:49:10.5978675Z * [new branch] new_zeros_dtype -> origin/new_zeros_dtype 2025-09-07T06:49:10.5978886Z * [new branch] newtest-base -> origin/newtest-base 2025-09-07T06:49:10.5979064Z * [new branch] ngimel/cat_perf1 -> origin/ngimel/cat_perf1 2025-09-07T06:49:10.5979289Z * [new branch] ngimel/einsum_fix -> origin/ngimel/einsum_fix 2025-09-07T06:49:10.5979499Z * [new branch] ngimel/error_index_list -> origin/ngimel/error_index_list 2025-09-07T06:49:10.5979722Z * [new branch] ngimel/fabric_check -> origin/ngimel/fabric_check 2025-09-07T06:49:10.5979907Z * [new branch] ngimel/fabric_fix -> origin/ngimel/fabric_fix 2025-09-07T06:49:10.5980134Z * [new branch] ngimel/fix_driver_init_error -> origin/ngimel/fix_driver_init_error 2025-09-07T06:49:10.5980353Z * [new branch] ngimel/fix_nccl_segment_seg -> origin/ngimel/fix_nccl_segment_seg 2025-09-07T06:49:10.5980524Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-09-07T06:49:10.5980771Z * [new branch] ngimel/modeguard -> origin/ngimel/modeguard 2025-09-07T06:49:10.5980969Z * [new branch] ngimel/multicast_fix -> origin/ngimel/multicast_fix 2025-09-07T06:49:10.5981177Z * [new branch] ngimel/rocm_handle_type -> origin/ngimel/rocm_handle_type 2025-09-07T06:49:10.5981396Z * [new branch] ngimel/symm_handle_fabric -> origin/ngimel/symm_handle_fabric 2025-09-07T06:49:10.5981603Z * [new branch] ngimel/unbind_multimem -> origin/ngimel/unbind_multimem 2025-09-07T06:49:10.5981753Z * [new branch] nightly -> origin/nightly 2025-09-07T06:49:10.5981965Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-09-07T06:49:10.5982166Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-09-07T06:49:10.5982362Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-09-07T06:49:10.5982570Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-09-07T06:49:10.5982766Z * [new branch] nullplay/fuse_matmul -> origin/nullplay/fuse_matmul 2025-09-07T06:49:10.5983023Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-09-07T06:49:10.5983186Z * [new branch] one-off -> origin/one-off 2025-09-07T06:49:10.5983366Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-09-07T06:49:10.5983544Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-09-07T06:49:10.5983727Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-09-07T06:49:10.5983905Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-09-07T06:49:10.5984080Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-09-07T06:49:10.5984268Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-09-07T06:49:10.5984445Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-09-07T06:49:10.5984621Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-09-07T06:49:10.5984802Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-09-07T06:49:10.5985013Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-09-07T06:49:10.5985189Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-09-07T06:49:10.5985359Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-09-07T06:49:10.5985573Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-09-07T06:49:10.5985753Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-09-07T06:49:10.5985961Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-09-07T06:49:10.5986154Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-09-07T06:49:10.5986327Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-09-07T06:49:10.5986498Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-09-07T06:49:10.5986682Z * [new branch] padded-tensor -> origin/padded-tensor 2025-09-07T06:49:10.5986823Z * [new branch] pca2 -> origin/pca2 2025-09-07T06:49:10.5987014Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-09-07T06:49:10.5987323Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-09-07T06:49:10.5987633Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-09-07T06:49:10.5987834Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-09-07T06:49:10.5988052Z * [new branch] pianpwk/maybe_guard_rel -> origin/pianpwk/maybe_guard_rel 2025-09-07T06:49:10.5988253Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-09-07T06:49:10.5988560Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-09-07T06:49:10.5988826Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-09-07T06:49:10.5989036Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-09-07T06:49:10.5989253Z * [new branch] pianpwk/param_static_pgo -> origin/pianpwk/param_static_pgo 2025-09-07T06:49:10.5989471Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-09-07T06:49:10.5989731Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-09-07T06:49:10.5989953Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-09-07T06:49:10.5990227Z * [new branch] pianpwk/sym_tokens_draft -> origin/pianpwk/sym_tokens_draft 2025-09-07T06:49:10.5990530Z * [new branch] pianpwk/test_pointwise_guard_or_false -> origin/pianpwk/test_pointwise_guard_or_false 2025-09-07T06:49:10.5990756Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-09-07T06:49:10.5991010Z * [new branch] pianpwk/totally_draft_sym_wrap -> origin/pianpwk/totally_draft_sym_wrap 2025-09-07T06:49:10.5991302Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-09-07T06:49:10.5991583Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-09-07T06:49:10.5991850Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-09-07T06:49:10.5992093Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-09-07T06:49:10.5992348Z * [new branch] pianpwk/unbacked_should_swap_2 -> origin/pianpwk/unbacked_should_swap_2 2025-09-07T06:49:10.5992595Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-09-07T06:49:10.5992850Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-09-07T06:49:10.5993046Z * [new branch] pianpwk/user_symints -> origin/pianpwk/user_symints 2025-09-07T06:49:10.5993247Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-09-07T06:49:10.5993489Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-09-07T06:49:10.5993661Z * [new branch] pin-torchao -> origin/pin-torchao 2025-09-07T06:49:10.5993870Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-09-07T06:49:10.5994089Z * [new branch] piz/improve_scatter_0808 -> origin/piz/improve_scatter_0808 2025-09-07T06:49:10.5994262Z * [new branch] pool-separate -> origin/pool-separate 2025-09-07T06:49:10.5994416Z * [new branch] pr-156087 -> origin/pr-156087 2025-09-07T06:49:10.5994571Z * [new branch] pr/131860 -> origin/pr/131860 2025-09-07T06:49:10.5994750Z * [new branch] predispatch_to -> origin/predispatch_to 2025-09-07T06:49:10.5994913Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-09-07T06:49:10.5995089Z * [new branch] pyobjectslot -> origin/pyobjectslot 2025-09-07T06:49:10.5995383Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-09-07T06:49:10.5995595Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-09-07T06:49:10.5995764Z * [new branch] quint-bits -> origin/quint-bits 2025-09-07T06:49:10.5995932Z * [new branch] release/1.10 -> origin/release/1.10 2025-09-07T06:49:10.5996090Z * [new branch] release/1.11 -> origin/release/1.11 2025-09-07T06:49:10.5996248Z * [new branch] release/1.12 -> origin/release/1.12 2025-09-07T06:49:10.5996411Z * [new branch] release/1.13 -> origin/release/1.13 2025-09-07T06:49:10.5996571Z * [new branch] release/1.4 -> origin/release/1.4 2025-09-07T06:49:10.5996735Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-09-07T06:49:10.5996902Z * [new branch] release/1.5 -> origin/release/1.5 2025-09-07T06:49:10.5997066Z * [new branch] release/1.6 -> origin/release/1.6 2025-09-07T06:49:10.5997335Z * [new branch] release/1.7 -> origin/release/1.7 2025-09-07T06:49:10.5997539Z * [new branch] release/1.8 -> origin/release/1.8 2025-09-07T06:49:10.5997703Z * [new branch] release/1.9 -> origin/release/1.9 2025-09-07T06:49:10.5997869Z * [new branch] release/2.0 -> origin/release/2.0 2025-09-07T06:49:10.5998066Z * [new branch] release/2.1 -> origin/release/2.1 2025-09-07T06:49:10.5998221Z * [new branch] release/2.2 -> origin/release/2.2 2025-09-07T06:49:10.5998378Z * [new branch] release/2.3 -> origin/release/2.3 2025-09-07T06:49:10.5998555Z * [new branch] release/2.4 -> origin/release/2.4 2025-09-07T06:49:10.5998713Z * [new branch] release/2.5 -> origin/release/2.5 2025-09-07T06:49:10.5998868Z * [new branch] release/2.6 -> origin/release/2.6 2025-09-07T06:49:10.5999029Z * [new branch] release/2.7 -> origin/release/2.7 2025-09-07T06:49:10.5999191Z * [new branch] release/2.8 -> origin/release/2.8 2025-09-07T06:49:10.5999357Z * [new branch] release_notes -> origin/release_notes 2025-09-07T06:49:10.5999581Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-09-07T06:49:10.5999746Z * [new branch] remove-ao -> origin/remove-ao 2025-09-07T06:49:10.5999983Z * [new branch] removedeprecatedvllmtest -> origin/removedeprecatedvllmtest 2025-09-07T06:49:10.6000308Z * [new branch] replace-pytorch-labs-20250812-195836 -> origin/replace-pytorch-labs-20250812-195836 2025-09-07T06:49:10.6000637Z * [new branch] replace-pytorch-labs-20250812-200248 -> origin/replace-pytorch-labs-20250812-200248 2025-09-07T06:49:10.6000956Z * [new branch] replace-pytorch-labs-20250812-200324 -> origin/replace-pytorch-labs-20250812-200324 2025-09-07T06:49:10.6001270Z * [new branch] replace-pytorch-labs-20250812-204020 -> origin/replace-pytorch-labs-20250812-204020 2025-09-07T06:49:10.6001588Z * [new branch] replace-pytorch-labs-20250812-204125 -> origin/replace-pytorch-labs-20250812-204125 2025-09-07T06:49:10.6001904Z * [new branch] replace-pytorch-labs-20250812-205624 -> origin/replace-pytorch-labs-20250812-205624 2025-09-07T06:49:10.6002246Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-09-07T06:49:10.6002611Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-09-07T06:49:10.6002884Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-09-07T06:49:10.6003376Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-09-07T06:49:10.6003613Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-09-07T06:49:10.6003804Z * [new branch] ruisi/relax_memory -> origin/ruisi/relax_memory 2025-09-07T06:49:10.6004120Z * [new branch] run-torchbench-smoke-test-h100 -> origin/run-torchbench-smoke-test-h100 2025-09-07T06:49:10.6004595Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-09-07T06:49:10.6004829Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-09-07T06:49:10.6005044Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-09-07T06:49:10.6005210Z * [new branch] rzou/njt -> origin/rzou/njt 2025-09-07T06:49:10.6005433Z * [new branch] rzou/pca -> origin/rzou/pca 2025-09-07T06:49:10.6005603Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-09-07T06:49:10.6005795Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-09-07T06:49:10.6006125Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-09-07T06:49:10.6006568Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-09-07T06:49:10.6006815Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-09-07T06:49:10.6006964Z * [new branch] save -> origin/save 2025-09-07T06:49:10.6007120Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-09-07T06:49:10.6007321Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-09-07T06:49:10.6007495Z * [new branch] setupvllm -> origin/setupvllm 2025-09-07T06:49:10.6007677Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-09-07T06:49:10.6007880Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-09-07T06:49:10.6008087Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-09-07T06:49:10.6008285Z * [new branch] shoumikhin-patch-1 -> origin/shoumikhin-patch-1 2025-09-07T06:49:10.6008490Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-09-07T06:49:10.6008720Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-09-07T06:49:10.6008913Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-09-07T06:49:10.6009128Z * [new branch] soulitzer/stash-tls-ac -> origin/soulitzer/stash-tls-ac 2025-09-07T06:49:10.6009315Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-09-07T06:49:10.6009512Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-09-07T06:49:10.6009733Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-09-07T06:49:10.6009925Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-09-07T06:49:10.6010167Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-09-07T06:49:10.6010374Z * [new branch] standalone-templates -> origin/standalone-templates 2025-09-07T06:49:10.6010673Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-09-07T06:49:10.6010868Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-09-07T06:49:10.6011040Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-09-07T06:49:10.6011274Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-09-07T06:49:10.6011424Z * [new branch] sve-poc -> origin/sve-poc 2025-09-07T06:49:10.6011608Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-09-07T06:49:10.6011764Z * [new branch] switch-bn -> origin/switch-bn 2025-09-07T06:49:10.6011989Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-09-07T06:49:10.6012197Z * [new branch] tenpercent/ck_rocm_ci_v3 -> origin/tenpercent/ck_rocm_ci_v3 2025-09-07T06:49:10.6012409Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-09-07T06:49:10.6012576Z * [new branch] test-7054 -> origin/test-7054 2025-09-07T06:49:10.6012856Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-09-07T06:49:10.6013115Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-09-07T06:49:10.6013274Z * [new branch] test-old -> origin/test-old 2025-09-07T06:49:10.6013542Z * [new branch] test-vec-migration-internally -> origin/test-vec-migration-internally 2025-09-07T06:49:10.6013705Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-09-07T06:49:10.6013877Z * [new branch] test/inductor -> origin/test/inductor 2025-09-07T06:49:10.6014108Z * [new branch] tianren/flex_paged_attn_fix -> origin/tianren/flex_paged_attn_fix 2025-09-07T06:49:10.6014418Z * [new branch] tianren/flex_paged_attn_fix_temp -> origin/tianren/flex_paged_attn_fix_temp 2025-09-07T06:49:10.6014630Z * [new branch] tianren/test -> origin/tianren/test 2025-09-07T06:49:10.6014838Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-09-07T06:49:10.6015050Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-09-07T06:49:10.6015274Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-09-07T06:49:10.6015487Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-09-07T06:49:10.6015672Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-09-07T06:49:10.6015845Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-09-07T06:49:10.6016021Z * [new branch] triton-update -> origin/triton-update 2025-09-07T06:49:10.6016184Z * [new branch] triton_kernel -> origin/triton_kernel 2025-09-07T06:49:10.6016375Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-09-07T06:49:10.6016534Z * [new branch] tt_pkg_1908 -> origin/tt_pkg_1908 2025-09-07T06:49:10.6016799Z * [new branch] tweak-transformer-dependabot -> origin/tweak-transformer-dependabot 2025-09-07T06:49:10.6016951Z * [new branch] type_dec -> origin/type_dec 2025-09-07T06:49:10.6017200Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-09-07T06:49:10.6017558Z * [new branch] update-audio-commit-hash/16818882925-1712-1 -> origin/update-audio-commit-hash/16818882925-1712-1 2025-09-07T06:49:10.6017979Z * [new branch] update-audio-commit-hash/16895560422-1720-1 -> origin/update-audio-commit-hash/16895560422-1720-1 2025-09-07T06:49:10.6018339Z * [new branch] update-audio-commit-hash/16924174496-1738-1 -> origin/update-audio-commit-hash/16924174496-1738-1 2025-09-07T06:49:10.6018687Z * [new branch] update-audio-commit-hash/17002010821-1749-1 -> origin/update-audio-commit-hash/17002010821-1749-1 2025-09-07T06:49:10.6019029Z * [new branch] update-audio-commit-hash/17056004427-1766-1 -> origin/update-audio-commit-hash/17056004427-1766-1 2025-09-07T06:49:10.6019382Z * [new branch] update-audio-commit-hash/17085054029-1767-1 -> origin/update-audio-commit-hash/17085054029-1767-1 2025-09-07T06:49:10.6019724Z * [new branch] update-audio-commit-hash/17142507405-1771-1 -> origin/update-audio-commit-hash/17142507405-1771-1 2025-09-07T06:49:10.6020064Z * [new branch] update-audio-commit-hash/17168762740-1773-1 -> origin/update-audio-commit-hash/17168762740-1773-1 2025-09-07T06:49:10.6020415Z * [new branch] update-audio-commit-hash/17311174639-1780-1 -> origin/update-audio-commit-hash/17311174639-1780-1 2025-09-07T06:49:10.6020758Z * [new branch] update-audio-commit-hash/17336898740-1781-1 -> origin/update-audio-commit-hash/17336898740-1781-1 2025-09-07T06:49:10.6021170Z * [new branch] update-audio-commit-hash/17389727684-1786-1 -> origin/update-audio-commit-hash/17389727684-1786-1 2025-09-07T06:49:10.6021524Z * [new branch] update-audio-commit-hash/17449538142-1790-1 -> origin/update-audio-commit-hash/17449538142-1790-1 2025-09-07T06:49:10.6021869Z * [new branch] update-audio-commit-hash/17507351808-1794-1 -> origin/update-audio-commit-hash/17507351808-1794-1 2025-09-07T06:49:10.6022111Z * [new branch] update-dynamic-shapes-doc -> origin/update-dynamic-shapes-doc 2025-09-07T06:49:10.6022525Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-09-07T06:49:10.6022882Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-09-07T06:49:10.6023239Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-09-07T06:49:10.6023591Z * [new branch] update-vllm-commit-hash/16737365217-1704-1 -> origin/update-vllm-commit-hash/16737365217-1704-1 2025-09-07T06:49:10.6023927Z * [new branch] update-vllm-commit-hash/16843157111-1713-1 -> origin/update-vllm-commit-hash/16843157111-1713-1 2025-09-07T06:49:10.6024254Z * [new branch] update-vllm-commit-hash/16855312394-1714-1 -> origin/update-vllm-commit-hash/16855312394-1714-1 2025-09-07T06:49:10.6024601Z * [new branch] update-vllm-commit-hash/16924174496-1738-1 -> origin/update-vllm-commit-hash/16924174496-1738-1 2025-09-07T06:49:10.6024937Z * [new branch] update-vllm-commit-hash/16952608705-1745-1 -> origin/update-vllm-commit-hash/16952608705-1745-1 2025-09-07T06:49:10.6025267Z * [new branch] update-vllm-commit-hash/16979836546-1748-1 -> origin/update-vllm-commit-hash/16979836546-1748-1 2025-09-07T06:49:10.6025609Z * [new branch] update-vllm-commit-hash/17014576881-1756-1 -> origin/update-vllm-commit-hash/17014576881-1756-1 2025-09-07T06:49:10.6025941Z * [new branch] update-vllm-commit-hash/17027830869-1761-1 -> origin/update-vllm-commit-hash/17027830869-1761-1 2025-09-07T06:49:10.6026272Z * [new branch] update-vllm-commit-hash/17056004427-1766-1 -> origin/update-vllm-commit-hash/17056004427-1766-1 2025-09-07T06:49:10.6026612Z * [new branch] update-vllm-commit-hash/17085054029-1767-1 -> origin/update-vllm-commit-hash/17085054029-1767-1 2025-09-07T06:49:10.6026943Z * [new branch] update-vllm-commit-hash/17113610216-1768-1 -> origin/update-vllm-commit-hash/17113610216-1768-1 2025-09-07T06:49:10.6027334Z * [new branch] update-vllm-commit-hash/17142507405-1771-1 -> origin/update-vllm-commit-hash/17142507405-1771-1 2025-09-07T06:49:10.6027672Z * [new branch] update-vllm-commit-hash/17181878974-1774-1 -> origin/update-vllm-commit-hash/17181878974-1774-1 2025-09-07T06:49:10.6028006Z * [new branch] update-vllm-commit-hash/17311174639-1780-1 -> origin/update-vllm-commit-hash/17311174639-1780-1 2025-09-07T06:49:10.6028335Z * [new branch] update-vllm-commit-hash/17336898740-1781-1 -> origin/update-vllm-commit-hash/17336898740-1781-1 2025-09-07T06:49:10.6028681Z * [new branch] update-vllm-commit-hash/17364352302-1785-1 -> origin/update-vllm-commit-hash/17364352302-1785-1 2025-09-07T06:49:10.6029014Z * [new branch] update-vllm-commit-hash/17389727684-1786-1 -> origin/update-vllm-commit-hash/17389727684-1786-1 2025-09-07T06:49:10.6029347Z * [new branch] update-vllm-commit-hash/17449538142-1790-1 -> origin/update-vllm-commit-hash/17449538142-1790-1 2025-09-07T06:49:10.6029682Z * [new branch] update-vllm-commit-hash/17480069797-1791-1 -> origin/update-vllm-commit-hash/17480069797-1791-1 2025-09-07T06:49:10.6030075Z * [new branch] update-vllm-commit-hash/17507351808-1794-1 -> origin/update-vllm-commit-hash/17507351808-1794-1 2025-09-07T06:49:10.6030442Z * [new branch] update-xla-commit-hash/16873912760-198-1 -> origin/update-xla-commit-hash/16873912760-198-1 2025-09-07T06:49:10.6030811Z * [new branch] update-xla-commit-hash/17034266655-199-1 -> origin/update-xla-commit-hash/17034266655-199-1 2025-09-07T06:49:10.6031169Z * [new branch] update-xla-commit-hash/17202464405-200-1 -> origin/update-xla-commit-hash/17202464405-200-1 2025-09-07T06:49:10.6031498Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-09-07T06:49:10.6031722Z * [new branch] update_executorch_pin -> origin/update_executorch_pin 2025-09-07T06:49:10.6031944Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-09-07T06:49:10.6032165Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-09-07T06:49:10.6032390Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-09-07T06:49:10.6032602Z * [new branch] update_slow_tests_1755502951 -> origin/update_slow_tests_1755502951 2025-09-07T06:49:10.6032817Z * [new branch] update_slow_tests_1756107664 -> origin/update_slow_tests_1756107664 2025-09-07T06:49:10.6033043Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-09-07T06:49:10.6033248Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-09-07T06:49:10.6033482Z * [new branch] update_submodule_tensorpipe -> origin/update_submodule_tensorpipe 2025-09-07T06:49:10.6033641Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-09-07T06:49:10.6033788Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-09-07T06:49:10.6033935Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-09-07T06:49:10.6034087Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-09-07T06:49:10.6034227Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-09-07T06:49:10.6034367Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-09-07T06:49:10.6034518Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-09-07T06:49:10.6034682Z * [new branch] validate_fn -> origin/validate_fn 2025-09-07T06:49:10.6034862Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-09-07T06:49:10.6035110Z * [new branch] validations_2.8 -> origin/validations_2.8 2025-09-07T06:49:10.6035280Z * [new branch] viable/strict -> origin/viable/strict 2025-09-07T06:49:10.6035445Z * [new branch] vllmbuildci -> origin/vllmbuildci 2025-09-07T06:49:10.6035597Z * [new branch] vllmpin -> origin/vllmpin 2025-09-07T06:49:10.6035818Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-09-07T06:49:10.6035990Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-09-07T06:49:10.6036177Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-09-07T06:49:10.6036343Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-09-07T06:49:10.6036515Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-09-07T06:49:10.6036685Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-09-07T06:49:10.6036850Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-09-07T06:49:10.6037007Z * [new branch] whc/uneven -> origin/whc/uneven 2025-09-07T06:49:10.6037257Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-09-07T06:49:10.6037427Z * [new branch] win_warnings -> origin/win_warnings 2025-09-07T06:49:10.6037624Z * [new branch] windows_libtorch_free -> origin/windows_libtorch_free 2025-09-07T06:49:10.6037806Z * [new branch] workonoldcommit -> origin/workonoldcommit 2025-09-07T06:49:10.6038222Z * [new branch] wychi-autotune-prune-configs-by-shared-mem -> origin/wychi-autotune-prune-configs-by-shared-mem 2025-09-07T06:49:10.6038382Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-09-07T06:49:10.6038573Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-09-07T06:49:10.6038983Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-09-07T06:49:10.6039176Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-09-07T06:49:10.6039358Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-09-07T06:49:10.6039529Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-09-07T06:49:10.6039689Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-09-07T06:49:10.6039850Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-09-07T06:49:10.6040035Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-09-07T06:49:10.6040218Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-09-07T06:49:10.6040391Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-09-07T06:49:10.6040581Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-09-07T06:49:10.6040788Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-09-07T06:49:10.6040946Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-09-07T06:49:10.6041108Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-09-07T06:49:10.6041277Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-09-07T06:49:10.6041457Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-09-07T06:49:10.6041630Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-09-07T06:49:10.6041881Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-09-07T06:49:10.6042102Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-09-07T06:49:10.6042326Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-09-07T06:49:10.6042529Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-09-07T06:49:10.6042701Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-09-07T06:49:10.6042880Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-09-07T06:49:10.6043111Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-09-07T06:49:10.6043279Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-09-07T06:49:10.6043486Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-09-07T06:49:10.6043666Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-09-07T06:49:10.6043869Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-09-07T06:49:10.6044120Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-09-07T06:49:10.6044289Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-09-07T06:49:10.6044468Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-09-07T06:49:10.6044705Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-09-07T06:49:10.6044921Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-09-07T06:49:10.6045176Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-09-07T06:49:10.6045363Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-09-07T06:49:10.6045774Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-09-07T06:49:10.6046183Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-09-07T06:49:10.6046380Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-09-07T06:49:10.6046566Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-09-07T06:49:10.6046750Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-09-07T06:49:10.6046907Z * [new branch] xmfan/test -> origin/xmfan/test 2025-09-07T06:49:10.6047131Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-09-07T06:49:10.6047344Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-09-07T06:49:10.6047582Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-09-07T06:49:10.6047773Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-09-07T06:49:10.6048037Z * [new branch] yiming/add_jit_trace_benchmark -> origin/yiming/add_jit_trace_benchmark 2025-09-07T06:49:10.6048277Z * [new branch] yiming/add_nativert_benchmark -> origin/yiming/add_nativert_benchmark 2025-09-07T06:49:10.6048460Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-09-07T06:49:10.6048660Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-09-07T06:49:10.6048890Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-09-07T06:49:10.6049076Z * [new branch] zainr/git-push-v2 -> origin/zainr/git-push-v2 2025-09-07T06:49:10.6049360Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-09-07T06:49:10.6049526Z * [new branch] zainr/test -> origin/zainr/test 2025-09-07T06:49:10.6049687Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-09-07T06:49:10.6049856Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-09-07T06:49:10.6050056Z * [new branch] zainr/unstable-xla -> origin/zainr/unstable-xla 2025-09-07T06:49:10.6050249Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-09-07T06:49:10.6050390Z * [new branch] zb2p -> origin/zb2p 2025-09-07T06:49:10.6050601Z * [new branch] zero_grad_optimization -> origin/zero_grad_optimization 2025-09-07T06:49:10.6050827Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-09-07T06:49:10.6051028Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-09-07T06:49:10.6051241Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-09-07T06:49:10.6051469Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-09-07T06:49:10.6051927Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-09-07T06:49:10.6052086Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-09-07T06:49:10.6052253Z * [new tag] ciflow/binaries/156049 -> ciflow/binaries/156049 2025-09-07T06:49:10.6052416Z * [new tag] ciflow/binaries/156712 -> ciflow/binaries/156712 2025-09-07T06:49:10.6052585Z * [new tag] ciflow/binaries/157432 -> ciflow/binaries/157432 2025-09-07T06:49:10.6052753Z * [new tag] ciflow/binaries/157685 -> ciflow/binaries/157685 2025-09-07T06:49:10.6052912Z * [new tag] ciflow/binaries/157689 -> ciflow/binaries/157689 2025-09-07T06:49:10.6053087Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-09-07T06:49:10.6053251Z * [new tag] ciflow/binaries/160229 -> ciflow/binaries/160229 2025-09-07T06:49:10.6053411Z * [new tag] ciflow/binaries/160720 -> ciflow/binaries/160720 2025-09-07T06:49:10.6053574Z * [new tag] ciflow/binaries/162080 -> ciflow/binaries/162080 2025-09-07T06:49:10.6053740Z * [new tag] ciflow/binaries/162329 -> ciflow/binaries/162329 2025-09-07T06:49:10.6053960Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-09-07T06:49:10.6054178Z * [new tag] ciflow/binaries_libtorch/156711 -> ciflow/binaries_libtorch/156711 2025-09-07T06:49:10.6054402Z * [new tag] ciflow/binaries_libtorch/157432 -> ciflow/binaries_libtorch/157432 2025-09-07T06:49:10.6054592Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-09-07T06:49:10.6054786Z * [new tag] ciflow/binaries_wheel/156711 -> ciflow/binaries_wheel/156711 2025-09-07T06:49:10.6054978Z * [new tag] ciflow/binaries_wheel/157432 -> ciflow/binaries_wheel/157432 2025-09-07T06:49:10.6055168Z * [new tag] ciflow/binaries_wheel/162136 -> ciflow/binaries_wheel/162136 2025-09-07T06:49:10.6055352Z * [new tag] ciflow/binaries_wheel/162252 -> ciflow/binaries_wheel/162252 2025-09-07T06:49:10.6055545Z * [new tag] ciflow/binaries_wheel/162325 -> ciflow/binaries_wheel/162325 2025-09-07T06:49:10.6055755Z * [new tag] ciflow/h100-distributed/156703 -> ciflow/h100-distributed/156703 2025-09-07T06:49:10.6055936Z * [new tag] ciflow/h100-symm-mem/157635 -> ciflow/h100-symm-mem/157635 2025-09-07T06:49:10.6056187Z * [new tag] ciflow/h100-symm-mem/161984 -> ciflow/h100-symm-mem/161984 2025-09-07T06:49:10.6056367Z * [new tag] ciflow/h100-symm-mem/162003 -> ciflow/h100-symm-mem/162003 2025-09-07T06:49:10.6056547Z * [new tag] ciflow/h100-symm-mem/162011 -> ciflow/h100-symm-mem/162011 2025-09-07T06:49:10.6056728Z * [new tag] ciflow/h100-symm-mem/162026 -> ciflow/h100-symm-mem/162026 2025-09-07T06:49:10.6056902Z * [new tag] ciflow/h100-symm-mem/162033 -> ciflow/h100-symm-mem/162033 2025-09-07T06:49:10.6057073Z * [new tag] ciflow/h100-symm-mem/162040 -> ciflow/h100-symm-mem/162040 2025-09-07T06:49:10.6057260Z * [new tag] ciflow/h100-symm-mem/162041 -> ciflow/h100-symm-mem/162041 2025-09-07T06:49:10.6057432Z * [new tag] ciflow/h100-symm-mem/162142 -> ciflow/h100-symm-mem/162142 2025-09-07T06:49:10.6057615Z * [new tag] ciflow/h100-symm-mem/162150 -> ciflow/h100-symm-mem/162150 2025-09-07T06:49:10.6057801Z * [new tag] ciflow/h100-symm-mem/162243 -> ciflow/h100-symm-mem/162243 2025-09-07T06:49:10.6057981Z * [new tag] ciflow/h100-symm-mem/162320 -> ciflow/h100-symm-mem/162320 2025-09-07T06:49:10.6058192Z * [new tag] ciflow/h100/159158 -> ciflow/h100/159158 2025-09-07T06:49:10.6058334Z * [new tag] ciflow/h100/160480 -> ciflow/h100/160480 2025-09-07T06:49:10.6058483Z * [new tag] ciflow/h100/161749 -> ciflow/h100/161749 2025-09-07T06:49:10.6058622Z * [new tag] ciflow/h100/162022 -> ciflow/h100/162022 2025-09-07T06:49:10.6058758Z * [new tag] ciflow/h100/162278 -> ciflow/h100/162278 2025-09-07T06:49:10.6059136Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/156592 -> ciflow/inductor-perf-test-nightly-rocm/156592 2025-09-07T06:49:10.6059453Z * [new tag] ciflow/inductor-perf-test-nightly/156592 -> ciflow/inductor-perf-test-nightly/156592 2025-09-07T06:49:10.6059683Z * [new tag] ciflow/inductor-periodic/162063 -> ciflow/inductor-periodic/162063 2025-09-07T06:49:10.6059919Z * [new tag] ciflow/inductor-periodic/162227 -> ciflow/inductor-periodic/162227 2025-09-07T06:49:10.6060138Z * [new tag] ciflow/inductor-periodic/162323 -> ciflow/inductor-periodic/162323 2025-09-07T06:49:10.6060324Z * [new tag] ciflow/inductor-rocm/154170 -> ciflow/inductor-rocm/154170 2025-09-07T06:49:10.6060515Z * [new tag] ciflow/inductor-rocm/159146 -> ciflow/inductor-rocm/159146 2025-09-07T06:49:10.6060699Z * [new tag] ciflow/inductor-rocm/159158 -> ciflow/inductor-rocm/159158 2025-09-07T06:49:10.6060886Z * [new tag] ciflow/inductor-rocm/161715 -> ciflow/inductor-rocm/161715 2025-09-07T06:49:10.6061086Z * [new tag] ciflow/inductor-rocm/162053 -> ciflow/inductor-rocm/162053 2025-09-07T06:49:10.6061318Z * [new tag] ciflow/inductor-rocm/162056 -> ciflow/inductor-rocm/162056 2025-09-07T06:49:10.6061486Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-09-07T06:49:10.6061698Z * [new tag] ciflow/inductor/148180 -> ciflow/inductor/148180 2025-09-07T06:49:10.6061862Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-09-07T06:49:10.6062025Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-09-07T06:49:10.6062193Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-09-07T06:49:10.6062354Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-09-07T06:49:10.6062513Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-09-07T06:49:10.6062747Z * [new tag] ciflow/inductor/156049 -> ciflow/inductor/156049 2025-09-07T06:49:10.6062912Z * [new tag] ciflow/inductor/156592 -> ciflow/inductor/156592 2025-09-07T06:49:10.6063074Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-09-07T06:49:10.6063236Z * [new tag] ciflow/inductor/157685 -> ciflow/inductor/157685 2025-09-07T06:49:10.6063400Z * [new tag] ciflow/inductor/157686 -> ciflow/inductor/157686 2025-09-07T06:49:10.6063560Z * [new tag] ciflow/inductor/157689 -> ciflow/inductor/157689 2025-09-07T06:49:10.6063722Z * [new tag] ciflow/inductor/157699 -> ciflow/inductor/157699 2025-09-07T06:49:10.6063889Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-09-07T06:49:10.6064049Z * [new tag] ciflow/inductor/157994 -> ciflow/inductor/157994 2025-09-07T06:49:10.6064212Z * [new tag] ciflow/inductor/158091 -> ciflow/inductor/158091 2025-09-07T06:49:10.6064383Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-09-07T06:49:10.6064548Z * [new tag] ciflow/inductor/158404 -> ciflow/inductor/158404 2025-09-07T06:49:10.6065194Z * [new tag] ciflow/inductor/158647 -> ciflow/inductor/158647 2025-09-07T06:49:10.6065367Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-09-07T06:49:10.6065528Z * [new tag] ciflow/inductor/159146 -> ciflow/inductor/159146 2025-09-07T06:49:10.6065687Z * [new tag] ciflow/inductor/159158 -> ciflow/inductor/159158 2025-09-07T06:49:10.6065859Z * [new tag] ciflow/inductor/159274 -> ciflow/inductor/159274 2025-09-07T06:49:10.6066022Z * [new tag] ciflow/inductor/159664 -> ciflow/inductor/159664 2025-09-07T06:49:10.6066185Z * [new tag] ciflow/inductor/159778 -> ciflow/inductor/159778 2025-09-07T06:49:10.6066349Z * [new tag] ciflow/inductor/159835 -> ciflow/inductor/159835 2025-09-07T06:49:10.6066515Z * [new tag] ciflow/inductor/159944 -> ciflow/inductor/159944 2025-09-07T06:49:10.6066684Z * [new tag] ciflow/inductor/160161 -> ciflow/inductor/160161 2025-09-07T06:49:10.6066842Z * [new tag] ciflow/inductor/160174 -> ciflow/inductor/160174 2025-09-07T06:49:10.6067013Z * [new tag] ciflow/inductor/160323 -> ciflow/inductor/160323 2025-09-07T06:49:10.6067173Z * [new tag] ciflow/inductor/160324 -> ciflow/inductor/160324 2025-09-07T06:49:10.6067332Z * [new tag] ciflow/inductor/160325 -> ciflow/inductor/160325 2025-09-07T06:49:10.6067502Z * [new tag] ciflow/inductor/160326 -> ciflow/inductor/160326 2025-09-07T06:49:10.6067667Z * [new tag] ciflow/inductor/160327 -> ciflow/inductor/160327 2025-09-07T06:49:10.6067827Z * [new tag] ciflow/inductor/160328 -> ciflow/inductor/160328 2025-09-07T06:49:10.6067994Z * [new tag] ciflow/inductor/160329 -> ciflow/inductor/160329 2025-09-07T06:49:10.6068157Z * [new tag] ciflow/inductor/160480 -> ciflow/inductor/160480 2025-09-07T06:49:10.6068316Z * [new tag] ciflow/inductor/160532 -> ciflow/inductor/160532 2025-09-07T06:49:10.6068486Z * [new tag] ciflow/inductor/160539 -> ciflow/inductor/160539 2025-09-07T06:49:10.6068643Z * [new tag] ciflow/inductor/160580 -> ciflow/inductor/160580 2025-09-07T06:49:10.6068801Z * [new tag] ciflow/inductor/160685 -> ciflow/inductor/160685 2025-09-07T06:49:10.6068967Z * [new tag] ciflow/inductor/160686 -> ciflow/inductor/160686 2025-09-07T06:49:10.6069125Z * [new tag] ciflow/inductor/160687 -> ciflow/inductor/160687 2025-09-07T06:49:10.6069357Z * [new tag] ciflow/inductor/160688 -> ciflow/inductor/160688 2025-09-07T06:49:10.6069518Z * [new tag] ciflow/inductor/160690 -> ciflow/inductor/160690 2025-09-07T06:49:10.6069692Z * [new tag] ciflow/inductor/160706 -> ciflow/inductor/160706 2025-09-07T06:49:10.6069851Z * [new tag] ciflow/inductor/160729 -> ciflow/inductor/160729 2025-09-07T06:49:10.6070011Z * [new tag] ciflow/inductor/160798 -> ciflow/inductor/160798 2025-09-07T06:49:10.6070182Z * [new tag] ciflow/inductor/160836 -> ciflow/inductor/160836 2025-09-07T06:49:10.6070347Z * [new tag] ciflow/inductor/160843 -> ciflow/inductor/160843 2025-09-07T06:49:10.6070506Z * [new tag] ciflow/inductor/160869 -> ciflow/inductor/160869 2025-09-07T06:49:10.6070688Z * [new tag] ciflow/inductor/160920 -> ciflow/inductor/160920 2025-09-07T06:49:10.6070852Z * [new tag] ciflow/inductor/160943 -> ciflow/inductor/160943 2025-09-07T06:49:10.6071013Z * [new tag] ciflow/inductor/161092 -> ciflow/inductor/161092 2025-09-07T06:49:10.6071248Z * [new tag] ciflow/inductor/161093 -> ciflow/inductor/161093 2025-09-07T06:49:10.6071410Z * [new tag] ciflow/inductor/161109 -> ciflow/inductor/161109 2025-09-07T06:49:10.6071574Z * [new tag] ciflow/inductor/161118 -> ciflow/inductor/161118 2025-09-07T06:49:10.6071739Z * [new tag] ciflow/inductor/161178 -> ciflow/inductor/161178 2025-09-07T06:49:10.6071901Z * [new tag] ciflow/inductor/161246 -> ciflow/inductor/161246 2025-09-07T06:49:10.6072057Z * [new tag] ciflow/inductor/161349 -> ciflow/inductor/161349 2025-09-07T06:49:10.6072229Z * [new tag] ciflow/inductor/161350 -> ciflow/inductor/161350 2025-09-07T06:49:10.6072391Z * [new tag] ciflow/inductor/161351 -> ciflow/inductor/161351 2025-09-07T06:49:10.6072549Z * [new tag] ciflow/inductor/161397 -> ciflow/inductor/161397 2025-09-07T06:49:10.6072715Z * [new tag] ciflow/inductor/161404 -> ciflow/inductor/161404 2025-09-07T06:49:10.6072885Z * [new tag] ciflow/inductor/161405 -> ciflow/inductor/161405 2025-09-07T06:49:10.6073042Z * [new tag] ciflow/inductor/161406 -> ciflow/inductor/161406 2025-09-07T06:49:10.6073204Z * [new tag] ciflow/inductor/161410 -> ciflow/inductor/161410 2025-09-07T06:49:10.6073371Z * [new tag] ciflow/inductor/161414 -> ciflow/inductor/161414 2025-09-07T06:49:10.6073529Z * [new tag] ciflow/inductor/161442 -> ciflow/inductor/161442 2025-09-07T06:49:10.6073688Z * [new tag] ciflow/inductor/161458 -> ciflow/inductor/161458 2025-09-07T06:49:10.6073857Z * [new tag] ciflow/inductor/161468 -> ciflow/inductor/161468 2025-09-07T06:49:10.6074015Z * [new tag] ciflow/inductor/161469 -> ciflow/inductor/161469 2025-09-07T06:49:10.6074182Z * [new tag] ciflow/inductor/161485 -> ciflow/inductor/161485 2025-09-07T06:49:10.6074350Z * [new tag] ciflow/inductor/161499 -> ciflow/inductor/161499 2025-09-07T06:49:10.6074510Z * [new tag] ciflow/inductor/161534 -> ciflow/inductor/161534 2025-09-07T06:49:10.6074666Z * [new tag] ciflow/inductor/161595 -> ciflow/inductor/161595 2025-09-07T06:49:10.6074830Z * [new tag] ciflow/inductor/161596 -> ciflow/inductor/161596 2025-09-07T06:49:10.6074992Z * [new tag] ciflow/inductor/161630 -> ciflow/inductor/161630 2025-09-07T06:49:10.6075150Z * [new tag] ciflow/inductor/161667 -> ciflow/inductor/161667 2025-09-07T06:49:10.6075733Z * [new tag] ciflow/inductor/161670 -> ciflow/inductor/161670 2025-09-07T06:49:10.6075898Z * [new tag] ciflow/inductor/161673 -> ciflow/inductor/161673 2025-09-07T06:49:10.6076062Z * [new tag] ciflow/inductor/161674 -> ciflow/inductor/161674 2025-09-07T06:49:10.6076224Z * [new tag] ciflow/inductor/161675 -> ciflow/inductor/161675 2025-09-07T06:49:10.6076401Z * [new tag] ciflow/inductor/161693 -> ciflow/inductor/161693 2025-09-07T06:49:10.6076560Z * [new tag] ciflow/inductor/161695 -> ciflow/inductor/161695 2025-09-07T06:49:10.6076722Z * [new tag] ciflow/inductor/161715 -> ciflow/inductor/161715 2025-09-07T06:49:10.6076893Z * [new tag] ciflow/inductor/161730 -> ciflow/inductor/161730 2025-09-07T06:49:10.6077052Z * [new tag] ciflow/inductor/161732 -> ciflow/inductor/161732 2025-09-07T06:49:10.6077214Z * [new tag] ciflow/inductor/161744 -> ciflow/inductor/161744 2025-09-07T06:49:10.6077384Z * [new tag] ciflow/inductor/161746 -> ciflow/inductor/161746 2025-09-07T06:49:10.6077625Z * [new tag] ciflow/inductor/161747 -> ciflow/inductor/161747 2025-09-07T06:49:10.6077783Z * [new tag] ciflow/inductor/161819 -> ciflow/inductor/161819 2025-09-07T06:49:10.6077952Z * [new tag] ciflow/inductor/161821 -> ciflow/inductor/161821 2025-09-07T06:49:10.6078110Z * [new tag] ciflow/inductor/161828 -> ciflow/inductor/161828 2025-09-07T06:49:10.6078274Z * [new tag] ciflow/inductor/161879 -> ciflow/inductor/161879 2025-09-07T06:49:10.6078446Z * [new tag] ciflow/inductor/161880 -> ciflow/inductor/161880 2025-09-07T06:49:10.6078610Z * [new tag] ciflow/inductor/161881 -> ciflow/inductor/161881 2025-09-07T06:49:10.6078773Z * [new tag] ciflow/inductor/161907 -> ciflow/inductor/161907 2025-09-07T06:49:10.6078941Z * [new tag] ciflow/inductor/161914 -> ciflow/inductor/161914 2025-09-07T06:49:10.6079105Z * [new tag] ciflow/inductor/161924 -> ciflow/inductor/161924 2025-09-07T06:49:10.6079268Z * [new tag] ciflow/inductor/161936 -> ciflow/inductor/161936 2025-09-07T06:49:10.6079428Z * [new tag] ciflow/inductor/161938 -> ciflow/inductor/161938 2025-09-07T06:49:10.6079599Z * [new tag] ciflow/inductor/161939 -> ciflow/inductor/161939 2025-09-07T06:49:10.6079762Z * [new tag] ciflow/inductor/161940 -> ciflow/inductor/161940 2025-09-07T06:49:10.6079922Z * [new tag] ciflow/inductor/161955 -> ciflow/inductor/161955 2025-09-07T06:49:10.6080088Z * [new tag] ciflow/inductor/161957 -> ciflow/inductor/161957 2025-09-07T06:49:10.6080252Z * [new tag] ciflow/inductor/161975 -> ciflow/inductor/161975 2025-09-07T06:49:10.6080418Z * [new tag] ciflow/inductor/161977 -> ciflow/inductor/161977 2025-09-07T06:49:10.6080600Z * [new tag] ciflow/inductor/161978 -> ciflow/inductor/161978 2025-09-07T06:49:10.6080761Z * [new tag] ciflow/inductor/161979 -> ciflow/inductor/161979 2025-09-07T06:49:10.6080921Z * [new tag] ciflow/inductor/161980 -> ciflow/inductor/161980 2025-09-07T06:49:10.6081096Z * [new tag] ciflow/inductor/161988 -> ciflow/inductor/161988 2025-09-07T06:49:10.6081256Z * [new tag] ciflow/inductor/161994 -> ciflow/inductor/161994 2025-09-07T06:49:10.6081417Z * [new tag] ciflow/inductor/162013 -> ciflow/inductor/162013 2025-09-07T06:49:10.6081587Z * [new tag] ciflow/inductor/162014 -> ciflow/inductor/162014 2025-09-07T06:49:10.6081809Z * [new tag] ciflow/inductor/162017 -> ciflow/inductor/162017 2025-09-07T06:49:10.6081973Z * [new tag] ciflow/inductor/162021 -> ciflow/inductor/162021 2025-09-07T06:49:10.6082150Z * [new tag] ciflow/inductor/162023 -> ciflow/inductor/162023 2025-09-07T06:49:10.6082310Z * [new tag] ciflow/inductor/162027 -> ciflow/inductor/162027 2025-09-07T06:49:10.6082471Z * [new tag] ciflow/inductor/162029 -> ciflow/inductor/162029 2025-09-07T06:49:10.6082632Z * [new tag] ciflow/inductor/162030 -> ciflow/inductor/162030 2025-09-07T06:49:10.6082804Z * [new tag] ciflow/inductor/162031 -> ciflow/inductor/162031 2025-09-07T06:49:10.6082968Z * [new tag] ciflow/inductor/162033 -> ciflow/inductor/162033 2025-09-07T06:49:10.6083125Z * [new tag] ciflow/inductor/162052 -> ciflow/inductor/162052 2025-09-07T06:49:10.6083299Z * [new tag] ciflow/inductor/162053 -> ciflow/inductor/162053 2025-09-07T06:49:10.6083457Z * [new tag] ciflow/inductor/162056 -> ciflow/inductor/162056 2025-09-07T06:49:10.6083617Z * [new tag] ciflow/inductor/162063 -> ciflow/inductor/162063 2025-09-07T06:49:10.6083844Z * [new tag] ciflow/inductor/162066 -> ciflow/inductor/162066 2025-09-07T06:49:10.6084007Z * [new tag] ciflow/inductor/162068 -> ciflow/inductor/162068 2025-09-07T06:49:10.6084168Z * [new tag] ciflow/inductor/162081 -> ciflow/inductor/162081 2025-09-07T06:49:10.6084334Z * [new tag] ciflow/inductor/162088 -> ciflow/inductor/162088 2025-09-07T06:49:10.6084494Z * [new tag] ciflow/inductor/162089 -> ciflow/inductor/162089 2025-09-07T06:49:10.6084741Z * [new tag] ciflow/inductor/162094 -> ciflow/inductor/162094 2025-09-07T06:49:10.6084924Z * [new tag] ciflow/inductor/162098 -> ciflow/inductor/162098 2025-09-07T06:49:10.6085084Z * [new tag] ciflow/inductor/162101 -> ciflow/inductor/162101 2025-09-07T06:49:10.6085244Z * [new tag] ciflow/inductor/162102 -> ciflow/inductor/162102 2025-09-07T06:49:10.6085416Z * [new tag] ciflow/inductor/162104 -> ciflow/inductor/162104 2025-09-07T06:49:10.6085580Z * [new tag] ciflow/inductor/162106 -> ciflow/inductor/162106 2025-09-07T06:49:10.6085739Z * [new tag] ciflow/inductor/162108 -> ciflow/inductor/162108 2025-09-07T06:49:10.6085911Z * [new tag] ciflow/inductor/162126 -> ciflow/inductor/162126 2025-09-07T06:49:10.6086076Z * [new tag] ciflow/inductor/162149 -> ciflow/inductor/162149 2025-09-07T06:49:10.6086235Z * [new tag] ciflow/inductor/162164 -> ciflow/inductor/162164 2025-09-07T06:49:10.6086403Z * [new tag] ciflow/inductor/162166 -> ciflow/inductor/162166 2025-09-07T06:49:10.6086579Z * [new tag] ciflow/inductor/162169 -> ciflow/inductor/162169 2025-09-07T06:49:10.6086738Z * [new tag] ciflow/inductor/162170 -> ciflow/inductor/162170 2025-09-07T06:49:10.6086900Z * [new tag] ciflow/inductor/162171 -> ciflow/inductor/162171 2025-09-07T06:49:10.6087066Z * [new tag] ciflow/inductor/162183 -> ciflow/inductor/162183 2025-09-07T06:49:10.6087228Z * [new tag] ciflow/inductor/162189 -> ciflow/inductor/162189 2025-09-07T06:49:10.6087387Z * [new tag] ciflow/inductor/162190 -> ciflow/inductor/162190 2025-09-07T06:49:10.6087555Z * [new tag] ciflow/inductor/162191 -> ciflow/inductor/162191 2025-09-07T06:49:10.6087715Z * [new tag] ciflow/inductor/162194 -> ciflow/inductor/162194 2025-09-07T06:49:10.6087947Z * [new tag] ciflow/inductor/162200 -> ciflow/inductor/162200 2025-09-07T06:49:10.6088120Z * [new tag] ciflow/inductor/162201 -> ciflow/inductor/162201 2025-09-07T06:49:10.6088281Z * [new tag] ciflow/inductor/162208 -> ciflow/inductor/162208 2025-09-07T06:49:10.6088443Z * [new tag] ciflow/inductor/162211 -> ciflow/inductor/162211 2025-09-07T06:49:10.6088616Z * [new tag] ciflow/inductor/162216 -> ciflow/inductor/162216 2025-09-07T06:49:10.6088774Z * [new tag] ciflow/inductor/162220 -> ciflow/inductor/162220 2025-09-07T06:49:10.6088933Z * [new tag] ciflow/inductor/162222 -> ciflow/inductor/162222 2025-09-07T06:49:10.6089105Z * [new tag] ciflow/inductor/162227 -> ciflow/inductor/162227 2025-09-07T06:49:10.6089265Z * [new tag] ciflow/inductor/162238 -> ciflow/inductor/162238 2025-09-07T06:49:10.6089428Z * [new tag] ciflow/inductor/162239 -> ciflow/inductor/162239 2025-09-07T06:49:10.6089587Z * [new tag] ciflow/inductor/162240 -> ciflow/inductor/162240 2025-09-07T06:49:10.6089761Z * [new tag] ciflow/inductor/162244 -> ciflow/inductor/162244 2025-09-07T06:49:10.6089985Z * [new tag] ciflow/inductor/162245 -> ciflow/inductor/162245 2025-09-07T06:49:10.6090145Z * [new tag] ciflow/inductor/162262 -> ciflow/inductor/162262 2025-09-07T06:49:10.6090313Z * [new tag] ciflow/inductor/162275 -> ciflow/inductor/162275 2025-09-07T06:49:10.6090477Z * [new tag] ciflow/inductor/162278 -> ciflow/inductor/162278 2025-09-07T06:49:10.6090636Z * [new tag] ciflow/inductor/162284 -> ciflow/inductor/162284 2025-09-07T06:49:10.6090800Z * [new tag] ciflow/inductor/162286 -> ciflow/inductor/162286 2025-09-07T06:49:10.6090963Z * [new tag] ciflow/inductor/162288 -> ciflow/inductor/162288 2025-09-07T06:49:10.6091123Z * [new tag] ciflow/inductor/162293 -> ciflow/inductor/162293 2025-09-07T06:49:10.6091293Z * [new tag] ciflow/inductor/162294 -> ciflow/inductor/162294 2025-09-07T06:49:10.6091460Z * [new tag] ciflow/inductor/162295 -> ciflow/inductor/162295 2025-09-07T06:49:10.6091626Z * [new tag] ciflow/inductor/162296 -> ciflow/inductor/162296 2025-09-07T06:49:10.6091792Z * [new tag] ciflow/inductor/162298 -> ciflow/inductor/162298 2025-09-07T06:49:10.6091950Z * [new tag] ciflow/inductor/162307 -> ciflow/inductor/162307 2025-09-07T06:49:10.6092110Z * [new tag] ciflow/inductor/162309 -> ciflow/inductor/162309 2025-09-07T06:49:10.6092279Z * [new tag] ciflow/inductor/162311 -> ciflow/inductor/162311 2025-09-07T06:49:10.6092440Z * [new tag] ciflow/inductor/162312 -> ciflow/inductor/162312 2025-09-07T06:49:10.6092597Z * [new tag] ciflow/inductor/162315 -> ciflow/inductor/162315 2025-09-07T06:49:10.6092757Z * [new tag] ciflow/inductor/162316 -> ciflow/inductor/162316 2025-09-07T06:49:10.6092928Z * [new tag] ciflow/inductor/162318 -> ciflow/inductor/162318 2025-09-07T06:49:10.6093089Z * [new tag] ciflow/inductor/162323 -> ciflow/inductor/162323 2025-09-07T06:49:10.6093246Z * [new tag] ciflow/inductor/162341 -> ciflow/inductor/162341 2025-09-07T06:49:10.6093412Z * [new tag] ciflow/inductor/162345 -> ciflow/inductor/162345 2025-09-07T06:49:10.6093583Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-09-07T06:49:10.6093754Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-09-07T06:49:10.6094005Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-09-07T06:49:10.6094202Z * [new tag] ciflow/linux-aarch64/157994 -> ciflow/linux-aarch64/157994 2025-09-07T06:49:10.6094390Z * [new tag] ciflow/linux-aarch64/159737 -> ciflow/linux-aarch64/159737 2025-09-07T06:49:10.6094583Z * [new tag] ciflow/linux-aarch64/160078 -> ciflow/linux-aarch64/160078 2025-09-07T06:49:10.6094729Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-09-07T06:49:10.6094872Z * [new tag] ciflow/mps/157635 -> ciflow/mps/157635 2025-09-07T06:49:10.6095026Z * [new tag] ciflow/mps/161988 -> ciflow/mps/161988 2025-09-07T06:49:10.6095175Z * [new tag] ciflow/mps/162108 -> ciflow/mps/162108 2025-09-07T06:49:10.6095313Z * [new tag] ciflow/mps/162153 -> ciflow/mps/162153 2025-09-07T06:49:10.6095460Z * [new tag] ciflow/mps/162281 -> ciflow/mps/162281 2025-09-07T06:49:10.6095628Z * [new tag] ciflow/nightly/156049 -> ciflow/nightly/156049 2025-09-07T06:49:10.6095790Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-09-07T06:49:10.6096035Z * [new tag] ciflow/op-benchmark/157994 -> ciflow/op-benchmark/157994 2025-09-07T06:49:10.6096293Z * [new tag] ciflow/periodic-rocm-mi300/161529 -> ciflow/periodic-rocm-mi300/161529 2025-09-07T06:49:10.6096530Z * [new tag] ciflow/periodic-rocm-mi300/161715 -> ciflow/periodic-rocm-mi300/161715 2025-09-07T06:49:10.6096707Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-09-07T06:49:10.6096886Z * [new tag] ciflow/periodic/156703 -> ciflow/periodic/156703 2025-09-07T06:49:10.6097049Z * [new tag] ciflow/periodic/161715 -> ciflow/periodic/161715 2025-09-07T06:49:10.6097216Z * [new tag] ciflow/periodic/162021 -> ciflow/periodic/162021 2025-09-07T06:49:10.6097385Z * [new tag] ciflow/periodic/162323 -> ciflow/periodic/162323 2025-09-07T06:49:10.6097558Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-09-07T06:49:10.6097728Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-09-07T06:49:10.6097896Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-09-07T06:49:10.6098064Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-09-07T06:49:10.6098252Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-09-07T06:49:10.6098471Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-09-07T06:49:10.6098672Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-09-07T06:49:10.6098878Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-09-07T06:49:10.6099079Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-09-07T06:49:10.6099291Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-09-07T06:49:10.6099485Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-09-07T06:49:10.6099660Z * [new tag] ciflow/rocm-mi300/154170 -> ciflow/rocm-mi300/154170 2025-09-07T06:49:10.6099825Z * [new tag] ciflow/rocm-mi300/158747 -> ciflow/rocm-mi300/158747 2025-09-07T06:49:10.6099987Z * [new tag] ciflow/rocm-mi300/159146 -> ciflow/rocm-mi300/159146 2025-09-07T06:49:10.6100149Z * [new tag] ciflow/rocm-mi300/159158 -> ciflow/rocm-mi300/159158 2025-09-07T06:49:10.6100320Z * [new tag] ciflow/rocm-mi300/161715 -> ciflow/rocm-mi300/161715 2025-09-07T06:49:10.6100545Z * [new tag] ciflow/rocm-mi300/161957 -> ciflow/rocm-mi300/161957 2025-09-07T06:49:10.6100714Z * [new tag] ciflow/rocm-mi300/162053 -> ciflow/rocm-mi300/162053 2025-09-07T06:49:10.6100887Z * [new tag] ciflow/rocm-mi300/162056 -> ciflow/rocm-mi300/162056 2025-09-07T06:49:10.6101050Z * [new tag] ciflow/rocm-mi300/162112 -> ciflow/rocm-mi300/162112 2025-09-07T06:49:10.6101214Z * [new tag] ciflow/rocm-mi300/162245 -> ciflow/rocm-mi300/162245 2025-09-07T06:49:10.6101387Z * [new tag] ciflow/rocm-mi300/162278 -> ciflow/rocm-mi300/162278 2025-09-07T06:49:10.6101548Z * [new tag] ciflow/rocm-mi300/162288 -> ciflow/rocm-mi300/162288 2025-09-07T06:49:10.6101708Z * [new tag] ciflow/rocm-mi355/162053 -> ciflow/rocm-mi355/162053 2025-09-07T06:49:10.6101881Z * [new tag] ciflow/rocm-mi355/162056 -> ciflow/rocm-mi355/162056 2025-09-07T06:49:10.6102033Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-09-07T06:49:10.6102179Z * [new tag] ciflow/rocm/154170 -> ciflow/rocm/154170 2025-09-07T06:49:10.6102397Z * [new tag] ciflow/rocm/156491 -> ciflow/rocm/156491 2025-09-07T06:49:10.6102541Z * [new tag] ciflow/rocm/156592 -> ciflow/rocm/156592 2025-09-07T06:49:10.6102682Z * [new tag] ciflow/rocm/158747 -> ciflow/rocm/158747 2025-09-07T06:49:10.6102833Z * [new tag] ciflow/rocm/159146 -> ciflow/rocm/159146 2025-09-07T06:49:10.6102972Z * [new tag] ciflow/rocm/159158 -> ciflow/rocm/159158 2025-09-07T06:49:10.6103115Z * [new tag] ciflow/rocm/161715 -> ciflow/rocm/161715 2025-09-07T06:49:10.6103259Z * [new tag] ciflow/rocm/161972 -> ciflow/rocm/161972 2025-09-07T06:49:10.6103422Z * [new tag] ciflow/rocm/162052 -> ciflow/rocm/162052 2025-09-07T06:49:10.6103568Z * [new tag] ciflow/rocm/162053 -> ciflow/rocm/162053 2025-09-07T06:49:10.6103715Z * [new tag] ciflow/rocm/162056 -> ciflow/rocm/162056 2025-09-07T06:49:10.6103873Z * [new tag] ciflow/rocm/162112 -> ciflow/rocm/162112 2025-09-07T06:49:10.6104021Z * [new tag] ciflow/rocm/162278 -> ciflow/rocm/162278 2025-09-07T06:49:10.6104163Z * [new tag] ciflow/rocm/162288 -> ciflow/rocm/162288 2025-09-07T06:49:10.6104320Z * [new tag] ciflow/rocm/162305 -> ciflow/rocm/162305 2025-09-07T06:49:10.6104468Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-09-07T06:49:10.6104612Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-09-07T06:49:10.6105115Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-09-07T06:49:10.6105267Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-09-07T06:49:10.6105410Z * [new tag] ciflow/slow/161395 -> ciflow/slow/161395 2025-09-07T06:49:10.6105571Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-09-07T06:49:10.6105717Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-09-07T06:49:10.6105863Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-09-07T06:49:10.6106017Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-09-07T06:49:10.6106163Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-09-07T06:49:10.6106309Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-09-07T06:49:10.6106527Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-09-07T06:49:10.6106684Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-09-07T06:49:10.6107125Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-09-07T06:49:10.6107278Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-09-07T06:49:10.6107444Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-09-07T06:49:10.6107590Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-09-07T06:49:10.6107738Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-09-07T06:49:10.6107890Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-09-07T06:49:10.6108361Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-09-07T06:49:10.6108566Z * [new tag] ciflow/triton_binaries/162329 -> ciflow/triton_binaries/162329 2025-09-07T06:49:10.6108722Z * [new tag] ciflow/trunk/113258 -> ciflow/trunk/113258 2025-09-07T06:49:10.6108934Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-09-07T06:49:10.6109079Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-09-07T06:49:10.6109232Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-09-07T06:49:10.6109379Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-09-07T06:49:10.6109526Z * [new tag] ciflow/trunk/148919 -> ciflow/trunk/148919 2025-09-07T06:49:10.6109679Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-09-07T06:49:10.6109822Z * [new tag] ciflow/trunk/154170 -> ciflow/trunk/154170 2025-09-07T06:49:10.6109970Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-09-07T06:49:10.6110115Z * [new tag] ciflow/trunk/156049 -> ciflow/trunk/156049 2025-09-07T06:49:10.6110270Z * [new tag] ciflow/trunk/156703 -> ciflow/trunk/156703 2025-09-07T06:49:10.6110413Z * [new tag] ciflow/trunk/156711 -> ciflow/trunk/156711 2025-09-07T06:49:10.6110557Z * [new tag] ciflow/trunk/157432 -> ciflow/trunk/157432 2025-09-07T06:49:10.6110707Z * [new tag] ciflow/trunk/157685 -> ciflow/trunk/157685 2025-09-07T06:49:10.6110850Z * [new tag] ciflow/trunk/157689 -> ciflow/trunk/157689 2025-09-07T06:49:10.6110993Z * [new tag] ciflow/trunk/157699 -> ciflow/trunk/157699 2025-09-07T06:49:10.6111147Z * [new tag] ciflow/trunk/157813 -> ciflow/trunk/157813 2025-09-07T06:49:10.6111293Z * [new tag] ciflow/trunk/157994 -> ciflow/trunk/157994 2025-09-07T06:49:10.6111436Z * [new tag] ciflow/trunk/158091 -> ciflow/trunk/158091 2025-09-07T06:49:10.6111589Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-09-07T06:49:10.6111737Z * [new tag] ciflow/trunk/158404 -> ciflow/trunk/158404 2025-09-07T06:49:10.6111881Z * [new tag] ciflow/trunk/158647 -> ciflow/trunk/158647 2025-09-07T06:49:10.6112029Z * [new tag] ciflow/trunk/158846 -> ciflow/trunk/158846 2025-09-07T06:49:10.6112172Z * [new tag] ciflow/trunk/159158 -> ciflow/trunk/159158 2025-09-07T06:49:10.6112320Z * [new tag] ciflow/trunk/159682 -> ciflow/trunk/159682 2025-09-07T06:49:10.6112478Z * [new tag] ciflow/trunk/159835 -> ciflow/trunk/159835 2025-09-07T06:49:10.6112694Z * [new tag] ciflow/trunk/160161 -> ciflow/trunk/160161 2025-09-07T06:49:10.6112844Z * [new tag] ciflow/trunk/160236 -> ciflow/trunk/160236 2025-09-07T06:49:10.6112987Z * [new tag] ciflow/trunk/160329 -> ciflow/trunk/160329 2025-09-07T06:49:10.6113142Z * [new tag] ciflow/trunk/160480 -> ciflow/trunk/160480 2025-09-07T06:49:10.6113289Z * [new tag] ciflow/trunk/160532 -> ciflow/trunk/160532 2025-09-07T06:49:10.6113433Z * [new tag] ciflow/trunk/160836 -> ciflow/trunk/160836 2025-09-07T06:49:10.6113585Z * [new tag] ciflow/trunk/160843 -> ciflow/trunk/160843 2025-09-07T06:49:10.6113728Z * [new tag] ciflow/trunk/160869 -> ciflow/trunk/160869 2025-09-07T06:49:10.6113876Z * [new tag] ciflow/trunk/160940 -> ciflow/trunk/160940 2025-09-07T06:49:10.6114031Z * [new tag] ciflow/trunk/160943 -> ciflow/trunk/160943 2025-09-07T06:49:10.6114179Z * [new tag] ciflow/trunk/160953 -> ciflow/trunk/160953 2025-09-07T06:49:10.6114328Z * [new tag] ciflow/trunk/161035 -> ciflow/trunk/161035 2025-09-07T06:49:10.6114559Z * [new tag] ciflow/trunk/161178 -> ciflow/trunk/161178 2025-09-07T06:49:10.6114701Z * [new tag] ciflow/trunk/161349 -> ciflow/trunk/161349 2025-09-07T06:49:10.6114847Z * [new tag] ciflow/trunk/161350 -> ciflow/trunk/161350 2025-09-07T06:49:10.6115007Z * [new tag] ciflow/trunk/161351 -> ciflow/trunk/161351 2025-09-07T06:49:10.6115154Z * [new tag] ciflow/trunk/161395 -> ciflow/trunk/161395 2025-09-07T06:49:10.6115298Z * [new tag] ciflow/trunk/161405 -> ciflow/trunk/161405 2025-09-07T06:49:10.6115445Z * [new tag] ciflow/trunk/161406 -> ciflow/trunk/161406 2025-09-07T06:49:10.6115608Z * [new tag] ciflow/trunk/161410 -> ciflow/trunk/161410 2025-09-07T06:49:10.6115759Z * [new tag] ciflow/trunk/161468 -> ciflow/trunk/161468 2025-09-07T06:49:10.6115906Z * [new tag] ciflow/trunk/161499 -> ciflow/trunk/161499 2025-09-07T06:49:10.6116064Z * [new tag] ciflow/trunk/161527 -> ciflow/trunk/161527 2025-09-07T06:49:10.6116216Z * [new tag] ciflow/trunk/161534 -> ciflow/trunk/161534 2025-09-07T06:49:10.6116363Z * [new tag] ciflow/trunk/161591 -> ciflow/trunk/161591 2025-09-07T06:49:10.6116520Z * [new tag] ciflow/trunk/161595 -> ciflow/trunk/161595 2025-09-07T06:49:10.6116668Z * [new tag] ciflow/trunk/161596 -> ciflow/trunk/161596 2025-09-07T06:49:10.6116814Z * [new tag] ciflow/trunk/161633 -> ciflow/trunk/161633 2025-09-07T06:49:10.6116974Z * [new tag] ciflow/trunk/161634 -> ciflow/trunk/161634 2025-09-07T06:49:10.6117172Z * [new tag] ciflow/trunk/161635 -> ciflow/trunk/161635 2025-09-07T06:49:10.6117329Z * [new tag] ciflow/trunk/161667 -> ciflow/trunk/161667 2025-09-07T06:49:10.6117500Z * [new tag] ciflow/trunk/161670 -> ciflow/trunk/161670 2025-09-07T06:49:10.6117685Z * [new tag] ciflow/trunk/161692 -> ciflow/trunk/161692 2025-09-07T06:49:10.6117839Z * [new tag] ciflow/trunk/161693 -> ciflow/trunk/161693 2025-09-07T06:49:10.6117997Z * [new tag] ciflow/trunk/161695 -> ciflow/trunk/161695 2025-09-07T06:49:10.6118143Z * [new tag] ciflow/trunk/161730 -> ciflow/trunk/161730 2025-09-07T06:49:10.6118291Z * [new tag] ciflow/trunk/161744 -> ciflow/trunk/161744 2025-09-07T06:49:10.6118510Z * [new tag] ciflow/trunk/161749 -> ciflow/trunk/161749 2025-09-07T06:49:10.6118666Z * [new tag] ciflow/trunk/161881 -> ciflow/trunk/161881 2025-09-07T06:49:10.6118811Z * [new tag] ciflow/trunk/161924 -> ciflow/trunk/161924 2025-09-07T06:49:10.6118962Z * [new tag] ciflow/trunk/161926 -> ciflow/trunk/161926 2025-09-07T06:49:10.6119126Z * [new tag] ciflow/trunk/161936 -> ciflow/trunk/161936 2025-09-07T06:49:10.6119273Z * [new tag] ciflow/trunk/161952 -> ciflow/trunk/161952 2025-09-07T06:49:10.6119421Z * [new tag] ciflow/trunk/161955 -> ciflow/trunk/161955 2025-09-07T06:49:10.6119577Z * [new tag] ciflow/trunk/161957 -> ciflow/trunk/161957 2025-09-07T06:49:10.6119727Z * [new tag] ciflow/trunk/161959 -> ciflow/trunk/161959 2025-09-07T06:49:10.6119875Z * [new tag] ciflow/trunk/161977 -> ciflow/trunk/161977 2025-09-07T06:49:10.6120042Z * [new tag] ciflow/trunk/161988 -> ciflow/trunk/161988 2025-09-07T06:49:10.6120185Z * [new tag] ciflow/trunk/161994 -> ciflow/trunk/161994 2025-09-07T06:49:10.6120401Z * [new tag] ciflow/trunk/162007 -> ciflow/trunk/162007 2025-09-07T06:49:10.6120553Z * [new tag] ciflow/trunk/162013 -> ciflow/trunk/162013 2025-09-07T06:49:10.6120704Z * [new tag] ciflow/trunk/162017 -> ciflow/trunk/162017 2025-09-07T06:49:10.6120848Z * [new tag] ciflow/trunk/162021 -> ciflow/trunk/162021 2025-09-07T06:49:10.6120999Z * [new tag] ciflow/trunk/162022 -> ciflow/trunk/162022 2025-09-07T06:49:10.6121157Z * [new tag] ciflow/trunk/162040 -> ciflow/trunk/162040 2025-09-07T06:49:10.6121303Z * [new tag] ciflow/trunk/162041 -> ciflow/trunk/162041 2025-09-07T06:49:10.6121457Z * [new tag] ciflow/trunk/162062 -> ciflow/trunk/162062 2025-09-07T06:49:10.6121622Z * [new tag] ciflow/trunk/162066 -> ciflow/trunk/162066 2025-09-07T06:49:10.6121769Z * [new tag] ciflow/trunk/162089 -> ciflow/trunk/162089 2025-09-07T06:49:10.6121921Z * [new tag] ciflow/trunk/162099 -> ciflow/trunk/162099 2025-09-07T06:49:10.6122083Z * [new tag] ciflow/trunk/162104 -> ciflow/trunk/162104 2025-09-07T06:49:10.6122232Z * [new tag] ciflow/trunk/162106 -> ciflow/trunk/162106 2025-09-07T06:49:10.6122382Z * [new tag] ciflow/trunk/162112 -> ciflow/trunk/162112 2025-09-07T06:49:10.6122536Z * [new tag] ciflow/trunk/162119 -> ciflow/trunk/162119 2025-09-07T06:49:10.6122682Z * [new tag] ciflow/trunk/162142 -> ciflow/trunk/162142 2025-09-07T06:49:10.6122832Z * [new tag] ciflow/trunk/162169 -> ciflow/trunk/162169 2025-09-07T06:49:10.6122991Z * [new tag] ciflow/trunk/162183 -> ciflow/trunk/162183 2025-09-07T06:49:10.6123186Z * [new tag] ciflow/trunk/162190 -> ciflow/trunk/162190 2025-09-07T06:49:10.6123338Z * [new tag] ciflow/trunk/162194 -> ciflow/trunk/162194 2025-09-07T06:49:10.6123502Z * [new tag] ciflow/trunk/162200 -> ciflow/trunk/162200 2025-09-07T06:49:10.6123680Z * [new tag] ciflow/trunk/162206 -> ciflow/trunk/162206 2025-09-07T06:49:10.6123827Z * [new tag] ciflow/trunk/162208 -> ciflow/trunk/162208 2025-09-07T06:49:10.6123973Z * [new tag] ciflow/trunk/162222 -> ciflow/trunk/162222 2025-09-07T06:49:10.6124125Z * [new tag] ciflow/trunk/162238 -> ciflow/trunk/162238 2025-09-07T06:49:10.6124269Z * [new tag] ciflow/trunk/162244 -> ciflow/trunk/162244 2025-09-07T06:49:10.6124485Z * [new tag] ciflow/trunk/162267 -> ciflow/trunk/162267 2025-09-07T06:49:10.6124693Z * [new tag] ciflow/trunk/162269 -> ciflow/trunk/162269 2025-09-07T06:49:10.6124843Z * [new tag] ciflow/trunk/162278 -> ciflow/trunk/162278 2025-09-07T06:49:10.6124992Z * [new tag] ciflow/trunk/162286 -> ciflow/trunk/162286 2025-09-07T06:49:10.6125152Z * [new tag] ciflow/trunk/162288 -> ciflow/trunk/162288 2025-09-07T06:49:10.6125296Z * [new tag] ciflow/trunk/162293 -> ciflow/trunk/162293 2025-09-07T06:49:10.6125439Z * [new tag] ciflow/trunk/162310 -> ciflow/trunk/162310 2025-09-07T06:49:10.6125592Z * [new tag] ciflow/trunk/162311 -> ciflow/trunk/162311 2025-09-07T06:49:10.6125740Z * [new tag] ciflow/trunk/162315 -> ciflow/trunk/162315 2025-09-07T06:49:10.6125894Z * [new tag] ciflow/trunk/162325 -> ciflow/trunk/162325 2025-09-07T06:49:10.6126049Z * [new tag] ciflow/trunk/162328 -> ciflow/trunk/162328 2025-09-07T06:49:10.6126194Z * [new tag] ciflow/trunk/162329 -> ciflow/trunk/162329 2025-09-07T06:49:10.6126416Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-09-07T06:49:10.6126560Z * [new tag] ciflow/vllm/162292 -> ciflow/vllm/162292 2025-09-07T06:49:10.6126731Z * [new tag] ciflow/win-arm64/156049 -> ciflow/win-arm64/156049 2025-09-07T06:49:10.6126897Z * [new tag] ciflow/win-arm64/158104 -> ciflow/win-arm64/158104 2025-09-07T06:49:10.6127047Z * [new tag] ciflow/xpu/157699 -> ciflow/xpu/157699 2025-09-07T06:49:10.6127195Z * [new tag] ciflow/xpu/157994 -> ciflow/xpu/157994 2025-09-07T06:49:10.6127340Z * [new tag] ciflow/xpu/159459 -> ciflow/xpu/159459 2025-09-07T06:49:10.6127478Z * [new tag] ciflow/xpu/159718 -> ciflow/xpu/159718 2025-09-07T06:49:10.6133862Z * [new tag] ciflow/xpu/159944 -> ciflow/xpu/159944 2025-09-07T06:49:10.6134108Z * [new tag] ciflow/xpu/160867 -> ciflow/xpu/160867 2025-09-07T06:49:10.6134269Z * [new tag] ciflow/xpu/160938 -> ciflow/xpu/160938 2025-09-07T06:49:10.6134424Z * [new tag] ciflow/xpu/160940 -> ciflow/xpu/160940 2025-09-07T06:49:10.6134563Z * [new tag] ciflow/xpu/160953 -> ciflow/xpu/160953 2025-09-07T06:49:10.6134705Z * [new tag] ciflow/xpu/161045 -> ciflow/xpu/161045 2025-09-07T06:49:10.6134907Z * [new tag] ciflow/xpu/161058 -> ciflow/xpu/161058 2025-09-07T06:49:10.6135051Z * [new tag] ciflow/xpu/161246 -> ciflow/xpu/161246 2025-09-07T06:49:10.6135200Z * [new tag] ciflow/xpu/161397 -> ciflow/xpu/161397 2025-09-07T06:49:10.6135355Z * [new tag] ciflow/xpu/161485 -> ciflow/xpu/161485 2025-09-07T06:49:10.6135539Z * [new tag] ciflow/xpu/161988 -> ciflow/xpu/161988 2025-09-07T06:49:10.6135688Z * [new tag] ciflow/xpu/162062 -> ciflow/xpu/162062 2025-09-07T06:49:10.6135817Z * [new tag] cslpull75 -> cslpull75 2025-09-07T06:49:10.6135956Z * [new tag] cslpull76 -> cslpull76 2025-09-07T06:49:10.6136082Z * [new tag] cslpull77 -> cslpull77 2025-09-07T06:49:10.6136203Z * [new tag] cslpull78 -> cslpull78 2025-09-07T06:49:10.6136341Z * [new tag] cslpull79 -> cslpull79 2025-09-07T06:49:10.6136470Z * [new tag] cslpull80 -> cslpull80 2025-09-07T06:49:10.6136722Z * [new tag] cslpull81 -> cslpull81 2025-09-07T06:49:10.6136863Z * [new tag] cslpull82 -> cslpull82 2025-09-07T06:49:10.6136995Z * [new tag] cslpull83 -> cslpull83 2025-09-07T06:49:10.6137124Z * [new tag] cslpull84 -> cslpull84 2025-09-07T06:49:10.6137254Z * [new tag] cslpull85 -> cslpull85 2025-09-07T06:49:10.6137377Z * [new tag] cslpull86 -> cslpull86 2025-09-07T06:49:10.6137503Z * [new tag] cslpull87 -> cslpull87 2025-09-07T06:49:10.6137634Z * [new tag] cslpull88 -> cslpull88 2025-09-07T06:49:10.6137758Z * [new tag] cslpull89 -> cslpull89 2025-09-07T06:49:10.6137880Z * [new tag] cslpull90 -> cslpull90 2025-09-07T06:49:10.6138009Z * [new tag] cslpull91 -> cslpull91 2025-09-07T06:49:10.6138142Z * [new tag] cslpull92 -> cslpull92 2025-09-07T06:49:10.6138265Z * [new tag] flight_5 -> flight_5 2025-09-07T06:49:10.6138473Z * [new tag] flight_5.1 -> flight_5.1 2025-09-07T06:49:10.6138608Z * [new tag] flight_5.2 -> flight_5.2 2025-09-07T06:49:10.6138732Z * [new tag] flight_5.3 -> flight_5.3 2025-09-07T06:49:10.6138858Z * [new tag] forpull1 -> forpull1 2025-09-07T06:49:10.6139036Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-09-07T06:49:10.6139193Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-09-07T06:49:10.6139344Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-09-07T06:49:10.6139507Z * [new tag] nightly-binary -> nightly-binary 2025-09-07T06:49:10.6139665Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-09-07T06:49:10.6139816Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-09-07T06:49:10.6140166Z * [new tag] trunk/00636e0171e7e733628c408084805442270cf608 -> trunk/00636e0171e7e733628c408084805442270cf608 2025-09-07T06:49:10.6140526Z * [new tag] trunk/019fed39aa6b2dd8c69347378d53423e5efae8d4 -> trunk/019fed39aa6b2dd8c69347378d53423e5efae8d4 2025-09-07T06:49:10.6140925Z * [new tag] trunk/01ab325cc2e0dc221af4d710974e1b9175066544 -> trunk/01ab325cc2e0dc221af4d710974e1b9175066544 2025-09-07T06:49:10.6141344Z * [new tag] trunk/01edcd4df8bf0c7b4cc2d3ec868bd2059eeea83b -> trunk/01edcd4df8bf0c7b4cc2d3ec868bd2059eeea83b 2025-09-07T06:49:10.6141693Z * [new tag] trunk/040d00af048967dde7938d358d7f5988cbd18388 -> trunk/040d00af048967dde7938d358d7f5988cbd18388 2025-09-07T06:49:10.6142041Z * [new tag] trunk/0447f2d99b4351b2ff129dce6eebb371024f73e5 -> trunk/0447f2d99b4351b2ff129dce6eebb371024f73e5 2025-09-07T06:49:10.6142387Z * [new tag] trunk/047603d35bdc70046216384838d6340feab79bf4 -> trunk/047603d35bdc70046216384838d6340feab79bf4 2025-09-07T06:49:10.6142743Z * [new tag] trunk/06da7c0730b3764f178ec3a90dedf4ffa4202d81 -> trunk/06da7c0730b3764f178ec3a90dedf4ffa4202d81 2025-09-07T06:49:10.6143080Z * [new tag] trunk/081cab045472ce045634548cc6c14a4870641e23 -> trunk/081cab045472ce045634548cc6c14a4870641e23 2025-09-07T06:49:10.6143435Z * [new tag] trunk/09587daf8c9f21f5340f73921ce5f23d1a4a4572 -> trunk/09587daf8c9f21f5340f73921ce5f23d1a4a4572 2025-09-07T06:49:10.6143784Z * [new tag] trunk/09be1890d72cc34fc946965dc4a27736bf0ca8c6 -> trunk/09be1890d72cc34fc946965dc4a27736bf0ca8c6 2025-09-07T06:49:10.6144195Z * [new tag] trunk/09d2f1b6315d6d416fbf452793d65795863ebc66 -> trunk/09d2f1b6315d6d416fbf452793d65795863ebc66 2025-09-07T06:49:10.6144560Z * [new tag] trunk/0af70e2353e1dcda83175fd4834ecb7b63e009e0 -> trunk/0af70e2353e1dcda83175fd4834ecb7b63e009e0 2025-09-07T06:49:10.6144912Z * [new tag] trunk/0c0e056a9e20c17271a6144dd32c0c7e3ba26736 -> trunk/0c0e056a9e20c17271a6144dd32c0c7e3ba26736 2025-09-07T06:49:10.6145265Z * [new tag] trunk/0cd6c56bdfa9178ff61be82ce3b178926ddb64a9 -> trunk/0cd6c56bdfa9178ff61be82ce3b178926ddb64a9 2025-09-07T06:49:10.6145626Z * [new tag] trunk/0d421ace32c1605ee8e452ee1eeb03bd243dd96c -> trunk/0d421ace32c1605ee8e452ee1eeb03bd243dd96c 2025-09-07T06:49:10.6145984Z * [new tag] trunk/0d71a9dd5b4b6d1dde58d91c9b71d96bc6a6a171 -> trunk/0d71a9dd5b4b6d1dde58d91c9b71d96bc6a6a171 2025-09-07T06:49:10.6146335Z * [new tag] trunk/0d84ff3b78f55492d3d4708458c92d776274939e -> trunk/0d84ff3b78f55492d3d4708458c92d776274939e 2025-09-07T06:49:10.6146739Z * [new tag] trunk/0f45aaf4414048b17d720d0915ce221a8de8ec63 -> trunk/0f45aaf4414048b17d720d0915ce221a8de8ec63 2025-09-07T06:49:10.6147227Z * [new tag] trunk/0ff8eabf1387de5acd6712a03bda61f1a3dfa27f -> trunk/0ff8eabf1387de5acd6712a03bda61f1a3dfa27f 2025-09-07T06:49:10.6147571Z * [new tag] trunk/104f2680e03d13a4765ca69f905d8f16fc0c822f -> trunk/104f2680e03d13a4765ca69f905d8f16fc0c822f 2025-09-07T06:49:10.6147919Z * [new tag] trunk/12814701555d3e41dfcdf8f9273af5821e322df0 -> trunk/12814701555d3e41dfcdf8f9273af5821e322df0 2025-09-07T06:49:10.6148272Z * [new tag] trunk/13b65196db422bdb394cb482e208c61ed448898c -> trunk/13b65196db422bdb394cb482e208c61ed448898c 2025-09-07T06:49:10.6148620Z * [new tag] trunk/13d66e2a66eceed14b8a8f5a971087df4f688a46 -> trunk/13d66e2a66eceed14b8a8f5a971087df4f688a46 2025-09-07T06:49:10.6148990Z * [new tag] trunk/145a3a7bda15e3963a33eb1b54bba5d4a270b225 -> trunk/145a3a7bda15e3963a33eb1b54bba5d4a270b225 2025-09-07T06:49:10.6149330Z * [new tag] trunk/146371483318e17929daefd37c8e459d9d6d47bb -> trunk/146371483318e17929daefd37c8e459d9d6d47bb 2025-09-07T06:49:10.6149686Z * [new tag] trunk/15c77a8cfd341e74fd124b077492ef2bfa51b339 -> trunk/15c77a8cfd341e74fd124b077492ef2bfa51b339 2025-09-07T06:49:10.6150046Z * [new tag] trunk/17fa8eec4a1e32939ab4d364ee6e75487a79b654 -> trunk/17fa8eec4a1e32939ab4d364ee6e75487a79b654 2025-09-07T06:49:10.6150392Z * [new tag] trunk/190c391a28845a14df26abb228d26aa813efb20c -> trunk/190c391a28845a14df26abb228d26aa813efb20c 2025-09-07T06:49:10.6150749Z * [new tag] trunk/1a588ace4667bde1331fbd8ed957157dca5cee68 -> trunk/1a588ace4667bde1331fbd8ed957157dca5cee68 2025-09-07T06:49:10.6151104Z * [new tag] trunk/1aa7476885e8f6e7b0ec3a5b6383aad9d3f343e7 -> trunk/1aa7476885e8f6e7b0ec3a5b6383aad9d3f343e7 2025-09-07T06:49:10.6151454Z * [new tag] trunk/1aeb421c342c9e9607842f4c87cb46e8e816ee53 -> trunk/1aeb421c342c9e9607842f4c87cb46e8e816ee53 2025-09-07T06:49:10.6151805Z * [new tag] trunk/1c1b28d5b6a942fafe23b2f09302d93c25226d4a -> trunk/1c1b28d5b6a942fafe23b2f09302d93c25226d4a 2025-09-07T06:49:10.6152173Z * [new tag] trunk/1ebd70d0c0d562d3be9abdee2a21906584af7d99 -> trunk/1ebd70d0c0d562d3be9abdee2a21906584af7d99 2025-09-07T06:49:10.6152572Z * [new tag] trunk/1ec2c15914da4ef7bd926ed9aebc8671c75fe965 -> trunk/1ec2c15914da4ef7bd926ed9aebc8671c75fe965 2025-09-07T06:49:10.6152958Z * [new tag] trunk/1f51056bd64e73d1aa81321bc3c098575b1bc78a -> trunk/1f51056bd64e73d1aa81321bc3c098575b1bc78a 2025-09-07T06:49:10.6153316Z * [new tag] trunk/1f820de639c75a1562d3fb03f160439f853ae07b -> trunk/1f820de639c75a1562d3fb03f160439f853ae07b 2025-09-07T06:49:10.6153721Z * [new tag] trunk/204697f0e695d82894c5010fbec664c4391f90cc -> trunk/204697f0e695d82894c5010fbec664c4391f90cc 2025-09-07T06:49:10.6154061Z * [new tag] trunk/20629b1619fe636227d01fc85ba221daa7185a05 -> trunk/20629b1619fe636227d01fc85ba221daa7185a05 2025-09-07T06:49:10.6154421Z * [new tag] trunk/20b47acef845e9c4f71da9429a396d293f50ebe7 -> trunk/20b47acef845e9c4f71da9429a396d293f50ebe7 2025-09-07T06:49:10.6154761Z * [new tag] trunk/20bfb2539d7c5250379648eda35f80b8a7d642dd -> trunk/20bfb2539d7c5250379648eda35f80b8a7d642dd 2025-09-07T06:49:10.6155113Z * [new tag] trunk/21fae99c180d17def562797ea0fb154d8fdf88e3 -> trunk/21fae99c180d17def562797ea0fb154d8fdf88e3 2025-09-07T06:49:10.6155473Z * [new tag] trunk/248355faf53f9f7ba2fd0a367d59600c6d991e7f -> trunk/248355faf53f9f7ba2fd0a367d59600c6d991e7f 2025-09-07T06:49:10.6155819Z * [new tag] trunk/25f4aaed9ec26f39c13862323ff8582006473d23 -> trunk/25f4aaed9ec26f39c13862323ff8582006473d23 2025-09-07T06:49:10.6156166Z * [new tag] trunk/261a84a1764412f8e659c956e3f81997ec3de9d5 -> trunk/261a84a1764412f8e659c956e3f81997ec3de9d5 2025-09-07T06:49:10.6156515Z * [new tag] trunk/28f4ab0737937858730f29f5c4e601e109cf9d5f -> trunk/28f4ab0737937858730f29f5c4e601e109cf9d5f 2025-09-07T06:49:10.6156929Z * [new tag] trunk/291cd11f2d5df6f48d348cce0e4e762f274f4dc4 -> trunk/291cd11f2d5df6f48d348cce0e4e762f274f4dc4 2025-09-07T06:49:10.6157263Z * [new tag] trunk/29280864d941e6108ab57f7298f520c0cf9696e9 -> trunk/29280864d941e6108ab57f7298f520c0cf9696e9 2025-09-07T06:49:10.6157621Z * [new tag] trunk/2a45837e98c63cae9d1a2e2133a727b829e549d5 -> trunk/2a45837e98c63cae9d1a2e2133a727b829e549d5 2025-09-07T06:49:10.6157971Z * [new tag] trunk/2a5c0785e2f975697fd7bdf1411de6e03dcaa1ef -> trunk/2a5c0785e2f975697fd7bdf1411de6e03dcaa1ef 2025-09-07T06:49:10.6158368Z * [new tag] trunk/2b8a83901c58a0858ea9e4ce00055f48e6ed164c -> trunk/2b8a83901c58a0858ea9e4ce00055f48e6ed164c 2025-09-07T06:49:10.6158715Z * [new tag] trunk/2ba65472dd54488a86a50326ea990195fc6732d6 -> trunk/2ba65472dd54488a86a50326ea990195fc6732d6 2025-09-07T06:49:10.6159111Z * [new tag] trunk/2c03f0acc53ed13fe8ebfe809129f25996e009a0 -> trunk/2c03f0acc53ed13fe8ebfe809129f25996e009a0 2025-09-07T06:49:10.6159455Z * [new tag] trunk/2dd529df0092799f68ee7afcf52338276906706a -> trunk/2dd529df0092799f68ee7afcf52338276906706a 2025-09-07T06:49:10.6159825Z * [new tag] trunk/2f6b4b1ad3f82bb3bd984f6e65744ea339ffb8b5 -> trunk/2f6b4b1ad3f82bb3bd984f6e65744ea339ffb8b5 2025-09-07T06:49:10.6160170Z * [new tag] trunk/2fa0520a64ed8aa734a56c4d124958f0b5711ca8 -> trunk/2fa0520a64ed8aa734a56c4d124958f0b5711ca8 2025-09-07T06:49:10.6160524Z * [new tag] trunk/302df2ac5dc4222294c09d48804a2dddb8f4bad8 -> trunk/302df2ac5dc4222294c09d48804a2dddb8f4bad8 2025-09-07T06:49:10.6160885Z * [new tag] trunk/33028597bfa2e0178e28c8cce33cb9b3800cac43 -> trunk/33028597bfa2e0178e28c8cce33cb9b3800cac43 2025-09-07T06:49:10.6161219Z * [new tag] trunk/34aa78274d6770086025a967fa63a86830e08176 -> trunk/34aa78274d6770086025a967fa63a86830e08176 2025-09-07T06:49:10.6161573Z * [new tag] trunk/3559c354ce6a14d11fe29fb12fa2747a2f2af449 -> trunk/3559c354ce6a14d11fe29fb12fa2747a2f2af449 2025-09-07T06:49:10.6161935Z * [new tag] trunk/36d207fcaaede0d1e58a5168084c307b32b6fd8b -> trunk/36d207fcaaede0d1e58a5168084c307b32b6fd8b 2025-09-07T06:49:10.6162281Z * [new tag] trunk/377033757ae5ca524ea842f1b0a5f446ed3d8fe0 -> trunk/377033757ae5ca524ea842f1b0a5f446ed3d8fe0 2025-09-07T06:49:10.6162619Z * [new tag] trunk/3771380f83fcac154a7c89ad679311d8c4818287 -> trunk/3771380f83fcac154a7c89ad679311d8c4818287 2025-09-07T06:49:10.6163038Z * [new tag] trunk/3a207816cc569f78863d86c01f2a3d265350e39f -> trunk/3a207816cc569f78863d86c01f2a3d265350e39f 2025-09-07T06:49:10.6163386Z * [new tag] trunk/3a20a20e7065ec927fdd216d4da3b04f879b3c67 -> trunk/3a20a20e7065ec927fdd216d4da3b04f879b3c67 2025-09-07T06:49:10.6163752Z * [new tag] trunk/3bbc2e3e4f025523eaa5dbff220b3e96bca608d0 -> trunk/3bbc2e3e4f025523eaa5dbff220b3e96bca608d0 2025-09-07T06:49:10.6164130Z * [new tag] trunk/3c0ff1b569c45cfa6935ad8031a9d4cf1551aa3f -> trunk/3c0ff1b569c45cfa6935ad8031a9d4cf1551aa3f 2025-09-07T06:49:10.6164523Z * [new tag] trunk/3c45af079afc92a03b03ddf4f9198902ffcf30cf -> trunk/3c45af079afc92a03b03ddf4f9198902ffcf30cf 2025-09-07T06:49:10.6165003Z * [new tag] trunk/3dde5d7f9bf80dd6623a712bc429e9e4302464b5 -> trunk/3dde5d7f9bf80dd6623a712bc429e9e4302464b5 2025-09-07T06:49:10.6165366Z * [new tag] trunk/403a3a393cda7e60f503f3b04b8805a845dcf45d -> trunk/403a3a393cda7e60f503f3b04b8805a845dcf45d 2025-09-07T06:49:10.6165727Z * [new tag] trunk/420c52ecf36f86d32da0853bfbe074b682b070aa -> trunk/420c52ecf36f86d32da0853bfbe074b682b070aa 2025-09-07T06:49:10.6166076Z * [new tag] trunk/43b7c86a2c0f91320f5c5f4827b111edff06fdb6 -> trunk/43b7c86a2c0f91320f5c5f4827b111edff06fdb6 2025-09-07T06:49:10.6166501Z * [new tag] trunk/451ed931562ec8b46d1f7e6c266a68132a119336 -> trunk/451ed931562ec8b46d1f7e6c266a68132a119336 2025-09-07T06:49:10.6166839Z * [new tag] trunk/480c7391126656154318fabf1d57ebc01e196e63 -> trunk/480c7391126656154318fabf1d57ebc01e196e63 2025-09-07T06:49:10.6167201Z * [new tag] trunk/48bedd753da22634aa94fbafeb731e82025404f3 -> trunk/48bedd753da22634aa94fbafeb731e82025404f3 2025-09-07T06:49:10.6167548Z * [new tag] trunk/494878a11b79071ada0b98f34042d47155be6d1c -> trunk/494878a11b79071ada0b98f34042d47155be6d1c 2025-09-07T06:49:10.6167906Z * [new tag] trunk/4ae57d448c0a7d37e4cfd5c27d977fad2cef4051 -> trunk/4ae57d448c0a7d37e4cfd5c27d977fad2cef4051 2025-09-07T06:49:10.6168267Z * [new tag] trunk/4cdaf8265d86f984254b62052da8c26ef61ef1cf -> trunk/4cdaf8265d86f984254b62052da8c26ef61ef1cf 2025-09-07T06:49:10.6168642Z * [new tag] trunk/4d4abec80f03cd8fdefe1d9cb3a60d3690cd777e -> trunk/4d4abec80f03cd8fdefe1d9cb3a60d3690cd777e 2025-09-07T06:49:10.6169012Z * [new tag] trunk/4e42aa8ffc44b8340eb0eeaf80a2cafc4763a186 -> trunk/4e42aa8ffc44b8340eb0eeaf80a2cafc4763a186 2025-09-07T06:49:10.6169372Z * [new tag] trunk/4f72d932feee0749397fec876dcd43994f50b215 -> trunk/4f72d932feee0749397fec876dcd43994f50b215 2025-09-07T06:49:10.6169724Z * [new tag] trunk/50fc22dedf3c4a27be61fa05551c4f320281b42d -> trunk/50fc22dedf3c4a27be61fa05551c4f320281b42d 2025-09-07T06:49:10.6170105Z * [new tag] trunk/5211f1f908907ffc064b56e43cf8659f7fc22aa9 -> trunk/5211f1f908907ffc064b56e43cf8659f7fc22aa9 2025-09-07T06:49:10.6170468Z * [new tag] trunk/524b78d4f67045b83bb69edc56ab16efe282971c -> trunk/524b78d4f67045b83bb69edc56ab16efe282971c 2025-09-07T06:49:10.6170871Z * [new tag] trunk/54e275e0d81fe1e1ccfa4fb5f2a5a9aaca00ca15 -> trunk/54e275e0d81fe1e1ccfa4fb5f2a5a9aaca00ca15 2025-09-07T06:49:10.6171215Z * [new tag] trunk/5561e45758d59c94605873d5db48ed459c004c3b -> trunk/5561e45758d59c94605873d5db48ed459c004c3b 2025-09-07T06:49:10.6171566Z * [new tag] trunk/57278d45f046d4f89f45d373b1af4dd56934ff24 -> trunk/57278d45f046d4f89f45d373b1af4dd56934ff24 2025-09-07T06:49:10.6171903Z * [new tag] trunk/5927a70934ccf7b70182d364c23245a7dd685503 -> trunk/5927a70934ccf7b70182d364c23245a7dd685503 2025-09-07T06:49:10.6172252Z * [new tag] trunk/5985e28912aeb40b103ebfcf2fd0665eb4a50599 -> trunk/5985e28912aeb40b103ebfcf2fd0665eb4a50599 2025-09-07T06:49:10.6172623Z * [new tag] trunk/5a2da090ed6db88bb657c4e51ec0b310cd08bff6 -> trunk/5a2da090ed6db88bb657c4e51ec0b310cd08bff6 2025-09-07T06:49:10.6173045Z * [new tag] trunk/5c473e9f5ee0ef0fc38e6cf34a95b547f8cdc8d5 -> trunk/5c473e9f5ee0ef0fc38e6cf34a95b547f8cdc8d5 2025-09-07T06:49:10.6173386Z * [new tag] trunk/5c67426d6847667a7c55a2dd01f470fa37238c18 -> trunk/5c67426d6847667a7c55a2dd01f470fa37238c18 2025-09-07T06:49:10.6173755Z * [new tag] trunk/5da573c42c332bc68d4b7946c69f690a876d951a -> trunk/5da573c42c332bc68d4b7946c69f690a876d951a 2025-09-07T06:49:10.6174097Z * [new tag] trunk/5e5870e858f60ff4bf87d03f3592097e934a9580 -> trunk/5e5870e858f60ff4bf87d03f3592097e934a9580 2025-09-07T06:49:10.6174457Z * [new tag] trunk/5f3cbc9442aa55b5afb29f4ac8ca9be569003e84 -> trunk/5f3cbc9442aa55b5afb29f4ac8ca9be569003e84 2025-09-07T06:49:10.6174814Z * [new tag] trunk/600c25e9a17fe56e3dee872be8854db08916ba0c -> trunk/600c25e9a17fe56e3dee872be8854db08916ba0c 2025-09-07T06:49:10.6175172Z * [new tag] trunk/601ae8e4831fc8123fffcfb8fd2e6b6381b42e14 -> trunk/601ae8e4831fc8123fffcfb8fd2e6b6381b42e14 2025-09-07T06:49:10.6175516Z * [new tag] trunk/6087ef41e54c2494b117ffd923faf20f515a6806 -> trunk/6087ef41e54c2494b117ffd923faf20f515a6806 2025-09-07T06:49:10.6175990Z * [new tag] trunk/626cb7df8161dd4ecb4fe43b60f37ce9076f56b1 -> trunk/626cb7df8161dd4ecb4fe43b60f37ce9076f56b1 2025-09-07T06:49:10.6176339Z * [new tag] trunk/62c3f9a97fd3dea7132a93066d32d893ffe101e6 -> trunk/62c3f9a97fd3dea7132a93066d32d893ffe101e6 2025-09-07T06:49:10.6176734Z * [new tag] trunk/63a9c23fe99eacfd09610c36dfe8f01b053c1a35 -> trunk/63a9c23fe99eacfd09610c36dfe8f01b053c1a35 2025-09-07T06:49:10.6177075Z * [new tag] trunk/65985937d97505f648b6ed852c3129f2dd08b251 -> trunk/65985937d97505f648b6ed852c3129f2dd08b251 2025-09-07T06:49:10.6177411Z * [new tag] trunk/66f3b4a682a6153517dd23369fdc3289b6494b07 -> trunk/66f3b4a682a6153517dd23369fdc3289b6494b07 2025-09-07T06:49:10.6177754Z * [new tag] trunk/6737e2c996990024187ba620d2764f3b6f6add2c -> trunk/6737e2c996990024187ba620d2764f3b6f6add2c 2025-09-07T06:49:10.6178105Z * [new tag] trunk/67c31dcd364f10072a55f4a30ffd1151c686283a -> trunk/67c31dcd364f10072a55f4a30ffd1151c686283a 2025-09-07T06:49:10.6178455Z * [new tag] trunk/68738beff73e9c3512e18b4edea811a897ce42db -> trunk/68738beff73e9c3512e18b4edea811a897ce42db 2025-09-07T06:49:10.6178785Z * [new tag] trunk/69a25f68884a168550695fdb1a7c310c54d29536 -> trunk/69a25f68884a168550695fdb1a7c310c54d29536 2025-09-07T06:49:10.6179124Z * [new tag] trunk/6b1900c22f1a07b9519346898d4c71d8a2b0f12f -> trunk/6b1900c22f1a07b9519346898d4c71d8a2b0f12f 2025-09-07T06:49:10.6179467Z * [new tag] trunk/6b8b3ac4403f771bd4a8f9a45d93347304148774 -> trunk/6b8b3ac4403f771bd4a8f9a45d93347304148774 2025-09-07T06:49:10.6179810Z * [new tag] trunk/6f7608d603834d6068b2e7a5d59bec3973b6bb1b -> trunk/6f7608d603834d6068b2e7a5d59bec3973b6bb1b 2025-09-07T06:49:10.6180156Z * [new tag] trunk/70d36e047dfb3488fd6335016711a784d810ebda -> trunk/70d36e047dfb3488fd6335016711a784d810ebda 2025-09-07T06:49:10.6180503Z * [new tag] trunk/71992dd805ff9d6763f77214dfe8b0465e88c87b -> trunk/71992dd805ff9d6763f77214dfe8b0465e88c87b 2025-09-07T06:49:10.6180854Z * [new tag] trunk/734ce8eba9c69381f187359bf0fef1d71d84cd20 -> trunk/734ce8eba9c69381f187359bf0fef1d71d84cd20 2025-09-07T06:49:10.6181204Z * [new tag] trunk/73eb4511fb863a37944342b7e92aae706de603c8 -> trunk/73eb4511fb863a37944342b7e92aae706de603c8 2025-09-07T06:49:10.6181558Z * [new tag] trunk/75bc23cfc345bd4c05e7f97c416c4b3d2d1fa64b -> trunk/75bc23cfc345bd4c05e7f97c416c4b3d2d1fa64b 2025-09-07T06:49:10.6181934Z * [new tag] trunk/771f369448321a387f2018535bc8b8b6e5f12fab -> trunk/771f369448321a387f2018535bc8b8b6e5f12fab 2025-09-07T06:49:10.6182391Z * [new tag] trunk/789d4942127143f2adcb53612c058ce4c9a2cf20 -> trunk/789d4942127143f2adcb53612c058ce4c9a2cf20 2025-09-07T06:49:10.6182734Z * [new tag] trunk/791eff96c85678c950888f9da24650083ee673fe -> trunk/791eff96c85678c950888f9da24650083ee673fe 2025-09-07T06:49:10.6183096Z * [new tag] trunk/793fc12aff1f69fbbf9f4278182fb52bbe350fc9 -> trunk/793fc12aff1f69fbbf9f4278182fb52bbe350fc9 2025-09-07T06:49:10.6183456Z * [new tag] trunk/79fcd5247a9a129eee526a14df30bfc6a22b3f01 -> trunk/79fcd5247a9a129eee526a14df30bfc6a22b3f01 2025-09-07T06:49:10.6183799Z * [new tag] trunk/7f4ff79210eb06924f223ae3a1941ee0e2635348 -> trunk/7f4ff79210eb06924f223ae3a1941ee0e2635348 2025-09-07T06:49:10.6184136Z * [new tag] trunk/8076a185c85112be62be292eb47409c88a585b1c -> trunk/8076a185c85112be62be292eb47409c88a585b1c 2025-09-07T06:49:10.6184484Z * [new tag] trunk/80dd397f1979371a5583fa3d5c7352029522a78d -> trunk/80dd397f1979371a5583fa3d5c7352029522a78d 2025-09-07T06:49:10.6184815Z * [new tag] trunk/8171d6052ec12628eb67e0040839314056014429 -> trunk/8171d6052ec12628eb67e0040839314056014429 2025-09-07T06:49:10.6185170Z * [new tag] trunk/81aeefa657b7ccc26b275c50a9f33b2f056e8071 -> trunk/81aeefa657b7ccc26b275c50a9f33b2f056e8071 2025-09-07T06:49:10.6186019Z * [new tag] trunk/81b7b16618bda250ce55982894a83dc0805eb64c -> trunk/81b7b16618bda250ce55982894a83dc0805eb64c 2025-09-07T06:49:10.6186360Z * [new tag] trunk/827f0d405448de31f79d1089f7d7fceab2f87895 -> trunk/827f0d405448de31f79d1089f7d7fceab2f87895 2025-09-07T06:49:10.6186708Z * [new tag] trunk/82f63c8f6de63c30132a8ac299b6e8c2fd0d3fe8 -> trunk/82f63c8f6de63c30132a8ac299b6e8c2fd0d3fe8 2025-09-07T06:49:10.6187059Z * [new tag] trunk/850e1382a9c56bfde18af09d3e72352d775e9435 -> trunk/850e1382a9c56bfde18af09d3e72352d775e9435 2025-09-07T06:49:10.6187402Z * [new tag] trunk/8678d831c48e616b717bff50f2d03141d2e9f965 -> trunk/8678d831c48e616b717bff50f2d03141d2e9f965 2025-09-07T06:49:10.6187795Z * [new tag] trunk/869cbcc16e489a4f5a14a93d5779b0ea86061c60 -> trunk/869cbcc16e489a4f5a14a93d5779b0ea86061c60 2025-09-07T06:49:10.6188166Z * [new tag] trunk/8703debf669bc2238211bfd039f4ecdd8228b7f7 -> trunk/8703debf669bc2238211bfd039f4ecdd8228b7f7 2025-09-07T06:49:10.6188551Z * [new tag] trunk/874069fbe46e82da5cfa405e6c0deb12e89ff608 -> trunk/874069fbe46e82da5cfa405e6c0deb12e89ff608 2025-09-07T06:49:10.6188906Z * [new tag] trunk/8875d6e394da2fffd04f31b28bf258c94d4776a3 -> trunk/8875d6e394da2fffd04f31b28bf258c94d4776a3 2025-09-07T06:49:10.6189263Z * [new tag] trunk/88d94d17e8c5155451393afa6eb3bab48ab61c16 -> trunk/88d94d17e8c5155451393afa6eb3bab48ab61c16 2025-09-07T06:49:10.6189610Z * [new tag] trunk/890626632def7e0ef95a2d01e87a0e4627824a9f -> trunk/890626632def7e0ef95a2d01e87a0e4627824a9f 2025-09-07T06:49:10.6189965Z * [new tag] trunk/8975cda2520b7b1b5bc3b4d8213edf261fa82570 -> trunk/8975cda2520b7b1b5bc3b4d8213edf261fa82570 2025-09-07T06:49:10.6190315Z * [new tag] trunk/89d41d3f61d04f14730ec26f008a59bef6624610 -> trunk/89d41d3f61d04f14730ec26f008a59bef6624610 2025-09-07T06:49:10.6190666Z * [new tag] trunk/8bb213b6d599ef1273fe52f9b1f6d476056c3a41 -> trunk/8bb213b6d599ef1273fe52f9b1f6d476056c3a41 2025-09-07T06:49:10.6191014Z * [new tag] trunk/8e23a1227b5fb2e39afaa7d57c075a75b640a5af -> trunk/8e23a1227b5fb2e39afaa7d57c075a75b640a5af 2025-09-07T06:49:10.6191374Z * [new tag] trunk/8ec551bb354ab2b85fbbba9d461740a20366d248 -> trunk/8ec551bb354ab2b85fbbba9d461740a20366d248 2025-09-07T06:49:10.6191730Z * [new tag] trunk/8fd3c9ce919c8d5c645fd348bba517e948cbc29d -> trunk/8fd3c9ce919c8d5c645fd348bba517e948cbc29d 2025-09-07T06:49:10.6192157Z * [new tag] trunk/90f50f7e68e120d9574e6e3189e37b4280010ad9 -> trunk/90f50f7e68e120d9574e6e3189e37b4280010ad9 2025-09-07T06:49:10.6192523Z * [new tag] trunk/91f0bcf43fc0bc743350d491ac63b77e92054ac9 -> trunk/91f0bcf43fc0bc743350d491ac63b77e92054ac9 2025-09-07T06:49:10.6192873Z * [new tag] trunk/92576a594b8121f6b0b1b5a3ea16d08792fc68ab -> trunk/92576a594b8121f6b0b1b5a3ea16d08792fc68ab 2025-09-07T06:49:10.6193223Z * [new tag] trunk/92a43025e0baa1f2ce345f28d22913b518a1ab9d -> trunk/92a43025e0baa1f2ce345f28d22913b518a1ab9d 2025-09-07T06:49:10.6193616Z * [new tag] trunk/93fb23d6fae7c4e82c4239a1033e522088742634 -> trunk/93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:49:10.6193970Z * [new tag] trunk/9458d1ac3bd70c2af316a8ba95d2c6c9c1199c9c -> trunk/9458d1ac3bd70c2af316a8ba95d2c6c9c1199c9c 2025-09-07T06:49:10.6194357Z * [new tag] trunk/9480cdc0b61488c89a23c2f64f43b2dcedc8728e -> trunk/9480cdc0b61488c89a23c2f64f43b2dcedc8728e 2025-09-07T06:49:10.6194717Z * [new tag] trunk/9491d289b329e4ba4a9f5f5b1be7960671bb7840 -> trunk/9491d289b329e4ba4a9f5f5b1be7960671bb7840 2025-09-07T06:49:10.6195053Z * [new tag] trunk/9499c8761cd2067feb9877414e818f6fd00290f1 -> trunk/9499c8761cd2067feb9877414e818f6fd00290f1 2025-09-07T06:49:10.6195477Z * [new tag] trunk/95ee0bfea99d3d346d6502b91b497d2b35795504 -> trunk/95ee0bfea99d3d346d6502b91b497d2b35795504 2025-09-07T06:49:10.6195831Z * [new tag] trunk/98374612fc2febd686be20761e56bdc2424bc36a -> trunk/98374612fc2febd686be20761e56bdc2424bc36a 2025-09-07T06:49:10.6196184Z * [new tag] trunk/98efc9e93d8fc61eb53cb91378443617cb550500 -> trunk/98efc9e93d8fc61eb53cb91378443617cb550500 2025-09-07T06:49:10.6196559Z * [new tag] trunk/994f2a5dbcbdc915da39bf6f6ce4d1f5e74835c9 -> trunk/994f2a5dbcbdc915da39bf6f6ce4d1f5e74835c9 2025-09-07T06:49:10.6196905Z * [new tag] trunk/99f356fa58c8d726cef022d8710f5491291158f6 -> trunk/99f356fa58c8d726cef022d8710f5491291158f6 2025-09-07T06:49:10.6197261Z * [new tag] trunk/9a1c5c0a078b94d13ac5c1ae0d754d19fb73bf99 -> trunk/9a1c5c0a078b94d13ac5c1ae0d754d19fb73bf99 2025-09-07T06:49:10.6197632Z * [new tag] trunk/9a665ca3c472384e9d722bddba79e5a7680f1abd -> trunk/9a665ca3c472384e9d722bddba79e5a7680f1abd 2025-09-07T06:49:10.6197970Z * [new tag] trunk/9aedb3cd87b52160872173c177f61053d97bed57 -> trunk/9aedb3cd87b52160872173c177f61053d97bed57 2025-09-07T06:49:10.6198308Z * [new tag] trunk/9b81fe281da41f2421506339d26b027a468902f4 -> trunk/9b81fe281da41f2421506339d26b027a468902f4 2025-09-07T06:49:10.6198675Z * [new tag] trunk/9bdcee01f86e2969cff1140cdecfca13cb51816e -> trunk/9bdcee01f86e2969cff1140cdecfca13cb51816e 2025-09-07T06:49:10.6199035Z * [new tag] trunk/9c03d6be87eedc06e524e202e07a7e776551a839 -> trunk/9c03d6be87eedc06e524e202e07a7e776551a839 2025-09-07T06:49:10.6199386Z * [new tag] trunk/9c957723a0fedd9c637e63e023a613019e2cab60 -> trunk/9c957723a0fedd9c637e63e023a613019e2cab60 2025-09-07T06:49:10.6199768Z * [new tag] trunk/9e5247f51d81735e5f1e65e80588985fa93bccc5 -> trunk/9e5247f51d81735e5f1e65e80588985fa93bccc5 2025-09-07T06:49:10.6200180Z * [new tag] trunk/9eadb37cdd699f7e8e8177a5227bfeb16184ef26 -> trunk/9eadb37cdd699f7e8e8177a5227bfeb16184ef26 2025-09-07T06:49:10.6200539Z * [new tag] trunk/a00cdc1e4159db73c9ffb3f25e93e55877709a29 -> trunk/a00cdc1e4159db73c9ffb3f25e93e55877709a29 2025-09-07T06:49:10.6200889Z * [new tag] trunk/a02ee4a816d11380c6f564c1aba64d56af5ba705 -> trunk/a02ee4a816d11380c6f564c1aba64d56af5ba705 2025-09-07T06:49:10.6201232Z * [new tag] trunk/a3c7f77e50f900721817934120d60c2361b3c40d -> trunk/a3c7f77e50f900721817934120d60c2361b3c40d 2025-09-07T06:49:10.6201994Z * [new tag] trunk/a3d72b09ae12126a2b7d4a63a45ac100a882a802 -> trunk/a3d72b09ae12126a2b7d4a63a45ac100a882a802 2025-09-07T06:49:10.6202342Z * [new tag] trunk/a3e5466002791da609fcb069155d8ee347baee92 -> trunk/a3e5466002791da609fcb069155d8ee347baee92 2025-09-07T06:49:10.6202705Z * [new tag] trunk/a714437093ed196eee28f7de454cf4c41badc098 -> trunk/a714437093ed196eee28f7de454cf4c41badc098 2025-09-07T06:49:10.6203051Z * [new tag] trunk/a75e8cd27098f290de0b7439685d05ce02e91356 -> trunk/a75e8cd27098f290de0b7439685d05ce02e91356 2025-09-07T06:49:10.6203394Z * [new tag] trunk/a8d6943d36c1c2a5f90d3573460695bad4b623ae -> trunk/a8d6943d36c1c2a5f90d3573460695bad4b623ae 2025-09-07T06:49:10.6203766Z * [new tag] trunk/a918bbad6ab20649ff82eefb48417ecbe96bcb34 -> trunk/a918bbad6ab20649ff82eefb48417ecbe96bcb34 2025-09-07T06:49:10.6204115Z * [new tag] trunk/a99d8d39bc842d6ebc3e368b178e4884d24b056e -> trunk/a99d8d39bc842d6ebc3e368b178e4884d24b056e 2025-09-07T06:49:10.6204472Z * [new tag] trunk/aac1a50a191b4102d566c9c1ea22f06d6c2e3f02 -> trunk/aac1a50a191b4102d566c9c1ea22f06d6c2e3f02 2025-09-07T06:49:10.6204923Z * [new tag] trunk/aad96a202244c7d0d120c04ba8db593edd8c0f92 -> trunk/aad96a202244c7d0d120c04ba8db593edd8c0f92 2025-09-07T06:49:10.6205402Z * [new tag] trunk/ab643e4dbbaf7b663d4237514cbf01af9b11565c -> trunk/ab643e4dbbaf7b663d4237514cbf01af9b11565c 2025-09-07T06:49:10.6205759Z * [new tag] trunk/abc447174cd2cf8591edbc70a9f836f9a5779f47 -> trunk/abc447174cd2cf8591edbc70a9f836f9a5779f47 2025-09-07T06:49:10.6206172Z * [new tag] trunk/acece97c3a9dceb63194e314da93fdf37cf15a0d -> trunk/acece97c3a9dceb63194e314da93fdf37cf15a0d 2025-09-07T06:49:10.6206532Z * [new tag] trunk/adae7f66aacf3f248c3101b858cf98d5809119fa -> trunk/adae7f66aacf3f248c3101b858cf98d5809119fa 2025-09-07T06:49:10.6206899Z * [new tag] trunk/ae0edc133e61e3b16caf0b2ee0ff3f33ab72af4c -> trunk/ae0edc133e61e3b16caf0b2ee0ff3f33ab72af4c 2025-09-07T06:49:10.6207267Z * [new tag] trunk/aed33a8fcbd60b052d4559d261390c5797129c6d -> trunk/aed33a8fcbd60b052d4559d261390c5797129c6d 2025-09-07T06:49:10.6207605Z * [new tag] trunk/b04e922712080a3652e438d05e8bb74e0cd2d238 -> trunk/b04e922712080a3652e438d05e8bb74e0cd2d238 2025-09-07T06:49:10.6207962Z * [new tag] trunk/b0a3e58dd71c1a039ac0ef51e5bd8f704f632f6f -> trunk/b0a3e58dd71c1a039ac0ef51e5bd8f704f632f6f 2025-09-07T06:49:10.6208329Z * [new tag] trunk/b16d3f4c8c01d461c2f01064e9ca5fa2b33f5cf1 -> trunk/b16d3f4c8c01d461c2f01064e9ca5fa2b33f5cf1 2025-09-07T06:49:10.6208668Z * [new tag] trunk/b18bb6796f210a183e687d9d64984a5a9d13cf09 -> trunk/b18bb6796f210a183e687d9d64984a5a9d13cf09 2025-09-07T06:49:10.6209031Z * [new tag] trunk/b1bb98ddebdd3e41bf7987372409bdce96ae55de -> trunk/b1bb98ddebdd3e41bf7987372409bdce96ae55de 2025-09-07T06:49:10.6209388Z * [new tag] trunk/b2b4add0e754411372060e1d7b4057a66439172b -> trunk/b2b4add0e754411372060e1d7b4057a66439172b 2025-09-07T06:49:10.6209751Z * [new tag] trunk/b2c7b9ad2dc5a7c0b61febd307761bd5bc2f0f05 -> trunk/b2c7b9ad2dc5a7c0b61febd307761bd5bc2f0f05 2025-09-07T06:49:10.6210103Z * [new tag] trunk/b40d9432be44a6b5974ee62e7d19c3c61c5ece37 -> trunk/b40d9432be44a6b5974ee62e7d19c3c61c5ece37 2025-09-07T06:49:10.6210456Z * [new tag] trunk/b4ad38279b178b7bd14355123c1101e2e853e77b -> trunk/b4ad38279b178b7bd14355123c1101e2e853e77b 2025-09-07T06:49:10.6210801Z * [new tag] trunk/b67c41039835bd9b20b83cd6233e86baaa5f5dde -> trunk/b67c41039835bd9b20b83cd6233e86baaa5f5dde 2025-09-07T06:49:10.6211161Z * [new tag] trunk/b6d0a9ea9056ede4f7024dbf3bd6c43be3aff49c -> trunk/b6d0a9ea9056ede4f7024dbf3bd6c43be3aff49c 2025-09-07T06:49:10.6211560Z * [new tag] trunk/b7dad7dd49448c88d0751fa2e29c70afe985f734 -> trunk/b7dad7dd49448c88d0751fa2e29c70afe985f734 2025-09-07T06:49:10.6212017Z * [new tag] trunk/b7e207ca9f046ddd716076965a0cce403ba99052 -> trunk/b7e207ca9f046ddd716076965a0cce403ba99052 2025-09-07T06:49:10.6212360Z * [new tag] trunk/b919560c4a7010e2d89facee25586269a994746e -> trunk/b919560c4a7010e2d89facee25586269a994746e 2025-09-07T06:49:10.6212723Z * [new tag] trunk/b9ba612f7a968f7b27e121ca8f4d0a4d954f5354 -> trunk/b9ba612f7a968f7b27e121ca8f4d0a4d954f5354 2025-09-07T06:49:10.6213079Z * [new tag] trunk/ba7f546ccccb5e0b36d9070dc25f26a9647f89f8 -> trunk/ba7f546ccccb5e0b36d9070dc25f26a9647f89f8 2025-09-07T06:49:10.6213415Z * [new tag] trunk/bb950284c7e72905994bc25dd436c10e48088d85 -> trunk/bb950284c7e72905994bc25dd436c10e48088d85 2025-09-07T06:49:10.6213787Z * [new tag] trunk/bbedc71fd3267c639c38b4ec25eaa22f973d9c4d -> trunk/bbedc71fd3267c639c38b4ec25eaa22f973d9c4d 2025-09-07T06:49:10.6214155Z * [new tag] trunk/bc4db2c27fce6ff1648bdc5af31ec225d2a31f37 -> trunk/bc4db2c27fce6ff1648bdc5af31ec225d2a31f37 2025-09-07T06:49:10.6214493Z * [new tag] trunk/bc505977fb66677a09c31155c987330fbb18a865 -> trunk/bc505977fb66677a09c31155c987330fbb18a865 2025-09-07T06:49:10.6214932Z * [new tag] trunk/bd39e47feea7326afb5bbb67fcb1e69279239527 -> trunk/bd39e47feea7326afb5bbb67fcb1e69279239527 2025-09-07T06:49:10.6215291Z * [new tag] trunk/be5b03dde96638f25ffd732a4fed7e41b4cf40e1 -> trunk/be5b03dde96638f25ffd732a4fed7e41b4cf40e1 2025-09-07T06:49:10.6215646Z * [new tag] trunk/bffc7dd1f374d8408911cd22c6b3d6df39ded9b3 -> trunk/bffc7dd1f374d8408911cd22c6b3d6df39ded9b3 2025-09-07T06:49:10.6216012Z * [new tag] trunk/c024b1f5a18d5c5aee5cc2acdd4c52b24b93ffcf -> trunk/c024b1f5a18d5c5aee5cc2acdd4c52b24b93ffcf 2025-09-07T06:49:10.6216357Z * [new tag] trunk/c0983e6cc0acf71689e1851d12609e00b3f59371 -> trunk/c0983e6cc0acf71689e1851d12609e00b3f59371 2025-09-07T06:49:10.6216721Z * [new tag] trunk/c10195e723eeeedd099ed8b73eda7184ca618fad -> trunk/c10195e723eeeedd099ed8b73eda7184ca618fad 2025-09-07T06:49:10.6217113Z * [new tag] trunk/c157cf6488ade6a7ee2ce2d25b059e1335630a99 -> trunk/c157cf6488ade6a7ee2ce2d25b059e1335630a99 2025-09-07T06:49:10.6217460Z * [new tag] trunk/c2a30246172fd71d56529907ffd3c27b76b1f3a7 -> trunk/c2a30246172fd71d56529907ffd3c27b76b1f3a7 2025-09-07T06:49:10.6217843Z * [new tag] trunk/c32111149921b48bfef909293f1049e21619ed76 -> trunk/c32111149921b48bfef909293f1049e21619ed76 2025-09-07T06:49:10.6218189Z * [new tag] trunk/c37103234afc832dcad307e9016230810957c9d5 -> trunk/c37103234afc832dcad307e9016230810957c9d5 2025-09-07T06:49:10.6218542Z * [new tag] trunk/c3ceca2995cd35e1376c4b0704669bff1a81e836 -> trunk/c3ceca2995cd35e1376c4b0704669bff1a81e836 2025-09-07T06:49:10.6218907Z * [new tag] trunk/c3d54dea9febb1236d48d19e5d4876a63f2e20fd -> trunk/c3d54dea9febb1236d48d19e5d4876a63f2e20fd 2025-09-07T06:49:10.6219246Z * [new tag] trunk/c465b3d52c5687fe910d35a5c75341b77f821741 -> trunk/c465b3d52c5687fe910d35a5c75341b77f821741 2025-09-07T06:49:10.6219599Z * [new tag] trunk/c5b8a10be5e89396da916d1069ffcb7135f0372b -> trunk/c5b8a10be5e89396da916d1069ffcb7135f0372b 2025-09-07T06:49:10.6219951Z * [new tag] trunk/c7e41071a08f4045bc11ab60ec366d7357d56e30 -> trunk/c7e41071a08f4045bc11ab60ec366d7357d56e30 2025-09-07T06:49:10.6220326Z * [new tag] trunk/c98ddaca6d2e19ca37aff00c4ff0cda1e9a6ff65 -> trunk/c98ddaca6d2e19ca37aff00c4ff0cda1e9a6ff65 2025-09-07T06:49:10.6220676Z * [new tag] trunk/cb1e31362c7b53acf4ac95b9f8878064c184f03b -> trunk/cb1e31362c7b53acf4ac95b9f8878064c184f03b 2025-09-07T06:49:10.6221033Z * [new tag] trunk/cbfb005f7cce79974795b148e265f594f59477c8 -> trunk/cbfb005f7cce79974795b148e265f594f59477c8 2025-09-07T06:49:10.6221448Z * [new tag] trunk/cc5bdd12401bda835291d2f3cb297132ebdbf358 -> trunk/cc5bdd12401bda835291d2f3cb297132ebdbf358 2025-09-07T06:49:10.6221802Z * [new tag] trunk/cd529b686d54bbaa443f5b310140de48422d96c7 -> trunk/cd529b686d54bbaa443f5b310140de48422d96c7 2025-09-07T06:49:10.6222151Z * [new tag] trunk/cec0ff122815582af5302360aff03676558c5c87 -> trunk/cec0ff122815582af5302360aff03676558c5c87 2025-09-07T06:49:10.6222498Z * [new tag] trunk/d11720efdb563d02cf4f7d324311fb15a755268e -> trunk/d11720efdb563d02cf4f7d324311fb15a755268e 2025-09-07T06:49:10.6222833Z * [new tag] trunk/d1706d9128ae24d9048167e80d3fe5196d19035e -> trunk/d1706d9128ae24d9048167e80d3fe5196d19035e 2025-09-07T06:49:10.6223246Z * [new tag] trunk/d1a15abfdcaef138f2d9e93a9f46be44f30b766d -> trunk/d1a15abfdcaef138f2d9e93a9f46be44f30b766d 2025-09-07T06:49:10.6223640Z * [new tag] trunk/d232a95d4a79404ca05c1f52d37fde7339dcdf49 -> trunk/d232a95d4a79404ca05c1f52d37fde7339dcdf49 2025-09-07T06:49:10.6223994Z * [new tag] trunk/d2d4c8e9b2371c9aacfb771d9402ac7427b9778e -> trunk/d2d4c8e9b2371c9aacfb771d9402ac7427b9778e 2025-09-07T06:49:10.6224349Z * [new tag] trunk/d33840c542b387ab08ba49aa6c45aa9567fd9be7 -> trunk/d33840c542b387ab08ba49aa6c45aa9567fd9be7 2025-09-07T06:49:10.6224765Z * [new tag] trunk/d5643e8f3a648a99636bfa1f2a41d54bd3c0d0f1 -> trunk/d5643e8f3a648a99636bfa1f2a41d54bd3c0d0f1 2025-09-07T06:49:10.6225103Z * [new tag] trunk/d5b38410b5b6cf75c7a7389972777a6497926ee7 -> trunk/d5b38410b5b6cf75c7a7389972777a6497926ee7 2025-09-07T06:49:10.6225456Z * [new tag] trunk/d5e0f4202ba14632e4d14862ace096609e763462 -> trunk/d5e0f4202ba14632e4d14862ace096609e763462 2025-09-07T06:49:10.6225798Z * [new tag] trunk/d636c181f9140a7b59be10b36eae23039fc2bb72 -> trunk/d636c181f9140a7b59be10b36eae23039fc2bb72 2025-09-07T06:49:10.6226139Z * [new tag] trunk/d64718503728001a1e78168fd7f2d4ff23e57285 -> trunk/d64718503728001a1e78168fd7f2d4ff23e57285 2025-09-07T06:49:10.6226488Z * [new tag] trunk/d67c29ad22670320d676b02e394274af34e8e643 -> trunk/d67c29ad22670320d676b02e394274af34e8e643 2025-09-07T06:49:10.6226842Z * [new tag] trunk/d6b74568e2c98ce58ecc145b72ac66d4caf7ce95 -> trunk/d6b74568e2c98ce58ecc145b72ac66d4caf7ce95 2025-09-07T06:49:10.6227185Z * [new tag] trunk/d711f27845abd45007ccab6076649ebd896c2661 -> trunk/d711f27845abd45007ccab6076649ebd896c2661 2025-09-07T06:49:10.6227547Z * [new tag] trunk/d9d6dde0f42d4bcc8c97671ac50d5096c7e500ab -> trunk/d9d6dde0f42d4bcc8c97671ac50d5096c7e500ab 2025-09-07T06:49:10.6227908Z * [new tag] trunk/da4db4b33d1fdd046650cf19fdbac581a19bf2f9 -> trunk/da4db4b33d1fdd046650cf19fdbac581a19bf2f9 2025-09-07T06:49:10.6228272Z * [new tag] trunk/dac8a4b91c01c3bbc96f54e621b1ea4ffdbd29d1 -> trunk/dac8a4b91c01c3bbc96f54e621b1ea4ffdbd29d1 2025-09-07T06:49:10.6228640Z * [new tag] trunk/dbec08729fb9848bebed6048c63831b87170d061 -> trunk/dbec08729fb9848bebed6048c63831b87170d061 2025-09-07T06:49:10.6229026Z * [new tag] trunk/dcf385395d838f38c8dca25913578230dd43099a -> trunk/dcf385395d838f38c8dca25913578230dd43099a 2025-09-07T06:49:10.6229423Z * [new tag] trunk/dd2519abe83ec3c40d4797492434e41fe3b47e17 -> trunk/dd2519abe83ec3c40d4797492434e41fe3b47e17 2025-09-07T06:49:10.6229806Z * [new tag] trunk/dec72ea4b006dd0fbcaaaa106ad273d73807ab9d -> trunk/dec72ea4b006dd0fbcaaaa106ad273d73807ab9d 2025-09-07T06:49:10.6230194Z * [new tag] trunk/e0a62b266c021b910ce6dc02a6c9429210487717 -> trunk/e0a62b266c021b910ce6dc02a6c9429210487717 2025-09-07T06:49:10.6230542Z * [new tag] trunk/e19e02c84c9dcc408375e5cae3b0709c18b99228 -> trunk/e19e02c84c9dcc408375e5cae3b0709c18b99228 2025-09-07T06:49:10.6231102Z * [new tag] trunk/e304ea4e69d3a7deeb7e48c7450c214a4c953937 -> trunk/e304ea4e69d3a7deeb7e48c7450c214a4c953937 2025-09-07T06:49:10.6231463Z * [new tag] trunk/e3068cdb446adefb5a875616ba37a60235391439 -> trunk/e3068cdb446adefb5a875616ba37a60235391439 2025-09-07T06:49:10.6231858Z * [new tag] trunk/e381d4b0205d5f126c1de534f867ba776f7c3ee6 -> trunk/e381d4b0205d5f126c1de534f867ba776f7c3ee6 2025-09-07T06:49:10.6232227Z * [new tag] trunk/e4bd0ff4f8981b805df32ea5b3550621965ea4f2 -> trunk/e4bd0ff4f8981b805df32ea5b3550621965ea4f2 2025-09-07T06:49:10.6232586Z * [new tag] trunk/e532c9d4f1cdcbc1ea9628f55b9813e77847bdc7 -> trunk/e532c9d4f1cdcbc1ea9628f55b9813e77847bdc7 2025-09-07T06:49:10.6232928Z * [new tag] trunk/e92cd9415377403b6e90585e764639e2e0b5973b -> trunk/e92cd9415377403b6e90585e764639e2e0b5973b 2025-09-07T06:49:10.6233279Z * [new tag] trunk/e9481b6617b5576b099d8ca5798111592e9ad090 -> trunk/e9481b6617b5576b099d8ca5798111592e9ad090 2025-09-07T06:49:10.6233637Z * [new tag] trunk/ea1883dfd3e42defe37b11202b878bb76defa087 -> trunk/ea1883dfd3e42defe37b11202b878bb76defa087 2025-09-07T06:49:10.6234012Z * [new tag] trunk/eac3d6f04cfbbebe3d470dacd216da7d4b1f95a8 -> trunk/eac3d6f04cfbbebe3d470dacd216da7d4b1f95a8 2025-09-07T06:49:10.6234465Z * [new tag] trunk/eb18d32bda75189494d955aa001ade15f10333de -> trunk/eb18d32bda75189494d955aa001ade15f10333de 2025-09-07T06:49:10.6234872Z * [new tag] trunk/ef3be6726f7ff4b77c22db10cec5b686f9107ea9 -> trunk/ef3be6726f7ff4b77c22db10cec5b686f9107ea9 2025-09-07T06:49:10.6235265Z * [new tag] trunk/ef8aabd42422725026cb4dbf48aafa9efa226a04 -> trunk/ef8aabd42422725026cb4dbf48aafa9efa226a04 2025-09-07T06:49:10.6235624Z * [new tag] trunk/f00445b43eee57e20bb9316fa796ca23bf73373b -> trunk/f00445b43eee57e20bb9316fa796ca23bf73373b 2025-09-07T06:49:10.6235970Z * [new tag] trunk/f0c391102b754e3b145e8c59231d2df563487e37 -> trunk/f0c391102b754e3b145e8c59231d2df563487e37 2025-09-07T06:49:10.6236320Z * [new tag] trunk/f27985b7e796fb66a1b476284ba42d8cb360a751 -> trunk/f27985b7e796fb66a1b476284ba42d8cb360a751 2025-09-07T06:49:10.6236675Z * [new tag] trunk/f36f285953700f971552083a5da9d0ceacb63bbd -> trunk/f36f285953700f971552083a5da9d0ceacb63bbd 2025-09-07T06:49:10.6237033Z * [new tag] trunk/f3cebec39ebc110e1c8b06e741896585f7892dbb -> trunk/f3cebec39ebc110e1c8b06e741896585f7892dbb 2025-09-07T06:49:10.6237402Z * [new tag] trunk/f4c33cd44acac92c0b451a04da20ebe9370e5b0c -> trunk/f4c33cd44acac92c0b451a04da20ebe9370e5b0c 2025-09-07T06:49:10.6237755Z * [new tag] trunk/f612045ce105f008b2b675e2fc870163babeb2e8 -> trunk/f612045ce105f008b2b675e2fc870163babeb2e8 2025-09-07T06:49:10.6238103Z * [new tag] trunk/f8746b878dfc1e9639d42cbde832e9b9e792c86c -> trunk/f8746b878dfc1e9639d42cbde832e9b9e792c86c 2025-09-07T06:49:10.6238453Z * [new tag] trunk/f8ffa9194e26523e5f976d4a824d5cc58922727c -> trunk/f8ffa9194e26523e5f976d4a824d5cc58922727c 2025-09-07T06:49:10.6238802Z * [new tag] trunk/f981a7fa5230b98974291fdde32fe8488bc5d469 -> trunk/f981a7fa5230b98974291fdde32fe8488bc5d469 2025-09-07T06:49:10.6239170Z * [new tag] trunk/fbf3d2027daabbcb44d0af274b139be2a248a4f7 -> trunk/fbf3d2027daabbcb44d0af274b139be2a248a4f7 2025-09-07T06:49:10.6239525Z * [new tag] trunk/fca2601c9d628e1bd2d75c7318cd22c4e8c832aa -> trunk/fca2601c9d628e1bd2d75c7318cd22c4e8c832aa 2025-09-07T06:49:10.6239890Z * [new tag] trunk/fea20775ad96bdca972a1811d7d3372f368614ab -> trunk/fea20775ad96bdca972a1811d7d3372f368614ab 2025-09-07T06:49:10.6240236Z * [new tag] trunk/fefee081642f87419a21dc852f7167d4640443cd -> trunk/fefee081642f87419a21dc852f7167d4640443cd 2025-09-07T06:49:10.6240359Z * [new tag] v0.1.1 -> v0.1.1 2025-09-07T06:49:10.6240556Z * [new tag] v0.1.10 -> v0.1.10 2025-09-07T06:49:10.6240726Z * [new tag] v0.1.11 -> v0.1.11 2025-09-07T06:49:10.6240843Z * [new tag] v0.1.12 -> v0.1.12 2025-09-07T06:49:10.6240980Z * [new tag] v0.1.2 -> v0.1.2 2025-09-07T06:49:10.6241132Z * [new tag] v0.1.3 -> v0.1.3 2025-09-07T06:49:10.6241251Z * [new tag] v0.1.4 -> v0.1.4 2025-09-07T06:49:10.6241385Z * [new tag] v0.1.5 -> v0.1.5 2025-09-07T06:49:10.6241499Z * [new tag] v0.1.6 -> v0.1.6 2025-09-07T06:49:10.6241611Z * [new tag] v0.1.7 -> v0.1.7 2025-09-07T06:49:10.6241737Z * [new tag] v0.1.8 -> v0.1.8 2025-09-07T06:49:10.6241855Z * [new tag] v0.1.9 -> v0.1.9 2025-09-07T06:49:10.6241970Z * [new tag] v0.2.0 -> v0.2.0 2025-09-07T06:49:10.6242080Z * [new tag] v0.3.0 -> v0.3.0 2025-09-07T06:49:10.6242273Z * [new tag] v0.3.1 -> v0.3.1 2025-09-07T06:49:10.6242383Z * [new tag] v0.4.0 -> v0.4.0 2025-09-07T06:49:10.6242491Z * [new tag] v0.4.1 -> v0.4.1 2025-09-07T06:49:10.6242614Z * [new tag] v1.0.0 -> v1.0.0 2025-09-07T06:49:10.6242736Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-09-07T06:49:10.6242847Z * [new tag] v1.0.1 -> v1.0.1 2025-09-07T06:49:10.6242977Z * [new tag] v1.0rc0 -> v1.0rc0 2025-09-07T06:49:10.6243100Z * [new tag] v1.0rc1 -> v1.0rc1 2025-09-07T06:49:10.6243223Z * [new tag] v1.1.0 -> v1.1.0 2025-09-07T06:49:10.6243357Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-09-07T06:49:10.6243470Z * [new tag] v1.10.0 -> v1.10.0 2025-09-07T06:49:10.6243605Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-09-07T06:49:10.6243732Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-09-07T06:49:10.6243862Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-09-07T06:49:10.6243981Z * [new tag] v1.10.1 -> v1.10.1 2025-09-07T06:49:10.6244101Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-09-07T06:49:10.6244226Z * [new tag] v1.10.2 -> v1.10.2 2025-09-07T06:49:10.6244356Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-09-07T06:49:10.6244473Z * [new tag] v1.11.0 -> v1.11.0 2025-09-07T06:49:10.6244686Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-09-07T06:49:10.6244808Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-09-07T06:49:10.6244934Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-09-07T06:49:10.6245063Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-09-07T06:49:10.6245185Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-09-07T06:49:10.6245314Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-09-07T06:49:10.6245451Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-09-07T06:49:10.6245566Z * [new tag] v1.12.0 -> v1.12.0 2025-09-07T06:49:10.6245687Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-09-07T06:49:10.6245884Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-09-07T06:49:10.6246007Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-09-07T06:49:10.6246129Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-09-07T06:49:10.6246254Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-09-07T06:49:10.6246385Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-09-07T06:49:10.6246546Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-09-07T06:49:10.6246669Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-09-07T06:49:10.6246794Z * [new tag] v1.12.1 -> v1.12.1 2025-09-07T06:49:10.6246914Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-09-07T06:49:10.6247076Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-09-07T06:49:10.6247207Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-09-07T06:49:10.6247327Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-09-07T06:49:10.6247449Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-09-07T06:49:10.6247640Z * [new tag] v1.13.0 -> v1.13.0 2025-09-07T06:49:10.6247759Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-09-07T06:49:10.6247877Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-09-07T06:49:10.6247997Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-09-07T06:49:10.6248125Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-09-07T06:49:10.6248247Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-09-07T06:49:10.6248368Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-09-07T06:49:10.6248493Z * [new tag] v1.13.1 -> v1.13.1 2025-09-07T06:49:10.6248623Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-09-07T06:49:10.6248743Z * [new tag] v1.2.0 -> v1.2.0 2025-09-07T06:49:10.6248880Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-09-07T06:49:10.6248994Z * [new tag] v1.3.0 -> v1.3.0 2025-09-07T06:49:10.6249111Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-09-07T06:49:10.6249230Z * [new tag] v1.3.1 -> v1.3.1 2025-09-07T06:49:10.6249344Z * [new tag] v1.4.0 -> v1.4.0 2025-09-07T06:49:10.6249467Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-09-07T06:49:10.6249578Z * [new tag] v1.4.1 -> v1.4.1 2025-09-07T06:49:10.6249701Z * [new tag] v1.5.0 -> v1.5.0 2025-09-07T06:49:10.6249828Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-09-07T06:49:10.6249950Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-09-07T06:49:10.6250083Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-09-07T06:49:10.6250206Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-09-07T06:49:10.6250324Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-09-07T06:49:10.6250451Z * [new tag] v1.5.1 -> v1.5.1 2025-09-07T06:49:10.6250569Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-09-07T06:49:10.6250688Z * [new tag] v1.6.0 -> v1.6.0 2025-09-07T06:49:10.6250814Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-09-07T06:49:10.6250935Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-09-07T06:49:10.6251128Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-09-07T06:49:10.6251257Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-09-07T06:49:10.6251375Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-09-07T06:49:10.6251497Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-09-07T06:49:10.6251616Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-09-07T06:49:10.6251737Z * [new tag] v1.7.0 -> v1.7.0 2025-09-07T06:49:10.6251861Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-09-07T06:49:10.6251986Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-09-07T06:49:10.6252122Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-09-07T06:49:10.6252245Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-09-07T06:49:10.6252405Z * [new tag] v1.7.1 -> v1.7.1 2025-09-07T06:49:10.6252541Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-09-07T06:49:10.6252659Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-09-07T06:49:10.6252853Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-09-07T06:49:10.6252973Z * [new tag] v1.8.0 -> v1.8.0 2025-09-07T06:49:10.6253131Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-09-07T06:49:10.6253255Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-09-07T06:49:10.6253376Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-09-07T06:49:10.6253509Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-09-07T06:49:10.6253627Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-09-07T06:49:10.6253741Z * [new tag] v1.8.1 -> v1.8.1 2025-09-07T06:49:10.6253872Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-09-07T06:49:10.6253991Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-09-07T06:49:10.6254117Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-09-07T06:49:10.6254240Z * [new tag] v1.8.2 -> v1.8.2 2025-09-07T06:49:10.6254366Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-09-07T06:49:10.6254480Z * [new tag] v1.9.0 -> v1.9.0 2025-09-07T06:49:10.6254606Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-09-07T06:49:10.6254728Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-09-07T06:49:10.6254850Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-09-07T06:49:10.6254976Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-09-07T06:49:10.6255095Z * [new tag] v1.9.1 -> v1.9.1 2025-09-07T06:49:10.6255213Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-09-07T06:49:10.6255333Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-09-07T06:49:10.6255467Z * [new tag] v2.0.0 -> v2.0.0 2025-09-07T06:49:10.6255584Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-09-07T06:49:10.6255704Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-09-07T06:49:10.6255832Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-09-07T06:49:10.6255949Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-09-07T06:49:10.6256068Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-09-07T06:49:10.6256197Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-09-07T06:49:10.6256391Z * [new tag] v2.0.1 -> v2.0.1 2025-09-07T06:49:10.6256511Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-09-07T06:49:10.6256635Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-09-07T06:49:10.6256757Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-09-07T06:49:10.6256874Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-09-07T06:49:10.6256991Z * [new tag] v2.1.0 -> v2.1.0 2025-09-07T06:49:10.6257119Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-09-07T06:49:10.6257240Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-09-07T06:49:10.6257359Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-09-07T06:49:10.6257489Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-09-07T06:49:10.6257614Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-09-07T06:49:10.6257739Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-09-07T06:49:10.6257862Z * [new tag] v2.1.1 -> v2.1.1 2025-09-07T06:49:10.6258047Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-09-07T06:49:10.6258165Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-09-07T06:49:10.6258296Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-09-07T06:49:10.6258453Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-09-07T06:49:10.6258573Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-09-07T06:49:10.6258692Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-09-07T06:49:10.6258820Z * [new tag] v2.1.2 -> v2.1.2 2025-09-07T06:49:10.6258976Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-09-07T06:49:10.6259095Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-09-07T06:49:10.6259217Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-09-07T06:49:10.6259334Z * [new tag] v2.2.0 -> v2.2.0 2025-09-07T06:49:10.6259453Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-09-07T06:49:10.6259578Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-09-07T06:49:10.6259698Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-09-07T06:49:10.6259814Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-09-07T06:49:10.6259942Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-09-07T06:49:10.6260065Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-09-07T06:49:10.6260182Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-09-07T06:49:10.6260310Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-09-07T06:49:10.6260425Z * [new tag] v2.2.1 -> v2.2.1 2025-09-07T06:49:10.6260547Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-09-07T06:49:10.6260668Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-09-07T06:49:10.6260790Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-09-07T06:49:10.6260905Z * [new tag] v2.2.2 -> v2.2.2 2025-09-07T06:49:10.6261021Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-09-07T06:49:10.6261149Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-09-07T06:49:10.6261266Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-09-07T06:49:10.6261379Z * [new tag] v2.3.0 -> v2.3.0 2025-09-07T06:49:10.6261576Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-09-07T06:49:10.6261702Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-09-07T06:49:10.6261825Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-09-07T06:49:10.6261960Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-09-07T06:49:10.6262083Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-09-07T06:49:10.6262203Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-09-07T06:49:10.6262324Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-09-07T06:49:10.6262451Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-09-07T06:49:10.6262570Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-09-07T06:49:10.6262688Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-09-07T06:49:10.6262816Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-09-07T06:49:10.6262933Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-09-07T06:49:10.6263049Z * [new tag] v2.3.1 -> v2.3.1 2025-09-07T06:49:10.6263242Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-09-07T06:49:10.6263361Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-09-07T06:49:10.6263483Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-09-07T06:49:10.6263607Z * [new tag] v2.4.0 -> v2.4.0 2025-09-07T06:49:10.6263725Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-09-07T06:49:10.6263845Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-09-07T06:49:10.6263970Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-09-07T06:49:10.6264094Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-09-07T06:49:10.6264254Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-09-07T06:49:10.6264373Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-09-07T06:49:10.6264507Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-09-07T06:49:10.6264663Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-09-07T06:49:10.6264786Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-09-07T06:49:10.6264914Z * [new tag] v2.4.1 -> v2.4.1 2025-09-07T06:49:10.6265034Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-09-07T06:49:15.7222365Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-09-07T06:49:15.7222801Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-09-07T06:49:15.7223192Z * [new tag] v2.5.0 -> v2.5.0 2025-09-07T06:49:15.7223541Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-09-07T06:49:15.7223908Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-09-07T06:49:15.7224277Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-09-07T06:49:15.7224633Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-09-07T06:49:15.7224980Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-09-07T06:49:15.7225331Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-09-07T06:49:15.7225680Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-09-07T06:49:15.7226075Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-09-07T06:49:15.7226472Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-09-07T06:49:15.7226827Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-09-07T06:49:15.7227357Z * [new tag] v2.5.1 -> v2.5.1 2025-09-07T06:49:15.7227718Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-09-07T06:49:15.7228063Z * [new tag] v2.6.0 -> v2.6.0 2025-09-07T06:49:15.7228414Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-09-07T06:49:15.7228763Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-09-07T06:49:15.7229117Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-09-07T06:49:15.7229461Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-09-07T06:49:15.7229806Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-09-07T06:49:15.7230150Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-09-07T06:49:15.7230492Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-09-07T06:49:15.7230850Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-09-07T06:49:15.7231192Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-09-07T06:49:15.7231710Z * [new tag] v2.7.0 -> v2.7.0 2025-09-07T06:49:15.7232048Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-09-07T06:49:15.7232451Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-09-07T06:49:15.7232806Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-09-07T06:49:15.7233149Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-09-07T06:49:15.7233502Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-09-07T06:49:15.7233844Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-09-07T06:49:15.7234196Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-09-07T06:49:15.7234546Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-09-07T06:49:15.7234896Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-09-07T06:49:15.7235243Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-09-07T06:49:15.7235585Z * [new tag] v2.7.1 -> v2.7.1 2025-09-07T06:49:15.7235937Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-09-07T06:49:15.7236278Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-09-07T06:49:15.7236626Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-09-07T06:49:15.7236983Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-09-07T06:49:15.7237364Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-09-07T06:49:15.7237724Z * [new tag] v2.8.0 -> v2.8.0 2025-09-07T06:49:15.7238112Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-09-07T06:49:15.7238461Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-09-07T06:49:15.7238804Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-09-07T06:49:15.7239163Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-09-07T06:49:15.7239514Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-09-07T06:49:15.7239861Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-09-07T06:49:15.7240214Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-09-07T06:49:15.7240563Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-09-07T06:49:15.7240929Z * [new tag] whc_flight_1 -> whc_flight_1 2025-09-07T06:49:15.7241291Z * [new tag] whc_flight_2 -> whc_flight_2 2025-09-07T06:49:15.7241822Z * [new tag] whc_flight_4 -> whc_flight_4 2025-09-07T06:49:15.7445565Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 93fb23d6fae7c4e82c4239a1033e522088742634^{object} 2025-09-07T06:49:15.7655873Z 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:49:15.7688651Z ##[endgroup] 2025-09-07T06:49:15.7689014Z ##[group]Determining the checkout info 2025-09-07T06:49:15.7690356Z ##[endgroup] 2025-09-07T06:49:15.7700863Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-09-07T06:49:15.7984715Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-09-07T06:49:15.8209731Z ##[group]Checking out the ref 2025-09-07T06:49:15.8220058Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:49:16.8969513Z Updating files: 10% (2067/19405) 2025-09-07T06:49:16.9772391Z Updating files: 11% (2135/19405) 2025-09-07T06:49:17.0484733Z Updating files: 12% (2329/19405) 2025-09-07T06:49:17.1180182Z Updating files: 13% (2523/19405) 2025-09-07T06:49:17.1986932Z Updating files: 14% (2717/19405) 2025-09-07T06:49:17.2604526Z Updating files: 15% (2911/19405) 2025-09-07T06:49:17.3270029Z Updating files: 16% (3105/19405) 2025-09-07T06:49:17.4002566Z Updating files: 17% (3299/19405) 2025-09-07T06:49:17.4796686Z Updating files: 18% (3493/19405) 2025-09-07T06:49:17.5486667Z Updating files: 19% (3687/19405) 2025-09-07T06:49:17.6207542Z Updating files: 20% (3881/19405) 2025-09-07T06:49:17.8344526Z Updating files: 21% (4076/19405) 2025-09-07T06:49:17.8747503Z Updating files: 22% (4270/19405) 2025-09-07T06:49:17.9757337Z Updating files: 22% (4375/19405) 2025-09-07T06:49:18.0829164Z Updating files: 23% (4464/19405) 2025-09-07T06:49:18.1543660Z Updating files: 24% (4658/19405) 2025-09-07T06:49:18.2041975Z Updating files: 25% (4852/19405) 2025-09-07T06:49:18.2406013Z Updating files: 26% (5046/19405) 2025-09-07T06:49:18.2706165Z Updating files: 27% (5240/19405) 2025-09-07T06:49:18.3012398Z Updating files: 28% (5434/19405) 2025-09-07T06:49:18.3376725Z Updating files: 29% (5628/19405) 2025-09-07T06:49:18.3694085Z Updating files: 30% (5822/19405) 2025-09-07T06:49:18.4431891Z Updating files: 31% (6016/19405) 2025-09-07T06:49:18.5367962Z Updating files: 32% (6210/19405) 2025-09-07T06:49:18.6415189Z Updating files: 33% (6404/19405) 2025-09-07T06:49:18.7576480Z Updating files: 34% (6598/19405) 2025-09-07T06:49:18.8654403Z Updating files: 35% (6792/19405) 2025-09-07T06:49:18.8922267Z Updating files: 36% (6986/19405) 2025-09-07T06:49:18.9432685Z Updating files: 36% (7079/19405) 2025-09-07T06:49:18.9944357Z Updating files: 37% (7180/19405) 2025-09-07T06:49:19.0445568Z Updating files: 38% (7374/19405) 2025-09-07T06:49:19.2304569Z Updating files: 39% (7568/19405) 2025-09-07T06:49:19.2805490Z Updating files: 40% (7762/19405) 2025-09-07T06:49:19.4047649Z Updating files: 41% (7957/19405) 2025-09-07T06:49:19.4777986Z Updating files: 42% (8151/19405) 2025-09-07T06:49:19.5223454Z Updating files: 43% (8345/19405) 2025-09-07T06:49:19.5956711Z Updating files: 44% (8539/19405) 2025-09-07T06:49:19.6932396Z Updating files: 45% (8733/19405) 2025-09-07T06:49:19.7523444Z Updating files: 46% (8927/19405) 2025-09-07T06:49:19.8343289Z Updating files: 47% (9121/19405) 2025-09-07T06:49:19.8840694Z Updating files: 48% (9315/19405) 2025-09-07T06:49:19.8968340Z Updating files: 49% (9509/19405) 2025-09-07T06:49:19.9304391Z Updating files: 49% (9566/19405) 2025-09-07T06:49:20.0023938Z Updating files: 50% (9703/19405) 2025-09-07T06:49:20.0518949Z Updating files: 51% (9897/19405) 2025-09-07T06:49:20.1260605Z Updating files: 52% (10091/19405) 2025-09-07T06:49:20.8198953Z Updating files: 53% (10285/19405) 2025-09-07T06:49:20.8713571Z Updating files: 54% (10479/19405) 2025-09-07T06:49:20.9144054Z Updating files: 55% (10673/19405) 2025-09-07T06:49:20.9518030Z Updating files: 55% (10741/19405) 2025-09-07T06:49:21.0042418Z Updating files: 56% (10867/19405) 2025-09-07T06:49:21.0783542Z Updating files: 57% (11061/19405) 2025-09-07T06:49:21.1312680Z Updating files: 58% (11255/19405) 2025-09-07T06:49:21.1880597Z Updating files: 59% (11449/19405) 2025-09-07T06:49:21.2678185Z Updating files: 60% (11643/19405) 2025-09-07T06:49:21.3256707Z Updating files: 61% (11838/19405) 2025-09-07T06:49:21.3838308Z Updating files: 62% (12032/19405) 2025-09-07T06:49:21.4596656Z Updating files: 63% (12226/19405) 2025-09-07T06:49:21.5182902Z Updating files: 64% (12420/19405) 2025-09-07T06:49:21.5958235Z Updating files: 65% (12614/19405) 2025-09-07T06:49:21.6511037Z Updating files: 66% (12808/19405) 2025-09-07T06:49:21.7012856Z Updating files: 67% (13002/19405) 2025-09-07T06:49:21.7824717Z Updating files: 68% (13196/19405) 2025-09-07T06:49:21.9084885Z Updating files: 69% (13390/19405) 2025-09-07T06:49:21.9422752Z Updating files: 69% (13530/19405) 2025-09-07T06:49:22.0530395Z Updating files: 70% (13584/19405) 2025-09-07T06:49:22.1346183Z Updating files: 71% (13778/19405) 2025-09-07T06:49:22.1998223Z Updating files: 72% (13972/19405) 2025-09-07T06:49:22.3331293Z Updating files: 73% (14166/19405) 2025-09-07T06:49:22.4436245Z Updating files: 74% (14360/19405) 2025-09-07T06:49:22.5997081Z Updating files: 75% (14554/19405) 2025-09-07T06:49:22.7134374Z Updating files: 76% (14748/19405) 2025-09-07T06:49:22.8024015Z Updating files: 77% (14942/19405) 2025-09-07T06:49:22.9154362Z Updating files: 78% (15136/19405) 2025-09-07T06:49:22.9323268Z Updating files: 78% (15311/19405) 2025-09-07T06:49:23.0416954Z Updating files: 79% (15330/19405) 2025-09-07T06:49:23.1810390Z Updating files: 80% (15524/19405) 2025-09-07T06:49:23.3014927Z Updating files: 81% (15719/19405) 2025-09-07T06:49:23.4162470Z Updating files: 82% (15913/19405) 2025-09-07T06:49:23.5302930Z Updating files: 83% (16107/19405) 2025-09-07T06:49:23.6234945Z Updating files: 84% (16301/19405) 2025-09-07T06:49:23.7492128Z Updating files: 85% (16495/19405) 2025-09-07T06:49:23.9387457Z Updating files: 86% (16689/19405) 2025-09-07T06:49:23.9875907Z Updating files: 86% (16787/19405) 2025-09-07T06:49:24.1039014Z Updating files: 87% (16883/19405) 2025-09-07T06:49:24.1895172Z Updating files: 88% (17077/19405) 2025-09-07T06:49:24.2751616Z Updating files: 89% (17271/19405) 2025-09-07T06:49:24.3993977Z Updating files: 90% (17465/19405) 2025-09-07T06:49:24.4889941Z Updating files: 91% (17659/19405) 2025-09-07T06:49:24.6036631Z Updating files: 92% (17853/19405) 2025-09-07T06:49:24.7095636Z Updating files: 93% (18047/19405) 2025-09-07T06:49:24.8392464Z Updating files: 94% (18241/19405) 2025-09-07T06:49:24.9235362Z Updating files: 95% (18435/19405) 2025-09-07T06:49:24.9368653Z Updating files: 95% (18601/19405) 2025-09-07T06:49:25.0338660Z Updating files: 96% (18629/19405) 2025-09-07T06:49:25.1583803Z Updating files: 97% (18823/19405) 2025-09-07T06:49:25.4554814Z Updating files: 98% (19017/19405) 2025-09-07T06:49:26.1918837Z Updating files: 99% (19211/19405) 2025-09-07T06:49:26.2848652Z Updating files: 99% (19247/19405) 2025-09-07T06:49:26.2848982Z Updating files: 100% (19405/19405) 2025-09-07T06:49:26.2849255Z Updating files: 100% (19405/19405), done. 2025-09-07T06:49:26.3271215Z Note: switching to '93fb23d6fae7c4e82c4239a1033e522088742634'. 2025-09-07T06:49:26.3271527Z 2025-09-07T06:49:26.3271733Z You are in 'detached HEAD' state. You can look around, make experimental 2025-09-07T06:49:26.3272229Z changes and commit them, and you can discard any commits you make in this 2025-09-07T06:49:26.3272726Z state without impacting any branches by switching back to a branch. 2025-09-07T06:49:26.3273022Z 2025-09-07T06:49:26.3273213Z If you want to create a new branch to retain commits you create, you may 2025-09-07T06:49:26.3273661Z do so (now or later) by using -c with the switch command. Example: 2025-09-07T06:49:26.3273929Z 2025-09-07T06:49:26.3274030Z git switch -c 2025-09-07T06:49:26.3274210Z 2025-09-07T06:49:26.3274496Z Or undo this operation with: 2025-09-07T06:49:26.3274675Z 2025-09-07T06:49:26.3274749Z git switch - 2025-09-07T06:49:26.3274875Z 2025-09-07T06:49:26.3275093Z Turn off this advice by setting config variable advice.detachedHead to false 2025-09-07T06:49:26.3275426Z 2025-09-07T06:49:26.3275585Z HEAD is now at 93fb23d6fae Build vLLM nightly wheels (#162000) 2025-09-07T06:49:26.3460010Z ##[endgroup] 2025-09-07T06:49:26.3460394Z ##[group]Setting up auth for fetching submodules 2025-09-07T06:49:26.3476400Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-09-07T06:49:26.3719348Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-09-07T06:49:26.3949027Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-09-07T06:49:26.4181808Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-09-07T06:49:26.4405233Z ##[endgroup] 2025-09-07T06:49:26.4405582Z ##[group]Fetching submodules 2025-09-07T06:49:26.4415914Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-09-07T06:49:26.8165716Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-09-07T06:49:27.2371126Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-09-07T06:49:27.2372084Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-09-07T06:49:27.2373011Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-09-07T06:49:27.2374005Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-09-07T06:49:27.2374844Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-09-07T06:49:27.2375952Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-09-07T06:49:27.2377111Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-09-07T06:49:27.2377915Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-09-07T06:49:27.2378750Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-09-07T06:49:27.2379815Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-09-07T06:49:27.2380831Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-09-07T06:49:27.2381738Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-09-07T06:49:27.2382685Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-09-07T06:49:27.2383612Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-09-07T06:49:27.2384429Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-09-07T06:49:27.2385434Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-09-07T06:49:27.2386462Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-09-07T06:49:27.2387490Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-09-07T06:49:27.2388379Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:49:27.2389290Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-09-07T06:49:27.2390119Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-09-07T06:49:27.2391017Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-09-07T06:49:27.2391838Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-09-07T06:49:27.2392630Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-09-07T06:49:27.2393494Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-09-07T06:49:27.2394395Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-09-07T06:49:27.2395384Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-09-07T06:49:27.2396188Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-09-07T06:49:27.2397241Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-09-07T06:49:27.2398300Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-09-07T06:49:27.2399231Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-09-07T06:49:27.2400186Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-09-07T06:49:27.2401279Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-09-07T06:49:27.2442372Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-09-07T06:49:27.2443364Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-09-07T06:49:27.2444248Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-09-07T06:49:27.2445108Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-09-07T06:49:27.3193383Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-09-07T06:49:27.8357934Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-09-07T06:49:27.8359085Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-09-07T06:49:28.6155549Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-09-07T06:49:37.0171292Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-09-07T06:49:37.0171898Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-09-07T06:49:37.0172452Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-09-07T06:49:37.0173008Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-09-07T06:49:37.0173580Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-09-07T06:49:37.0174110Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-09-07T06:49:37.0174903Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-09-07T06:49:37.0175548Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-09-07T06:49:37.0176177Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-09-07T06:49:37.0176795Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-09-07T06:49:37.0177330Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-09-07T06:49:37.0177871Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-09-07T06:49:37.0178414Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-09-07T06:49:37.0179003Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-09-07T06:49:37.0179610Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-09-07T06:49:37.3045307Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-09-07T06:49:54.3584392Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-09-07T06:49:54.3585087Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-09-07T06:49:54.3586532Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-09-07T06:49:54.3587143Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-09-07T06:49:54.3587735Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-09-07T06:49:54.3588259Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-09-07T06:49:54.3588829Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-09-07T06:49:54.3589391Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-09-07T06:49:54.3589925Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-09-07T06:49:54.3590491Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-09-07T06:49:54.3591017Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-09-07T06:49:54.3591554Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-09-07T06:49:54.3592137Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-09-07T06:49:54.3592714Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-09-07T06:49:54.3593244Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-09-07T06:49:54.3593779Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-09-07T06:49:54.3594321Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-09-07T06:49:54.4665721Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-09-07T06:49:54.5555875Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-09-07T06:49:54.6253717Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-09-07T06:49:54.8390130Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-09-07T06:49:55.3963208Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-09-07T06:49:55.6407306Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-09-07T06:50:02.4778035Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-09-07T06:50:03.5710834Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-09-07T06:50:03.5819723Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:50:07.2406980Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-09-07T06:50:10.2201500Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-09-07T06:50:10.4080795Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-09-07T06:50:14.0792273Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-09-07T06:50:14.2491728Z Submodule path 'third_party/cpp-httplib': checked out '89c932f313c6437c38f2982869beacc89c2f2246' 2025-09-07T06:50:14.7707950Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-09-07T06:50:15.0210474Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-09-07T06:50:19.4735804Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-09-07T06:50:22.3804118Z Submodule path 'third_party/fbgemm': checked out '4b39c551efe15e6bbade20565b0ceb2d8ce3352d' 2025-09-07T06:50:22.4016341Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-09-07T06:50:22.4017664Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:50:22.4018738Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:50:22.4019723Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-09-07T06:50:22.4020720Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-09-07T06:50:22.4021844Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:50:22.4022908Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-09-07T06:50:22.4716030Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-09-07T06:50:40.5622374Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-09-07T06:50:40.5623134Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-09-07T06:50:40.5623864Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-09-07T06:50:40.5624689Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-09-07T06:50:40.5625373Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-09-07T06:50:40.5626072Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-09-07T06:50:41.7958641Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-09-07T06:51:06.9862674Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-09-07T06:51:09.8825284Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-09-07T06:51:43.6655113Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '311f3c8e51dc0eb56310cfc6980bf63d0fbd7917' 2025-09-07T06:51:45.8604098Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-09-07T06:51:46.0613396Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out '63b6a7b541fa7f08f8475ca7d74054db36ff2691' 2025-09-07T06:51:53.4488890Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-09-07T06:51:58.5951181Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-09-07T06:51:58.6078761Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:51:58.6079966Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:52:03.4040586Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-09-07T06:52:03.4041434Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-09-07T06:52:14.2853558Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-09-07T06:52:23.6724707Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-09-07T06:52:28.6240029Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-09-07T06:52:29.3011700Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-09-07T06:52:29.9217378Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-09-07T06:52:31.3606725Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-09-07T06:52:32.6861034Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-09-07T06:52:33.0380429Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-09-07T06:52:33.0487319Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-09-07T06:52:46.2839473Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-09-07T06:52:57.6273397Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-09-07T06:52:58.0176314Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-09-07T06:52:59.4242218Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-09-07T06:52:59.4591582Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:52:59.4592770Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:52:59.4593926Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:53:02.0508580Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-09-07T06:53:02.0509433Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-09-07T06:53:02.0510240Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-09-07T06:53:02.8777349Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-09-07T06:53:02.9082517Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:53:02.9083691Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:53:02.9085023Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:53:02.9086178Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:53:02.9087368Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:53:02.9088595Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:53:02.9089849Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:53:02.9091034Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:53:02.9755750Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-09-07T06:53:11.7522024Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-09-07T06:53:11.7523303Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-09-07T06:53:11.7524399Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-09-07T06:53:11.7525366Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-09-07T06:53:11.7526344Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-09-07T06:53:11.7527353Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-09-07T06:53:11.7528353Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-09-07T06:53:13.5578789Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-09-07T06:53:13.8994510Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-09-07T06:53:14.3562395Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-09-07T06:53:14.5099787Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-09-07T06:53:14.5205866Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:53:15.1167855Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-09-07T06:53:15.1715433Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-09-07T06:53:15.4247575Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-09-07T06:53:16.0787089Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-09-07T06:53:18.7312690Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-09-07T06:53:18.8923277Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-09-07T06:53:19.3004127Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-09-07T06:53:20.5108606Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-09-07T06:53:22.6621611Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-09-07T06:53:23.3680474Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-09-07T06:53:25.2640653Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-09-07T06:53:30.4644203Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-09-07T06:53:30.4776311Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-09-07T06:53:31.5290367Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-09-07T06:53:31.7227295Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-09-07T06:53:32.1947811Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-09-07T06:53:32.2184700Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:53:32.2185916Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:53:32.2187046Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:53:32.2188142Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:53:32.2189513Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:53:32.2190966Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:53:32.2192307Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:53:32.2193457Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:53:32.2598863Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-09-07T06:53:42.7461738Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-09-07T06:53:42.7462723Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-09-07T06:53:42.7463669Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-09-07T06:53:42.7464564Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-09-07T06:53:42.7465447Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-09-07T06:53:42.7466340Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-09-07T06:53:42.7467164Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-09-07T06:53:42.8823412Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-09-07T06:53:43.0655054Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-09-07T06:53:43.1544111Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-09-07T06:53:43.7600085Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-09-07T06:53:43.8704281Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-09-07T06:53:43.9792125Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-09-07T06:53:44.1002131Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-09-07T06:53:44.1121703Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:53:44.1123024Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:53:46.3969772Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-09-07T06:53:46.3970889Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-09-07T06:53:47.0946170Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-09-07T06:53:47.2951872Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-09-07T06:53:52.6621504Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-09-07T06:53:52.7400129Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-09-07T06:53:54.1901817Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-09-07T06:53:54.2033453Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:53:54.2034620Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-09-07T06:53:55.3850754Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-09-07T06:53:55.3851617Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-09-07T06:53:55.4655271Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-09-07T06:53:55.7435361Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-09-07T06:53:55.9153446Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-09-07T06:53:56.0033244Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-09-07T06:53:56.2082776Z Submodule path 'third_party/pybind11': checked out 'f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8' 2025-09-07T06:53:56.3409922Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-09-07T06:53:56.6726618Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-09-07T06:53:57.6684124Z Submodule path 'third_party/tensorpipe': checked out 'af0118d13e52f5a08841464a768e01a0bf3e3075' 2025-09-07T06:53:57.6846386Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:53:57.6847512Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:53:57.6877330Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:53:57.6879013Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:53:59.7894368Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-09-07T06:53:59.7895228Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-09-07T06:53:59.7896007Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-09-07T06:53:59.7896835Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-09-07T06:54:00.1002077Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-09-07T06:54:00.7911959Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-09-07T06:54:01.1539922Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-09-07T06:54:01.3760470Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-09-07T06:54:01.3868815Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:54:01.7112498Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-09-07T06:54:01.7643253Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-09-07T06:54:01.7892538Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-09-07T06:54:02.1632005Z Entering 'android/libs/fbjni' 2025-09-07T06:54:02.2010095Z Entering 'third_party/FP16' 2025-09-07T06:54:02.2374867Z Entering 'third_party/FXdiv' 2025-09-07T06:54:02.2739385Z Entering 'third_party/NNPACK' 2025-09-07T06:54:02.3109833Z Entering 'third_party/NVTX' 2025-09-07T06:54:02.3500774Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:54:02.3865545Z Entering 'third_party/XNNPACK' 2025-09-07T06:54:02.4245919Z Entering 'third_party/aiter' 2025-09-07T06:54:02.4607383Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:54:02.5038977Z Entering 'third_party/benchmark' 2025-09-07T06:54:02.5412700Z Entering 'third_party/composable_kernel' 2025-09-07T06:54:02.5786389Z Entering 'third_party/cpp-httplib' 2025-09-07T06:54:02.6148478Z Entering 'third_party/cpuinfo' 2025-09-07T06:54:02.6512200Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:54:02.6884863Z Entering 'third_party/cutlass' 2025-09-07T06:54:02.7252238Z Entering 'third_party/fbgemm' 2025-09-07T06:54:02.7610182Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:54:02.7979036Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:54:02.8386606Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:54:02.8747819Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:54:02.9133005Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:54:02.9504463Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:54:02.9870653Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:54:03.0255642Z Entering 'third_party/flash-attention' 2025-09-07T06:54:03.0605354Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:54:03.0973582Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:54:03.1365017Z Entering 'third_party/flatbuffers' 2025-09-07T06:54:03.1738138Z Entering 'third_party/fmt' 2025-09-07T06:54:03.2110982Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:54:03.2477011Z Entering 'third_party/gloo' 2025-09-07T06:54:03.2836818Z Entering 'third_party/googletest' 2025-09-07T06:54:03.3198567Z Entering 'third_party/ideep' 2025-09-07T06:54:03.3574946Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:54:03.3958918Z Entering 'third_party/ittapi' 2025-09-07T06:54:03.4329517Z Entering 'third_party/kineto' 2025-09-07T06:54:03.4682032Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:54:03.5037276Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:54:03.5415412Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:54:03.5780554Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:54:03.6147326Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:54:03.6492527Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:54:03.6875246Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:54:03.7242290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:54:03.7604727Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:54:03.7973422Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:54:03.8351325Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:54:03.8721968Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:54:03.9147847Z Entering 'third_party/kleidiai' 2025-09-07T06:54:03.9511804Z Entering 'third_party/mimalloc' 2025-09-07T06:54:03.9870959Z Entering 'third_party/nlohmann' 2025-09-07T06:54:04.0256352Z Entering 'third_party/onnx' 2025-09-07T06:54:04.0629626Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:54:04.1004071Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:54:04.1360369Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:54:04.1741094Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:54:04.2110317Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:54:04.2468046Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:54:04.2829751Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:54:04.3230784Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:54:04.3598222Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:54:04.3940273Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:54:04.4330762Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:54:04.4709727Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:54:04.5105513Z Entering 'third_party/pocketfft' 2025-09-07T06:54:04.5484964Z Entering 'third_party/protobuf' 2025-09-07T06:54:04.5836348Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:54:04.6228323Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:54:04.6616320Z Entering 'third_party/psimd' 2025-09-07T06:54:04.6975266Z Entering 'third_party/pthreadpool' 2025-09-07T06:54:04.7340087Z Entering 'third_party/pybind11' 2025-09-07T06:54:04.7700519Z Entering 'third_party/python-peachpy' 2025-09-07T06:54:04.8061331Z Entering 'third_party/sleef' 2025-09-07T06:54:04.8420181Z Entering 'third_party/tensorpipe' 2025-09-07T06:54:04.8767438Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:54:04.9128466Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:54:04.9487094Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:54:04.9858769Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:54:05.0208884Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:54:05.0680506Z ##[endgroup] 2025-09-07T06:54:05.0680984Z ##[group]Persisting credentials for submodules 2025-09-07T06:54:05.0699178Z [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-09-07T06:54:05.4560953Z Entering 'android/libs/fbjni' 2025-09-07T06:54:05.5144804Z Entering 'third_party/FP16' 2025-09-07T06:54:05.5755746Z Entering 'third_party/FXdiv' 2025-09-07T06:54:05.6313283Z Entering 'third_party/NNPACK' 2025-09-07T06:54:05.6872906Z Entering 'third_party/NVTX' 2025-09-07T06:54:05.7442139Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:54:05.7991935Z Entering 'third_party/XNNPACK' 2025-09-07T06:54:05.8562447Z Entering 'third_party/aiter' 2025-09-07T06:54:05.9101146Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:54:05.9673115Z Entering 'third_party/benchmark' 2025-09-07T06:54:06.0227244Z Entering 'third_party/composable_kernel' 2025-09-07T06:54:06.0790545Z Entering 'third_party/cpp-httplib' 2025-09-07T06:54:06.1355135Z Entering 'third_party/cpuinfo' 2025-09-07T06:54:06.1905750Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:54:06.2450137Z Entering 'third_party/cutlass' 2025-09-07T06:54:06.3050994Z Entering 'third_party/fbgemm' 2025-09-07T06:54:06.3586442Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:54:06.4144073Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:54:06.4736779Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:54:06.5314441Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:54:06.5912206Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:54:06.6479614Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:54:06.7023992Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:54:06.7633884Z Entering 'third_party/flash-attention' 2025-09-07T06:54:06.8177027Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:54:06.8801554Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:54:06.9393667Z Entering 'third_party/flatbuffers' 2025-09-07T06:54:06.9977013Z Entering 'third_party/fmt' 2025-09-07T06:54:07.0558285Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:54:07.1128018Z Entering 'third_party/gloo' 2025-09-07T06:54:07.1676837Z Entering 'third_party/googletest' 2025-09-07T06:54:07.2275373Z Entering 'third_party/ideep' 2025-09-07T06:54:07.2802654Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:54:07.3378000Z Entering 'third_party/ittapi' 2025-09-07T06:54:07.3937482Z Entering 'third_party/kineto' 2025-09-07T06:54:07.4474094Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:54:07.5035441Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:54:07.5589472Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:54:07.6139115Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:54:07.6692401Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:54:07.7235627Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:54:07.7807921Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:54:07.8368559Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:54:07.8919572Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:54:07.9492710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:54:08.0080199Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:54:08.0634525Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:54:08.1200439Z Entering 'third_party/kleidiai' 2025-09-07T06:54:08.1745138Z Entering 'third_party/mimalloc' 2025-09-07T06:54:08.2299457Z Entering 'third_party/nlohmann' 2025-09-07T06:54:08.2848582Z Entering 'third_party/onnx' 2025-09-07T06:54:08.3404597Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:54:08.3990913Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:54:08.4520330Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:54:08.5071859Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:54:08.5626233Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:54:08.6172335Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:54:08.6715951Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:54:08.7258289Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:54:08.7807215Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:54:08.8386209Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:54:08.8956956Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:54:08.9527135Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:54:09.0140948Z Entering 'third_party/pocketfft' 2025-09-07T06:54:09.0672923Z Entering 'third_party/protobuf' 2025-09-07T06:54:09.1214507Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:54:09.1800197Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:54:09.2370320Z Entering 'third_party/psimd' 2025-09-07T06:54:09.2938321Z Entering 'third_party/pthreadpool' 2025-09-07T06:54:09.3492597Z Entering 'third_party/pybind11' 2025-09-07T06:54:09.4039233Z Entering 'third_party/python-peachpy' 2025-09-07T06:54:09.4600393Z Entering 'third_party/sleef' 2025-09-07T06:54:09.5149973Z Entering 'third_party/tensorpipe' 2025-09-07T06:54:09.5689948Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:54:09.6243139Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:54:09.6816236Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:54:09.7405856Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:54:09.7942055Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:54:09.8663260Z [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-09-07T06:54:10.2136568Z Entering 'android/libs/fbjni' 2025-09-07T06:54:10.2667785Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-09-07T06:54:10.2803001Z Entering 'third_party/FP16' 2025-09-07T06:54:10.3361232Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-09-07T06:54:10.3505837Z Entering 'third_party/FXdiv' 2025-09-07T06:54:10.4029862Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-09-07T06:54:10.4170144Z Entering 'third_party/NNPACK' 2025-09-07T06:54:10.4702885Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-09-07T06:54:10.4837955Z Entering 'third_party/NVTX' 2025-09-07T06:54:10.5362197Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-09-07T06:54:10.5502314Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:54:10.6022772Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-09-07T06:54:10.6163459Z Entering 'third_party/XNNPACK' 2025-09-07T06:54:10.6741613Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-09-07T06:54:10.6895871Z Entering 'third_party/aiter' 2025-09-07T06:54:10.7438761Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-09-07T06:54:10.7565032Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:54:10.8097766Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-09-07T06:54:10.8262081Z Entering 'third_party/benchmark' 2025-09-07T06:54:10.8791477Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-09-07T06:54:10.8932187Z Entering 'third_party/composable_kernel' 2025-09-07T06:54:10.9494732Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-09-07T06:54:10.9647945Z Entering 'third_party/cpp-httplib' 2025-09-07T06:54:11.0172833Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-09-07T06:54:11.0306522Z Entering 'third_party/cpuinfo' 2025-09-07T06:54:11.0823691Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-09-07T06:54:11.0969124Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:54:11.1515075Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-09-07T06:54:11.1664796Z Entering 'third_party/cutlass' 2025-09-07T06:54:11.2231703Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-09-07T06:54:11.2383101Z Entering 'third_party/fbgemm' 2025-09-07T06:54:11.2908642Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-09-07T06:54:11.3041963Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:54:11.3573892Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-09-07T06:54:11.3715095Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:54:11.4261560Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-09-07T06:54:11.4405543Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:54:11.4947035Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-09-07T06:54:11.5095065Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:54:11.5662709Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-09-07T06:54:11.5809057Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:54:11.6359125Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-09-07T06:54:11.6498494Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:54:11.7048680Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-09-07T06:54:11.7193365Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:54:11.7779944Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-09-07T06:54:11.7937251Z Entering 'third_party/flash-attention' 2025-09-07T06:54:11.8513098Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-09-07T06:54:11.8637260Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:54:11.9175510Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-09-07T06:54:11.9323958Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:54:11.9852809Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-09-07T06:54:12.0019253Z Entering 'third_party/flatbuffers' 2025-09-07T06:54:12.0553326Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-09-07T06:54:12.0699357Z Entering 'third_party/fmt' 2025-09-07T06:54:12.1262566Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-09-07T06:54:12.1399167Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:54:12.1931418Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-09-07T06:54:12.2064779Z Entering 'third_party/gloo' 2025-09-07T06:54:12.2592881Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-09-07T06:54:12.2730294Z Entering 'third_party/googletest' 2025-09-07T06:54:12.3295974Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:54:12.3438026Z Entering 'third_party/ideep' 2025-09-07T06:54:12.3955709Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-09-07T06:54:12.4075600Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:54:12.4607214Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-09-07T06:54:12.4776729Z Entering 'third_party/ittapi' 2025-09-07T06:54:12.5317400Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-09-07T06:54:12.5453643Z Entering 'third_party/kineto' 2025-09-07T06:54:12.6001416Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-09-07T06:54:12.6127000Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:54:12.6659259Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-09-07T06:54:12.6785243Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:54:12.7330907Z 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-09-07T06:54:12.7486450Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:54:12.8068809Z 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-09-07T06:54:12.8207836Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:54:12.8778291Z 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-09-07T06:54:12.8915668Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:54:12.9444604Z 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-09-07T06:54:12.9577543Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:54:13.0132246Z 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-09-07T06:54:13.0304468Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:54:13.0863354Z 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-09-07T06:54:13.0999829Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:54:13.1540135Z 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-09-07T06:54:13.1685970Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:54:13.2255161Z 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-09-07T06:54:13.2441936Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:54:13.2982100Z 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-09-07T06:54:13.3137970Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:54:13.3755666Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-09-07T06:54:13.3896692Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:54:13.4430701Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-09-07T06:54:13.4587293Z Entering 'third_party/kleidiai' 2025-09-07T06:54:13.5118013Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-09-07T06:54:13.5257828Z Entering 'third_party/mimalloc' 2025-09-07T06:54:13.5790932Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-09-07T06:54:13.5924947Z Entering 'third_party/nlohmann' 2025-09-07T06:54:13.6474423Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-09-07T06:54:13.6612355Z Entering 'third_party/onnx' 2025-09-07T06:54:13.7140196Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-09-07T06:54:13.7295376Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:54:13.7825426Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-09-07T06:54:13.7992741Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:54:13.8518264Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-09-07T06:54:13.8641552Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:54:13.9218539Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-09-07T06:54:13.9355717Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:54:13.9889704Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:54:14.0025343Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:54:14.0555455Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-09-07T06:54:14.0700766Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:54:14.1231535Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-09-07T06:54:14.1368269Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:54:14.1915012Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-09-07T06:54:14.2051401Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:54:14.2591543Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-09-07T06:54:14.2733112Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:54:14.3263301Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-09-07T06:54:14.3389363Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:54:14.3935979Z 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-09-07T06:54:14.4076215Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:54:14.4647589Z 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-09-07T06:54:14.4808779Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:54:14.5380655Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-09-07T06:54:14.5560224Z Entering 'third_party/pocketfft' 2025-09-07T06:54:14.6101805Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-09-07T06:54:14.6254931Z Entering 'third_party/protobuf' 2025-09-07T06:54:14.6783543Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-09-07T06:54:14.6911496Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:54:14.7444707Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-09-07T06:54:14.7581502Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:54:14.8120252Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:54:14.8290344Z Entering 'third_party/psimd' 2025-09-07T06:54:14.8827970Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-09-07T06:54:14.9019097Z Entering 'third_party/pthreadpool' 2025-09-07T06:54:14.9621018Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-09-07T06:54:14.9767136Z Entering 'third_party/pybind11' 2025-09-07T06:54:15.0295607Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-09-07T06:54:15.0433547Z Entering 'third_party/python-peachpy' 2025-09-07T06:54:15.0982178Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-09-07T06:54:15.1118670Z Entering 'third_party/sleef' 2025-09-07T06:54:15.1657382Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-09-07T06:54:15.1810729Z Entering 'third_party/tensorpipe' 2025-09-07T06:54:15.2342791Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-09-07T06:54:15.2464769Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:54:15.3027782Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:54:15.3162061Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:54:15.3698929Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-09-07T06:54:15.3837342Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:54:15.4374588Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-09-07T06:54:15.4511191Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:54:15.5035418Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-09-07T06:54:15.5163104Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:54:15.5724392Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-09-07T06:54:15.6319322Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-09-07T06:54:16.0035946Z Entering 'android/libs/fbjni' 2025-09-07T06:54:16.0416523Z Entering 'third_party/FP16' 2025-09-07T06:54:16.0782087Z Entering 'third_party/FXdiv' 2025-09-07T06:54:16.1141479Z Entering 'third_party/NNPACK' 2025-09-07T06:54:16.1502205Z Entering 'third_party/NVTX' 2025-09-07T06:54:16.1865635Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:54:16.2223153Z Entering 'third_party/XNNPACK' 2025-09-07T06:54:16.2600192Z Entering 'third_party/aiter' 2025-09-07T06:54:16.3089510Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:54:16.3484123Z Entering 'third_party/benchmark' 2025-09-07T06:54:16.3846521Z Entering 'third_party/composable_kernel' 2025-09-07T06:54:16.4225928Z Entering 'third_party/cpp-httplib' 2025-09-07T06:54:16.4598783Z Entering 'third_party/cpuinfo' 2025-09-07T06:54:16.4965083Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:54:16.5348535Z Entering 'third_party/cutlass' 2025-09-07T06:54:16.5722166Z Entering 'third_party/fbgemm' 2025-09-07T06:54:16.6123886Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:54:16.6497312Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:54:16.6879542Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:54:16.7261616Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:54:16.7635921Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:54:16.8002101Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:54:16.8373858Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:54:16.8748315Z Entering 'third_party/flash-attention' 2025-09-07T06:54:16.9138361Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:54:16.9533550Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:54:16.9928552Z Entering 'third_party/flatbuffers' 2025-09-07T06:54:17.0298988Z Entering 'third_party/fmt' 2025-09-07T06:54:17.0659725Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:54:17.1024402Z Entering 'third_party/gloo' 2025-09-07T06:54:17.1401632Z Entering 'third_party/googletest' 2025-09-07T06:54:17.1760024Z Entering 'third_party/ideep' 2025-09-07T06:54:17.2134497Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:54:17.2525868Z Entering 'third_party/ittapi' 2025-09-07T06:54:17.2883184Z Entering 'third_party/kineto' 2025-09-07T06:54:17.3288395Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:54:17.3645333Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:54:17.4013836Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:54:17.4392879Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:54:17.4760365Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:54:17.5116392Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:54:17.5539802Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:54:17.5898733Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:54:17.6276535Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:54:17.6640335Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:54:17.7022272Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:54:17.7443311Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:54:17.7815933Z Entering 'third_party/kleidiai' 2025-09-07T06:54:17.8217558Z Entering 'third_party/mimalloc' 2025-09-07T06:54:17.8583566Z Entering 'third_party/nlohmann' 2025-09-07T06:54:17.8947430Z Entering 'third_party/onnx' 2025-09-07T06:54:17.9322653Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:54:17.9705811Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:54:18.0067042Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:54:18.0425352Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:54:18.0824100Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:54:18.1196122Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:54:18.1568204Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:54:18.1926574Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:54:18.2286555Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:54:18.2639419Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:54:18.3035040Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:54:18.3441918Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:54:18.3841020Z Entering 'third_party/pocketfft' 2025-09-07T06:54:18.4216715Z Entering 'third_party/protobuf' 2025-09-07T06:54:18.4571511Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:54:18.4936913Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:54:18.5336847Z Entering 'third_party/psimd' 2025-09-07T06:54:18.5702345Z Entering 'third_party/pthreadpool' 2025-09-07T06:54:18.6057216Z Entering 'third_party/pybind11' 2025-09-07T06:54:18.6418594Z Entering 'third_party/python-peachpy' 2025-09-07T06:54:18.6782034Z Entering 'third_party/sleef' 2025-09-07T06:54:18.7150508Z Entering 'third_party/tensorpipe' 2025-09-07T06:54:18.7615868Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:54:18.7982563Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:54:18.8341696Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:54:18.8704783Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:54:18.9058425Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:54:18.9544001Z [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-09-07T06:54:19.3220419Z Entering 'android/libs/fbjni' 2025-09-07T06:54:19.3616514Z Entering 'third_party/FP16' 2025-09-07T06:54:19.3974341Z Entering 'third_party/FXdiv' 2025-09-07T06:54:19.4331428Z Entering 'third_party/NNPACK' 2025-09-07T06:54:19.4693264Z Entering 'third_party/NVTX' 2025-09-07T06:54:19.5053611Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:54:19.5437385Z Entering 'third_party/XNNPACK' 2025-09-07T06:54:19.5822914Z Entering 'third_party/aiter' 2025-09-07T06:54:19.6172229Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:54:19.6575488Z Entering 'third_party/benchmark' 2025-09-07T06:54:19.6942198Z Entering 'third_party/composable_kernel' 2025-09-07T06:54:19.7308015Z Entering 'third_party/cpp-httplib' 2025-09-07T06:54:19.7684567Z Entering 'third_party/cpuinfo' 2025-09-07T06:54:19.8045347Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:54:19.8402417Z Entering 'third_party/cutlass' 2025-09-07T06:54:19.8789780Z Entering 'third_party/fbgemm' 2025-09-07T06:54:19.9147122Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:54:19.9513099Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:54:19.9925814Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:54:20.0285772Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:54:20.0699111Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:54:20.1066829Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:54:20.1428737Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:54:20.1844665Z Entering 'third_party/flash-attention' 2025-09-07T06:54:20.2192835Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:54:20.2585683Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:54:20.2976547Z Entering 'third_party/flatbuffers' 2025-09-07T06:54:20.3359289Z Entering 'third_party/fmt' 2025-09-07T06:54:20.3736219Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:54:20.4095414Z Entering 'third_party/gloo' 2025-09-07T06:54:20.4449757Z Entering 'third_party/googletest' 2025-09-07T06:54:20.4812043Z Entering 'third_party/ideep' 2025-09-07T06:54:20.5163398Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:54:20.5570011Z Entering 'third_party/ittapi' 2025-09-07T06:54:20.5947532Z Entering 'third_party/kineto' 2025-09-07T06:54:20.6300969Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:54:20.6675391Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:54:20.7057548Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:54:20.7435209Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:54:20.7840939Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:54:20.8202010Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:54:20.8600490Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:54:20.8985435Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:54:20.9348792Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:54:20.9758263Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:54:21.0147881Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:54:21.0528586Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:54:21.0946078Z Entering 'third_party/kleidiai' 2025-09-07T06:54:21.1319849Z Entering 'third_party/mimalloc' 2025-09-07T06:54:21.1693081Z Entering 'third_party/nlohmann' 2025-09-07T06:54:21.2059788Z Entering 'third_party/onnx' 2025-09-07T06:54:21.2436070Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:54:21.2833957Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:54:21.3196121Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:54:21.3577084Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:54:21.4004146Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:54:21.4372007Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:54:21.4753409Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:54:21.5143769Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:54:21.5515132Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:54:21.5866163Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:54:21.6234032Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:54:21.6610128Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:54:21.7009900Z Entering 'third_party/pocketfft' 2025-09-07T06:54:21.7371927Z Entering 'third_party/protobuf' 2025-09-07T06:54:21.7724911Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:54:21.8099461Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:54:21.8499004Z Entering 'third_party/psimd' 2025-09-07T06:54:21.8866004Z Entering 'third_party/pthreadpool' 2025-09-07T06:54:21.9229137Z Entering 'third_party/pybind11' 2025-09-07T06:54:21.9587306Z Entering 'third_party/python-peachpy' 2025-09-07T06:54:21.9979472Z Entering 'third_party/sleef' 2025-09-07T06:54:22.0341527Z Entering 'third_party/tensorpipe' 2025-09-07T06:54:22.0711708Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:54:22.1070468Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:54:22.1426712Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:54:22.1808567Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:54:22.2157235Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:54:22.2768587Z ##[endgroup] 2025-09-07T06:54:22.3031084Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-09-07T06:54:22.3234697Z 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:54:22.3470757Z ##[group]Run cd "${GITHUB_WORKSPACE}" 2025-09-07T06:54:22.3471111Z cd "${GITHUB_WORKSPACE}" 2025-09-07T06:54:22.3471406Z # Clean stale submodule dirs 2025-09-07T06:54:22.3471732Z if [ -z "${NO_SUDO}" ]; then 2025-09-07T06:54:22.3472096Z  sudo git submodule foreach --recursive git clean -ffdx 2025-09-07T06:54:22.3472484Z else 2025-09-07T06:54:22.3472779Z  git submodule foreach --recursive git clean -ffdx 2025-09-07T06:54:22.3473149Z fi 2025-09-07T06:54:22.3493200Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:54:22.3493678Z env: 2025-09-07T06:54:22.3493909Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:22.3494183Z NO_SUDO: true 2025-09-07T06:54:22.3494395Z ##[endgroup] 2025-09-07T06:54:22.7437391Z Entering 'android/libs/fbjni' 2025-09-07T06:54:22.7637466Z Entering 'third_party/FP16' 2025-09-07T06:54:22.7839654Z Entering 'third_party/FXdiv' 2025-09-07T06:54:22.8041471Z Entering 'third_party/NNPACK' 2025-09-07T06:54:22.8257916Z Entering 'third_party/NVTX' 2025-09-07T06:54:22.8470442Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:54:22.8675259Z Entering 'third_party/XNNPACK' 2025-09-07T06:54:22.9075654Z Entering 'third_party/aiter' 2025-09-07T06:54:22.9332076Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:54:22.9737101Z Entering 'third_party/benchmark' 2025-09-07T06:54:22.9936289Z Entering 'third_party/composable_kernel' 2025-09-07T06:54:23.0355311Z Entering 'third_party/cpp-httplib' 2025-09-07T06:54:23.0561137Z Entering 'third_party/cpuinfo' 2025-09-07T06:54:23.0779713Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:54:23.0984914Z Entering 'third_party/cutlass' 2025-09-07T06:54:23.1357344Z Entering 'third_party/fbgemm' 2025-09-07T06:54:23.1672709Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:54:23.1878350Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:54:23.2280876Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:54:23.2492610Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:54:23.2869520Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:54:23.3080468Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:54:23.3283460Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:54:23.3531408Z Entering 'third_party/flash-attention' 2025-09-07T06:54:23.3757793Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:54:23.4151057Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:54:23.4502920Z Entering 'third_party/flatbuffers' 2025-09-07T06:54:23.4808253Z Entering 'third_party/fmt' 2025-09-07T06:54:23.5030795Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:54:23.5236642Z Entering 'third_party/gloo' 2025-09-07T06:54:23.5438298Z Entering 'third_party/googletest' 2025-09-07T06:54:23.5644203Z Entering 'third_party/ideep' 2025-09-07T06:54:23.5837328Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:54:23.6184378Z Entering 'third_party/ittapi' 2025-09-07T06:54:23.6398920Z Entering 'third_party/kineto' 2025-09-07T06:54:23.6599298Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:54:23.6806551Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:54:23.7049828Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:54:23.7261428Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:54:23.7469884Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:54:23.7656502Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:54:23.7907059Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:54:23.8108365Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:54:23.8329572Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:54:23.8584096Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:54:23.8813279Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:54:23.9016034Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:54:23.9250508Z Entering 'third_party/kleidiai' 2025-09-07T06:54:23.9467818Z Entering 'third_party/mimalloc' 2025-09-07T06:54:23.9675741Z Entering 'third_party/nlohmann' 2025-09-07T06:54:23.9906590Z Entering 'third_party/onnx' 2025-09-07T06:54:24.0978532Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:54:24.1228162Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:54:24.1476369Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:54:24.1690744Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:54:24.1901087Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:54:24.2096171Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:54:24.2329678Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:54:24.2529707Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:54:24.2732018Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:54:24.2932901Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:54:24.3179851Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:54:24.3407498Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:54:24.4295364Z Entering 'third_party/pocketfft' 2025-09-07T06:54:24.4492795Z Entering 'third_party/protobuf' 2025-09-07T06:54:24.4796123Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:54:24.4997202Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:54:24.5226838Z Entering 'third_party/psimd' 2025-09-07T06:54:24.5455398Z Entering 'third_party/pthreadpool' 2025-09-07T06:54:24.5652561Z Entering 'third_party/pybind11' 2025-09-07T06:54:24.5861491Z Entering 'third_party/python-peachpy' 2025-09-07T06:54:24.6070979Z Entering 'third_party/sleef' 2025-09-07T06:54:24.6275346Z Entering 'third_party/tensorpipe' 2025-09-07T06:54:24.6465789Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:54:24.6677355Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:54:24.6891819Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:54:24.7144674Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:54:24.7341814Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:54:24.7824156Z Prepare all required actions 2025-09-07T06:54:24.7934715Z ##[group]Run ./.github/actions/setup-win 2025-09-07T06:54:24.7935025Z with: 2025-09-07T06:54:24.7935199Z cuda-version: cpu 2025-09-07T06:54:24.7935392Z env: 2025-09-07T06:54:24.7935568Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:24.7935792Z ##[endgroup] 2025-09-07T06:54:24.8017447Z ##[group]Run set -euo pipefail 2025-09-07T06:54:24.8017789Z set -euo pipefail 2025-09-07T06:54:24.8018088Z function get_ec2_metadata() { 2025-09-07T06:54:24.8018450Z  # Pulled from instance metadata endpoint for EC2 2025-09-07T06:54:24.8019089Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-09-07T06:54:24.8019628Z  category=$1 2025-09-07T06:54:24.8020566Z  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-09-07T06:54:24.8021424Z } 2025-09-07T06:54:24.8021857Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-09-07T06:54:24.8022288Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-09-07T06:54:24.8022748Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-09-07T06:54:24.8023166Z echo "system info $(uname -a)" 2025-09-07T06:54:24.8043001Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:54:24.8043473Z env: 2025-09-07T06:54:24.8043680Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:24.8043952Z ##[endgroup] 2025-09-07T06:54:24.8664335Z ami-id: ami-09330720cd2f262ab 2025-09-07T06:54:24.9125774Z instance-id: i-0d07037e5e35aebe8 2025-09-07T06:54:24.9621869Z instance-type: c5d.4xlarge 2025-09-07T06:54:24.9805452Z system info MSYS_NT-10.0-17763 EC2AMAZ-F4P7NAP 3.6.4-b9f03e96.x86_64 2025-07-16 18:17 UTC x86_64 Msys 2025-09-07T06:54:24.9919684Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-09-07T06:54:24.9920622Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-09-07T06:54:24.9937686Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:54:24.9938121Z env: 2025-09-07T06:54:24.9938317Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:24.9938539Z ##[endgroup] 2025-09-07T06:54:25.4040574Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:54:25.4109172Z Finished 2025-09-07T06:54:25.4398012Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-09-07T06:54:25.4398527Z # Windows conda is baked into the AMI at this location 2025-09-07T06:54:25.4398974Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-09-07T06:54:25.4399292Z  2025-09-07T06:54:25.4399471Z { 2025-09-07T06:54:25.4399723Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-09-07T06:54:25.4400122Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-09-07T06:54:25.4400457Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-09-07T06:54:25.4400752Z } >> "${GITHUB_ENV}" 2025-09-07T06:54:25.4421046Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:54:25.4421466Z env: 2025-09-07T06:54:25.4421651Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:25.4421868Z ##[endgroup] 2025-09-07T06:54:25.4689912Z ##[group]Run set +e 2025-09-07T06:54:25.4690153Z set +e 2025-09-07T06:54:25.4690346Z set -x 2025-09-07T06:54:25.4690530Z  2025-09-07T06:54:25.4690737Z PYTHON3=$(${CONDA_RUN} which python3) 2025-09-07T06:54:25.4691035Z EXIT_CODE=$? 2025-09-07T06:54:25.4691229Z  2025-09-07T06:54:25.4692762Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-09-07T06:54:25.4693181Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-09-07T06:54:25.4693562Z  2025-09-07T06:54:25.4693761Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-09-07T06:54:25.4694094Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-09-07T06:54:25.4694376Z else 2025-09-07T06:54:25.4694808Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-09-07T06:54:25.4695490Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-09-07T06:54:25.4696136Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-09-07T06:54:25.4696689Z  # needed. In both cases, Python binary is just called python 2025-09-07T06:54:25.4697068Z  PYTHON=$(${CONDA_RUN} which python) 2025-09-07T06:54:25.4697358Z  EXIT_CODE=$? 2025-09-07T06:54:25.4697567Z  2025-09-07T06:54:25.4697758Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-09-07T06:54:25.4698335Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-09-07T06:54:25.4698741Z  2025-09-07T06:54:25.4698998Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-09-07T06:54:25.4699499Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-09-07T06:54:25.4699957Z  # here pointing to Python 2025-09-07T06:54:25.4700249Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-09-07T06:54:25.4700503Z  2025-09-07T06:54:25.4700707Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-09-07T06:54:25.4701031Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-09-07T06:54:25.4701321Z  else 2025-09-07T06:54:25.4701550Z  echo "Found no Python using ${CONDA_RUN}" 2025-09-07T06:54:25.4701849Z  fi 2025-09-07T06:54:25.4702027Z fi 2025-09-07T06:54:25.4720524Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:54:25.4720956Z env: 2025-09-07T06:54:25.4721137Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:25.4721513Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:25.4722017Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:25.4722486Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:25.4722836Z ##[endgroup] 2025-09-07T06:54:25.4945247Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-09-07T06:54:29.6062491Z 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/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin/x64:/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v13.0/bin:/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/Program Files/NVIDIA Corporation/Nsight Compute 2025.3.0:/c/Users/runneruser/AppData/Local/Microsoft/WindowsApps) 2025-09-07T06:54:29.6086741Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-09-07T06:54:29.6899772Z + PYTHON3= 2025-09-07T06:54:29.6900002Z + EXIT_CODE=1 2025-09-07T06:54:29.6900632Z + [[ 1 == \0 ]] 2025-09-07T06:54:29.6959051Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-09-07T06:54:31.3088282Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-09-07T06:54:31.3089409Z + EXIT_CODE=0 2025-09-07T06:54:31.3089599Z + [[ 0 == \0 ]] 2025-09-07T06:54:31.3090043Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-09-07T06:54:31.3090755Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-09-07T06:54:31.3199564Z ++ echo /c/Jenkins/Miniconda3/python 2025-09-07T06:54:31.3248960Z ++ sed s/python/python3/ 2025-09-07T06:54:31.3407717Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-09-07T06:54:31.3408162Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-09-07T06:54:31.3579409Z ++ dirname /c/Jenkins/Miniconda3/python 2025-09-07T06:54:31.3648885Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-09-07T06:54:31.3649186Z + echo /c/Jenkins/Miniconda3 2025-09-07T06:54:31.3756893Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-09-07T06:54:31.3757528Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-09-07T06:54:31.3758060Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-09-07T06:54:31.3781296Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:54:31.3781763Z env: 2025-09-07T06:54:31.3781949Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:31.3782319Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:31.3782840Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:31.3783300Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:31.3783653Z ##[endgroup] 2025-09-07T06:54:31.4655580Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-09-07T06:54:31.4656521Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-09-07T06:54:31.4657294Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-09-07T06:54:31.4657738Z # that it doesn't interfere 2025-09-07T06:54:31.4658189Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-09-07T06:54:31.4674849Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:54:31.4675282Z env: 2025-09-07T06:54:31.4675479Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:31.4675835Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:31.4676341Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:31.4676860Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:31.4677288Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:31.4677585Z ##[endgroup] 2025-09-07T06:54:31.8259715Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:54:31.8315449Z Finished 2025-09-07T06:54:32.2426355Z ##[group]Run choco install handle -y 2025-09-07T06:54:32.2426671Z choco install handle -y 2025-09-07T06:54:32.2426966Z handle C:\actions-runner\_work\ 2025-09-07T06:54:32.2443540Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:54:32.2443985Z env: 2025-09-07T06:54:32.2444166Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:32.2444530Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:32.2445040Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:32.2445501Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:32.2445887Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:32.2446163Z ##[endgroup] 2025-09-07T06:54:32.5906548Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:54:32.5942265Z Finished 2025-09-07T06:54:33.5739250Z Chocolatey v2.5.0 2025-09-07T06:54:33.7320735Z Installing the following packages: 2025-09-07T06:54:33.7325445Z handle 2025-09-07T06:54:33.7329268Z By installing, you accept licenses for the packages. 2025-09-07T06:54:34.5222954Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-09-07T06:54:34.6560397Z 2025-09-07T06:54:34.6561415Z Progress: Downloading Handle 5.0... 15% 2025-09-07T06:54:34.6561896Z Progress: Downloading Handle 5.0... 45% 2025-09-07T06:54:34.6562396Z Progress: Downloading Handle 5.0... 75% 2025-09-07T06:54:34.6562915Z Progress: Downloading Handle 5.0... 100% 2025-09-07T06:54:35.4208102Z 2025-09-07T06:54:35.4208501Z handle v5.0.0 [Approved] 2025-09-07T06:54:35.4519868Z handle package files install completed. Performing other installation steps. 2025-09-07T06:54:36.8961682Z Downloading Handle 2025-09-07T06:54:36.8962107Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-09-07T06:54:36.9827526Z 2025-09-07T06:54:36.9843978Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-09-07T06:54:36.9859609Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-09-07T06:54:36.9873404Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-09-07T06:54:36.9890700Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-09-07T06:54:36.9894027Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-09-07T06:54:36.9900138Z Download of Handle.zip (729.82 KB) completed. 2025-09-07T06:54:40.0644696Z Hashes match. 2025-09-07T06:54:40.0899548Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-09-07T06:54:40.2372111Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-09-07T06:54:40.2421167Z HKEY_CURRENT_USER\Software\Sysinternals 2025-09-07T06:54:40.2450769Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-09-07T06:54:40.5921692Z ShimGen has successfully created a shim for handle.exe 2025-09-07T06:54:40.7718382Z ShimGen has successfully created a shim for handle64.exe 2025-09-07T06:54:40.9409484Z ShimGen has successfully created a shim for handle64a.exe 2025-09-07T06:54:40.9663130Z The install of handle was successful. 2025-09-07T06:54:40.9666252Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-09-07T06:54:40.9762903Z 2025-09-07T06:54:40.9763026Z Chocolatey installed 1/1 packages. 2025-09-07T06:54:40.9763456Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-09-07T06:54:41.0755917Z 2025-09-07T06:54:41.0756282Z Nthandle v5.0 - Handle viewer 2025-09-07T06:54:41.0756617Z Copyright (C) 1997-2022 Mark Russinovich 2025-09-07T06:54:41.0756911Z Sysinternals - www.sysinternals.com 2025-09-07T06:54:41.0757102Z 2025-09-07T06:54:41.1142987Z powershell.exe pid: 3384 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:54:41.1143589Z handle.exe pid: 4420 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:54:41.1144172Z handle.exe pid: 4616 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:54:41.1144735Z handle64.exe pid: 916 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:54:41.1481973Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-09-07T06:54:41.1482379Z with: 2025-09-07T06:54:41.1482558Z shell: bash 2025-09-07T06:54:41.1482741Z timeout_minutes: 5 2025-09-07T06:54:41.1482959Z max_attempts: 5 2025-09-07T06:54:41.1483167Z retry_wait_seconds: 30 2025-09-07T06:54:41.1483469Z command: set -eu python3 -m pip install 'xdoctest>=1.1.0' 2025-09-07T06:54:41.1483827Z polling_interval_seconds: 1 2025-09-07T06:54:41.1484074Z warning_on_retry: true 2025-09-07T06:54:41.1484299Z continue_on_error: false 2025-09-07T06:54:41.1484505Z env: 2025-09-07T06:54:41.1484687Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:41.1485039Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:41.1485562Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:41.1494409Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:41.1494947Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:41.1495238Z ##[endgroup] 2025-09-07T06:54:43.0593322Z Collecting xdoctest>=1.1.0 2025-09-07T06:54:43.2677891Z Downloading xdoctest-1.2.0-py3-none-any.whl.metadata (37 kB) 2025-09-07T06:54:43.6677725Z Downloading xdoctest-1.2.0-py3-none-any.whl (151 kB) 2025-09-07T06:54:43.7084271Z ---------------------------------------- 151.2/151.2 kB 3.0 MB/s eta 0:00:00 2025-09-07T06:54:44.9123194Z Installing collected packages: xdoctest 2025-09-07T06:54:44.9123951Z Attempting uninstall: xdoctest 2025-09-07T06:54:44.9147179Z Found existing installation: xdoctest 1.0.2 2025-09-07T06:54:44.9263683Z Uninstalling xdoctest-1.0.2: 2025-09-07T06:54:44.9304745Z Successfully uninstalled xdoctest-1.0.2 2025-09-07T06:54:45.0358679Z WARNING: The script xdoctest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-09-07T06:54:45.0359726Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-09-07T06:54:45.0822074Z Successfully installed xdoctest-1.2.0 2025-09-07T06:54:46.2791774Z Command completed after 1 attempt(s). 2025-09-07T06:54:46.2950186Z Prepare all required actions 2025-09-07T06:54:46.2984074Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-09-07T06:54:46.2984387Z with: 2025-09-07T06:54:46.2984901Z github-token: *** 2025-09-07T06:54:46.2985087Z env: 2025-09-07T06:54:46.2985270Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:46.2985636Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:46.2986155Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:46.2986611Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:46.2987001Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:46.2987293Z ##[endgroup] 2025-09-07T06:54:46.3058695Z ##[group]Run set -eux 2025-09-07T06:54:46.3058933Z set -eux 2025-09-07T06:54:46.3059326Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-09-07T06:54:46.3079471Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:54:46.3079881Z env: 2025-09-07T06:54:46.3080066Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:46.3080429Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:46.3080945Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:46.3081412Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:46.3081797Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:46.3082248Z GITHUB_TOKEN: *** 2025-09-07T06:54:46.3082439Z ##[endgroup] 2025-09-07T06:54:46.3272729Z + python3 .github/scripts/get_workflow_job_id.py 17524754564 i-0d07037e5e35aebe8 2025-09-07T06:54:47.2191430Z Setting output job-id=49774387897 2025-09-07T06:54:47.2191998Z Setting output job-name=win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T06:54:47.2439604Z ##[group]Run # Windows conda doesn't have python3 binary, only python, but it's python3 2025-09-07T06:54:47.2440265Z # Windows conda doesn't have python3 binary, only python, but it's python3 2025-09-07T06:54:47.2440893Z ${CONDA_RUN} python -m pip install psutil==5.9.8 dataclasses_json==0.6.7 nvidia-ml-py==11.525.84 2025-09-07T06:54:47.2441848Z ${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-09-07T06:54:47.2442657Z echo "monitor-script-pid=${!}" >> "${GITHUB_OUTPUT}" 2025-09-07T06:54:47.2462725Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:54:47.2463156Z env: 2025-09-07T06:54:47.2463348Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:47.2463710Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:47.2464256Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:47.2464709Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:47.2465100Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:47.2465378Z JOB_ID: 49774387897 2025-09-07T06:54:47.2465753Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T06:54:47.2466186Z WORKFLOW_NAME: trunk 2025-09-07T06:54:47.2466466Z WORKFLOW_RUN_ID: 17524754564 2025-09-07T06:54:47.2466722Z MONITOR_LOG_INTERVAL: 5 2025-09-07T06:54:47.2466987Z MONITOR_DATA_COLLECT_INTERVAL: 1 2025-09-07T06:54:47.2467246Z ##[endgroup] 2025-09-07T06:54:49.7036695Z Collecting psutil==5.9.8 2025-09-07T06:54:49.9258375Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl.metadata (22 kB) 2025-09-07T06:54:49.9964943Z Collecting dataclasses_json==0.6.7 2025-09-07T06:54:50.0058241Z Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) 2025-09-07T06:54:50.0471562Z Collecting nvidia-ml-py==11.525.84 2025-09-07T06:54:50.0584989Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl.metadata (8.6 kB) 2025-09-07T06:54:50.1495839Z Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses_json==0.6.7) 2025-09-07T06:54:50.1587201Z Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) 2025-09-07T06:54:50.1769746Z Collecting typing-inspect<1,>=0.4.0 (from dataclasses_json==0.6.7) 2025-09-07T06:54:50.1860192Z Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) 2025-09-07T06:54:50.2050815Z 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-09-07T06:54:50.2205779Z Collecting mypy-extensions>=0.3.0 (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) 2025-09-07T06:54:50.2296243Z Downloading mypy_extensions-1.1.0-py3-none-any.whl.metadata (1.1 kB) 2025-09-07T06:54:50.2362783Z 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-09-07T06:54:50.2509793Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl (255 kB) 2025-09-07T06:54:50.2753853Z ---------------------------------------- 255.1/255.1 kB 7.9 MB/s eta 0:00:00 2025-09-07T06:54:50.2840709Z Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) 2025-09-07T06:54:50.2982377Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl (34 kB) 2025-09-07T06:54:50.3125581Z Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) 2025-09-07T06:54:50.3212778Z ---------------------------------------- 50.9/50.9 kB ? eta 0:00:00 2025-09-07T06:54:50.3300890Z Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) 2025-09-07T06:54:50.3430747Z Downloading mypy_extensions-1.1.0-py3-none-any.whl (5.0 kB) 2025-09-07T06:54:51.1343016Z Installing collected packages: nvidia-ml-py, psutil, mypy-extensions, marshmallow, typing-inspect, dataclasses_json 2025-09-07T06:54:51.1757887Z Attempting uninstall: psutil 2025-09-07T06:54:51.1769847Z Found existing installation: psutil 5.9.1 2025-09-07T06:54:51.1872375Z Uninstalling psutil-5.9.1: 2025-09-07T06:54:51.1896892Z Successfully uninstalled psutil-5.9.1 2025-09-07T06:54:51.5141703Z 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-09-07T06:54:51.7004791Z ##[group]Run seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6 2025-09-07T06:54:51.7005280Z with: 2025-09-07T06:54:51.7005484Z name: win-vs2022-cpu-py3 2025-09-07T06:54:51.7005733Z path: C:\17524754564\build-results 2025-09-07T06:54:51.7005997Z s3-bucket: gha-artifacts 2025-09-07T06:54:51.7006235Z region: us-east-1 2025-09-07T06:54:51.7006423Z env: 2025-09-07T06:54:51.7006596Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:51.7006966Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:51.7007482Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:51.7007941Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:51.7008338Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:51.7008617Z ##[endgroup] 2025-09-07T06:54:52.2513459Z (node:5612) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-09-07T06:54:52.2513939Z 2025-09-07T06:54:52.2514116Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-09-07T06:54:52.2514608Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-09-07T06:54:52.2515119Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-09-07T06:54:52.3834340Z Found 4 objects with prefix pytorch/pytorch/17524754564/win-vs2022-cpu-py3/ 2025-09-07T06:54:52.3840405Z Starting download (1/4): C:\17524754564\build-results\.additional_ci_files\test-class-times.json 2025-09-07T06:54:52.5770370Z Finished download (1/4): C:\17524754564\build-results\.additional_ci_files\test-class-times.json 2025-09-07T06:54:52.5772296Z Starting download (2/4): C:\17524754564\build-results\.additional_ci_files\test-times.json 2025-09-07T06:54:52.7278688Z Finished download (2/4): C:\17524754564\build-results\.additional_ci_files\test-times.json 2025-09-07T06:54:52.7280164Z Starting download (3/4): C:\17524754564\build-results\.ninja_log 2025-09-07T06:54:52.8956912Z Finished download (3/4): C:\17524754564\build-results\.ninja_log 2025-09-07T06:54:52.8957918Z Starting download (4/4): C:\17524754564\build-results\torch-2.9.0a0+git93fb23d-cp39-cp39-win_amd64.whl 2025-09-07T06:54:55.6820830Z Finished download (4/4): C:\17524754564\build-results\torch-2.9.0a0+git93fb23d-cp39-cp39-win_amd64.whl 2025-09-07T06:54:55.6830188Z Artifact download has finished successfully 2025-09-07T06:54:55.7080113Z ##[group]Run tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-09-07T06:54:55.7080528Z tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-09-07T06:54:55.7097523Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T06:54:55.7098036Z env: 2025-09-07T06:54:55.7098212Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:55.7098645Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:55.7099151Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:55.7099615Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:55.7100005Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:55.7100291Z ##[endgroup] 2025-09-07T06:54:56.0586042Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T06:54:56.0656881Z Finished 2025-09-07T06:54:56.0767044Z Folder PATH listing 2025-09-07T06:54:56.0767373Z Volume serial number is 000001A3 EA7F:0099 2025-09-07T06:54:56.0767674Z C:\17524754564\BUILD-RESULTS 2025-09-07T06:54:56.0772485Z � .ninja_log 2025-09-07T06:54:56.0772834Z � torch-2.9.0a0+git93fb23d-cp39-cp39-win_amd64.whl 2025-09-07T06:54:56.0773179Z � 2025-09-07T06:54:56.0773393Z ����.additional_ci_files 2025-09-07T06:54:56.0773647Z test-class-times.json 2025-09-07T06:54:56.0773890Z test-times.json 2025-09-07T06:54:56.0774084Z 2025-09-07T06:54:56.1003520Z Prepare all required actions 2025-09-07T06:54:56.1003927Z Getting action download info 2025-09-07T06:54:56.2401007Z Download action repository 'seemethere/download-artifact-s3@v4' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-09-07T06:54:56.4929085Z Download action repository 'actions/download-artifact@v4' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-09-07T06:54:56.8047636Z ##[group]Run ./.github/actions/download-td-artifacts 2025-09-07T06:54:56.8047973Z with: 2025-09-07T06:54:56.8048143Z env: 2025-09-07T06:54:56.8048310Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:56.8048675Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:56.8049184Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:56.8049649Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:56.8050028Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:56.8050347Z ##[endgroup] 2025-09-07T06:54:56.8136903Z ##[group]Run seemethere/download-artifact-s3@v4 2025-09-07T06:54:56.8137292Z with: 2025-09-07T06:54:56.8137518Z name: td_results 2025-09-07T06:54:56.8137730Z s3-bucket: gha-artifacts 2025-09-07T06:54:56.8137995Z region: us-east-1 2025-09-07T06:54:56.8138182Z env: 2025-09-07T06:54:56.8138358Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:56.8138733Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:56.8139405Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:56.8139868Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:56.8140259Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:56.8140546Z ##[endgroup] 2025-09-07T06:54:57.3347021Z (node:468) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-09-07T06:54:57.3347467Z 2025-09-07T06:54:57.3347665Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-09-07T06:54:57.3348161Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-09-07T06:54:57.3348666Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-09-07T06:54:57.4477089Z Found 1 objects with prefix pytorch/pytorch/17524754564/td_results/ 2025-09-07T06:54:57.4478587Z Starting download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-09-07T06:54:57.5294819Z Finished download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-09-07T06:54:57.5304067Z Artifact download has finished successfully 2025-09-07T06:54:57.5535177Z ##[group]Run mkdir -p .additional_ci_files 2025-09-07T06:54:57.5535504Z mkdir -p .additional_ci_files 2025-09-07T06:54:57.5535885Z mv td_results.json .additional_ci_files/td_results.json || true 2025-09-07T06:54:57.5555484Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:54:57.5555935Z env: 2025-09-07T06:54:57.5556113Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:57.5556498Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:57.5557012Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:57.5557467Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:57.5557852Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:57.5558143Z ##[endgroup] 2025-09-07T06:54:57.6226026Z Prepare all required actions 2025-09-07T06:54:57.6226413Z Getting action download info 2025-09-07T06:54:57.7385297Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-09-07T06:54:57.9539823Z ##[group]Run ./.github/actions/filter-test-configs 2025-09-07T06:54:57.9540126Z with: 2025-09-07T06:54:57.9540469Z github-token: *** 2025-09-07T06:54:57.9541512Z 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-09-07T06:54:57.9542781Z job-name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T06:54:57.9543219Z env: 2025-09-07T06:54:57.9543405Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:57.9543834Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:57.9544339Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:57.9544811Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:57.9545200Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:57.9545490Z ##[endgroup] 2025-09-07T06:54:57.9636168Z ##[group]Run nick-fields/retry@v3.0.0 2025-09-07T06:54:57.9636437Z with: 2025-09-07T06:54:57.9636616Z shell: bash 2025-09-07T06:54:57.9636803Z timeout_minutes: 10 2025-09-07T06:54:57.9637018Z max_attempts: 5 2025-09-07T06:54:57.9637210Z retry_wait_seconds: 30 2025-09-07T06:54:57.9637936Z 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-09-07T06:54:57.9638696Z polling_interval_seconds: 1 2025-09-07T06:54:57.9639094Z warning_on_retry: true 2025-09-07T06:54:57.9639337Z continue_on_error: false 2025-09-07T06:54:57.9639552Z env: 2025-09-07T06:54:57.9639738Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:54:57.9640100Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:54:57.9640613Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:54:57.9641087Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:54:57.9641471Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:54:57.9641923Z GITHUB_TOKEN: *** 2025-09-07T06:54:57.9642117Z ##[endgroup] 2025-09-07T06:54:58.0809746Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-09-07T06:54:58.8409156Z Collecting requests==2.27.1 2025-09-07T06:54:59.0419644Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-09-07T06:54:59.0538925Z Requirement already satisfied: pyyaml==6.0.2 in c:\jenkins\miniconda3\lib\site-packages (6.0.2) 2025-09-07T06:54:59.0666110Z 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-09-07T06:54:59.0672675Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.8.3) 2025-09-07T06:54:59.0683833Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-09-07T06:54:59.0697242Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-09-07T06:54:59.1028167Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-09-07T06:54:59.1683842Z ---------------------------------------- 63.1/63.1 kB 1.1 MB/s eta 0:00:00 2025-09-07T06:54:59.9293367Z Installing collected packages: requests 2025-09-07T06:54:59.9294935Z Attempting uninstall: requests 2025-09-07T06:54:59.9305431Z Found existing installation: requests 2.32.4 2025-09-07T06:54:59.9379187Z Uninstalling requests-2.32.4: 2025-09-07T06:54:59.9400307Z Successfully uninstalled requests-2.32.4 2025-09-07T06:55:00.0303637Z Successfully installed requests-2.27.1 2025-09-07T06:55:01.0779385Z Command completed after 1 attempt(s). 2025-09-07T06:55:01.0940875Z ##[group]Run set -x 2025-09-07T06:55:01.0941112Z set -x 2025-09-07T06:55:01.0941292Z  2025-09-07T06:55:01.0941675Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-09-07T06:55:01.0942111Z # in runner workspace 2025-09-07T06:55:01.0942445Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-09-07T06:55:01.0962529Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:55:01.0962958Z env: 2025-09-07T06:55:01.0963136Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:55:01.0963512Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:55:01.0964044Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:55:01.0964505Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:55:01.0964973Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:55:01.0965266Z ##[endgroup] 2025-09-07T06:55:01.1145728Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-09-07T06:55:01.1556600Z Setting output branch=main 2025-09-07T06:55:01.1704313Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-09-07T06:55:01.1704766Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-09-07T06:55:01.1705110Z echo "Job name: ${JOB_NAME}" 2025-09-07T06:55:01.1705405Z  2025-09-07T06:55:01.1705744Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-09-07T06:55:01.1706172Z # in runner workspace 2025-09-07T06:55:01.1706738Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-09-07T06:55:01.1707173Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-09-07T06:55:01.1707475Z  --job-name "${JOB_NAME}" \ 2025-09-07T06:55:01.1708608Z  --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-09-07T06:55:01.1709740Z  --selected-test-configs "" \ 2025-09-07T06:55:01.1710034Z  --pr-number "${PR_NUMBER}" \ 2025-09-07T06:55:01.1710303Z  --tag "${TAG}" \ 2025-09-07T06:55:01.1710587Z  --event-name "${EVENT_NAME}" \ 2025-09-07T06:55:01.1710870Z  --schedule "${SCHEDULE}" \ 2025-09-07T06:55:01.1711191Z  --branch "${HEAD_BRANCH}" 2025-09-07T06:55:01.1730595Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:55:01.1731016Z env: 2025-09-07T06:55:01.1731207Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:55:01.1731576Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:55:01.1732079Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:55:01.1732542Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:55:01.1732937Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:55:01.1733422Z GITHUB_TOKEN: *** 2025-09-07T06:55:01.1733802Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T06:55:01.1734241Z PR_NUMBER: 2025-09-07T06:55:01.1734428Z TAG: 2025-09-07T06:55:01.1734601Z EVENT_NAME: push 2025-09-07T06:55:01.1734787Z SCHEDULE: 2025-09-07T06:55:01.1734965Z HEAD_BRANCH: main 2025-09-07T06:55:01.1735150Z ##[endgroup] 2025-09-07T06:55:01.1917392Z Workflow: trunk 2025-09-07T06:55:01.1918484Z Job name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T06:55:01.5598207Z Setting output keep-going=True 2025-09-07T06:55:01.5598546Z Setting output ci-verbose-test-logs=False 2025-09-07T06:55:01.5598868Z Setting output ci-test-showlocals=False 2025-09-07T06:55:01.5599170Z Setting output ci-no-test-timeout=False 2025-09-07T06:55:01.5599459Z Setting output ci-no-td=False 2025-09-07T06:55:01.5599720Z Setting output ci-td-distributed=False 2025-09-07T06:55:01.5600006Z Setting output is-unstable=False 2025-09-07T06:55:01.5600263Z Setting output reenabled-issues= 2025-09-07T06:55:01.5601490Z 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-09-07T06:55:01.5602773Z Setting output is-test-matrix-empty=False 2025-09-07T06:55:01.5826999Z ##[group]Run echo "Filtered matrix:" 2025-09-07T06:55:01.5827318Z echo "Filtered matrix:" 2025-09-07T06:55:01.5828387Z 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-09-07T06:55:01.5829470Z  2025-09-07T06:55:01.5829648Z echo 2025-09-07T06:55:01.5829875Z echo "Is the current job unstable? False" 2025-09-07T06:55:01.5830167Z  2025-09-07T06:55:01.5830329Z echo 2025-09-07T06:55:01.5830546Z echo "Is keep-going label set? True" 2025-09-07T06:55:01.5830820Z  2025-09-07T06:55:01.5830983Z echo 2025-09-07T06:55:01.5831337Z echo "Reenabled issues? " 2025-09-07T06:55:01.5851067Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:55:01.5851495Z env: 2025-09-07T06:55:01.5851674Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:55:01.5852041Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:55:01.5852554Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:55:01.5853008Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:55:01.5853394Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:55:01.5853680Z ##[endgroup] 2025-09-07T06:55:01.6038636Z Filtered matrix: 2025-09-07T06:55:01.6040139Z {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-09-07T06:55:01.6041267Z 2025-09-07T06:55:01.6041382Z Is the current job unstable? False 2025-09-07T06:55:01.6041562Z 2025-09-07T06:55:01.6041656Z Is keep-going label set? True 2025-09-07T06:55:01.6041822Z 2025-09-07T06:55:01.6041899Z Reenabled issues? 2025-09-07T06:55:01.6156742Z ##[group]Run echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-09-07T06:55:01.6157229Z echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-09-07T06:55:01.6177003Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:55:01.6177465Z env: 2025-09-07T06:55:01.6177644Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:55:01.6178135Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:55:01.6178721Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:55:01.6179234Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:55:01.6179667Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:55:01.6180008Z JOB_TIMEOUT: 240 2025-09-07T06:55:01.6180237Z ##[endgroup] 2025-09-07T06:55:01.6459092Z ##[group]Run pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-09-07T06:55:01.6459496Z pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-09-07T06:55:01.6459824Z # shellcheck disable=SC2046,SC2102 2025-09-07T06:55:01.6460242Z python3 -mpip install $(echo *.whl)[opt-einsum,optree] optree==0.13.0 2025-09-07T06:55:01.6460662Z popd 2025-09-07T06:55:01.6460838Z  2025-09-07T06:55:01.6461035Z .ci/pytorch/win-test.sh 2025-09-07T06:55:01.6479659Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T06:55:01.6480070Z env: 2025-09-07T06:55:01.6480261Z GIT_DEFAULT_BRANCH: main 2025-09-07T06:55:01.6480621Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:55:01.6481139Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:55:01.6481615Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:55:01.6482035Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:55:01.6482402Z USE_CUDA: 0 2025-09-07T06:55:01.6482597Z INSTALL_WINDOWS_SDK: 1 2025-09-07T06:55:01.6482862Z PYTHON_VERSION: 3.9 2025-09-07T06:55:01.6483085Z CONTINUE_THROUGH_ERROR: True 2025-09-07T06:55:01.6483324Z VERBOSE_TEST_LOGS: False 2025-09-07T06:55:01.6483548Z TEST_SHOWLOCALS: False 2025-09-07T06:55:01.6483769Z NO_TEST_TIMEOUT: False 2025-09-07T06:55:01.6483970Z NO_TD: False 2025-09-07T06:55:01.6484162Z VC_PRODUCT: BuildTools 2025-09-07T06:55:01.6484364Z VC_VERSION: 2025-09-07T06:55:01.6484549Z VS_VERSION: 17.4.1 2025-09-07T06:55:01.6484735Z VC_YEAR: 2022 2025-09-07T06:55:01.6484935Z AWS_DEFAULT_REGION: us-east-1 2025-09-07T06:55:01.6485156Z PR_NUMBER: 2025-09-07T06:55:01.6485357Z GITHUB_REPOSITORY: pytorch/pytorch 2025-09-07T06:55:01.6485615Z GITHUB_WORKFLOW: trunk 2025-09-07T06:55:01.6485974Z GITHUB_JOB: test 2025-09-07T06:55:01.6486182Z GITHUB_RUN_ID: 17524754564 2025-09-07T06:55:01.6486416Z GITHUB_RUN_NUMBER: 143911 2025-09-07T06:55:01.6486646Z GITHUB_RUN_ATTEMPT: 1 2025-09-07T06:55:01.6486845Z JOB_ID: 49774387897 2025-09-07T06:55:01.6487229Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T06:55:01.6487698Z SHA1: 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:55:01.6488045Z CUDA_VERSION: cpu 2025-09-07T06:55:01.6488313Z PYTORCH_FINAL_PACKAGE_DIR: /c/17524754564/build-results/ 2025-09-07T06:55:01.6488713Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-09-07T06:55:01.6489112Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-09-07T06:55:01.6489491Z SHARD_NUMBER: 1 2025-09-07T06:55:01.6489679Z NUM_TEST_SHARDS: 3 2025-09-07T06:55:01.6489877Z TEST_CONFIG: default 2025-09-07T06:55:01.6490087Z REENABLED_ISSUES: 2025-09-07T06:55:01.6490285Z TORCH_CUDA_ARCH_LIST: 8.6 2025-09-07T06:55:01.6490545Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK: 0 2025-09-07T06:55:01.6490824Z PYTORCH_TEST_RERUN_DISABLED_TESTS: 0 2025-09-07T06:55:01.6491087Z ##[endgroup] 2025-09-07T06:55:01.6662826Z /c/17524754564/build-results /c/actions-runner/_work/pytorch/pytorch 2025-09-07T06:55:02.1918005Z Processing c:\17524754564\build-results\torch-2.9.0a0+git93fb23d-cp39-cp39-win_amd64.whl (from torch==2.9.0a0+git93fb23d) 2025-09-07T06:55:03.4302588Z Collecting optree==0.13.0 2025-09-07T06:55:03.6341978Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl.metadata (48 kB) 2025-09-07T06:55:03.6893772Z -------------------------------------- 48.7/48.7 kB 818.8 kB/s eta 0:00:00 2025-09-07T06:55:03.7259015Z Requirement already satisfied: typing-extensions>=4.5.0 in c:\jenkins\miniconda3\lib\site-packages (from optree==0.13.0) (4.12.2) 2025-09-07T06:55:03.7659916Z Collecting filelock (from torch==2.9.0a0+git93fb23d->torch==2.9.0a0+git93fb23d) 2025-09-07T06:55:03.7762814Z Downloading filelock-3.19.1-py3-none-any.whl.metadata (2.1 kB) 2025-09-07T06:55:03.8092244Z Collecting sympy>=1.13.3 (from torch==2.9.0a0+git93fb23d->torch==2.9.0a0+git93fb23d) 2025-09-07T06:55:03.8191710Z Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) 2025-09-07T06:55:03.8281907Z Requirement already satisfied: networkx>=2.5.1 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git93fb23d->torch==2.9.0a0+git93fb23d) (2.8.8) 2025-09-07T06:55:03.8510181Z Collecting jinja2 (from torch==2.9.0a0+git93fb23d->torch==2.9.0a0+git93fb23d) 2025-09-07T06:55:03.8611716Z Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) 2025-09-07T06:55:03.9052289Z Collecting fsspec>=0.8.5 (from torch==2.9.0a0+git93fb23d->torch==2.9.0a0+git93fb23d) 2025-09-07T06:55:03.9154149Z Downloading fsspec-2025.9.0-py3-none-any.whl.metadata (10 kB) 2025-09-07T06:55:03.9302696Z Requirement already satisfied: opt-einsum>=3.3 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git93fb23d->torch==2.9.0a0+git93fb23d) (3.4.0) 2025-09-07T06:55:04.0858809Z 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+git93fb23d->torch==2.9.0a0+git93fb23d) (1.2.1) 2025-09-07T06:55:04.1625513Z Collecting MarkupSafe>=2.0 (from jinja2->torch==2.9.0a0+git93fb23d->torch==2.9.0a0+git93fb23d) 2025-09-07T06:55:04.1732571Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl.metadata (4.1 kB) 2025-09-07T06:55:04.1988650Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl (270 kB) 2025-09-07T06:55:04.2288422Z ---------------------------------------- 270.1/270.1 kB 8.4 MB/s eta 0:00:00 2025-09-07T06:55:04.2395360Z Downloading fsspec-2025.9.0-py3-none-any.whl (199 kB) 2025-09-07T06:55:04.2521294Z --------------------------------------- 199.3/199.3 kB 11.8 MB/s eta 0:00:00 2025-09-07T06:55:04.2622637Z Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) 2025-09-07T06:55:04.3234784Z ---------------------------------------- 6.3/6.3 MB 101.4 MB/s eta 0:00:00 2025-09-07T06:55:04.3337852Z Downloading filelock-3.19.1-py3-none-any.whl (15 kB) 2025-09-07T06:55:04.3517936Z Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) 2025-09-07T06:55:04.3628037Z ---------------------------------------- 134.9/134.9 kB 7.8 MB/s eta 0:00:00 2025-09-07T06:55:04.3742667Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl (15 kB) 2025-09-07T06:55:05.3804105Z Installing collected packages: sympy, optree, MarkupSafe, fsspec, filelock, jinja2, torch 2025-09-07T06:55:05.3805506Z Attempting uninstall: sympy 2025-09-07T06:55:05.3818919Z Found existing installation: sympy 1.11.1 2025-09-07T06:55:05.7793138Z Uninstalling sympy-1.11.1: 2025-09-07T06:55:06.1546769Z Successfully uninstalled sympy-1.11.1 2025-09-07T06:55:13.7693513Z WARNING: The script isympy.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-09-07T06:55:13.7694315Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-09-07T06:55:34.4315390Z WARNING: The scripts torchfrtrace.exe and torchrun.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-09-07T06:55:34.4316323Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-09-07T06:55:34.6275065Z Successfully installed MarkupSafe-3.0.2 filelock-3.19.1 fsspec-2025.9.0 jinja2-3.1.6 optree-0.13.0 sympy-1.14.0 torch-2.9.0a0+git93fb23d 2025-09-07T06:55:34.7286953Z /c/actions-runner/_work/pytorch/pytorch 2025-09-07T06:55:34.7574912Z +++ dirname .ci/pytorch/win-test.sh 2025-09-07T06:55:34.7641153Z ++ cd .ci/pytorch 2025-09-07T06:55:34.7645989Z ++ pwd 2025-09-07T06:55:34.7650980Z + SCRIPT_PARENT_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch 2025-09-07T06:55:34.7651524Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-09-07T06:55:34.7719218Z +++ dirname /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-09-07T06:55:34.7786700Z ++ source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common_utils.sh 2025-09-07T06:55:34.7790556Z +++ declare -f -t trap_add 2025-09-07T06:55:34.7797465Z ++ set -ex -o pipefail 2025-09-07T06:55:34.7798006Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-09-07T06:55:34.7798336Z ++ BUILD_TEST_LIBTORCH=0 2025-09-07T06:55:34.7798688Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-09-07T06:55:34.7799229Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-09-07T06:55:34.7853851Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-09-07T06:55:34.7952786Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-09-07T06:55:34.7953179Z + export TMP_DIR_WIN 2025-09-07T06:55:34.7953493Z + export PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-09-07T06:55:34.7953895Z + PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-09-07T06:55:34.8006841Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch 2025-09-07T06:55:34.8110298Z + PROJECT_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch' 2025-09-07T06:55:34.8110684Z + export PROJECT_DIR_WIN 2025-09-07T06:55:34.8111003Z + export TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-09-07T06:55:34.8111402Z + TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-09-07T06:55:34.8168687Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/test 2025-09-07T06:55:34.8275666Z + TEST_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\test' 2025-09-07T06:55:34.8276038Z + export TEST_DIR_WIN 2025-09-07T06:55:34.8276359Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/17524754564/build-results/ 2025-09-07T06:55:34.8276769Z + PYTORCH_FINAL_PACKAGE_DIR=/c/17524754564/build-results/ 2025-09-07T06:55:34.8331349Z ++ cygpath -w /c/17524754564/build-results/ 2025-09-07T06:55:34.8421323Z + PYTORCH_FINAL_PACKAGE_DIR_WIN='C:\17524754564\build-results\' 2025-09-07T06:55:34.8421739Z + export PYTORCH_FINAL_PACKAGE_DIR_WIN 2025-09-07T06:55:34.8422127Z + export TORCH_SERIALIZATION_DEBUG=1 2025-09-07T06:55:34.8423269Z + TORCH_SERIALIZATION_DEBUG=1 2025-09-07T06:55:34.8423715Z + mkdir -p /c/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch 2025-09-07T06:55:34.8564441Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-09-07T06:55:34.8565150Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-09-07T06:55:34.8565699Z + [[ default = \f\o\r\c\e\_\o\n\_\c\p\u ]] 2025-09-07T06:55:34.8566028Z + [[ win-vs2022-cpu-py3 == *cuda* ]] 2025-09-07T06:55:34.8566662Z + 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-09-07T06:55:35.5629401Z Collecting pytest-rerunfailures==10.3 2025-09-07T06:55:35.7496534Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-09-07T06:55:35.7565157Z Requirement already satisfied: pytest-cpp==2.3.0 in c:\jenkins\miniconda3\lib\site-packages (2.3.0) 2025-09-07T06:55:35.7845251Z Collecting tensorboard==2.13.0 2025-09-07T06:55:35.7889576Z Downloading tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-09-07T06:55:36.2090997Z Collecting protobuf==5.29.4 2025-09-07T06:55:36.2143284Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl.metadata (592 bytes) 2025-09-07T06:55:36.2378598Z Collecting pytest-subtests==0.13.1 2025-09-07T06:55:36.2431171Z Downloading pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-09-07T06:55:36.2536499Z Requirement already satisfied: packaging>=17.1 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (23.2) 2025-09-07T06:55:36.2543139Z Requirement already satisfied: pytest>=5.3 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (7.1.3) 2025-09-07T06:55:36.2568862Z Requirement already satisfied: colorama in c:\jenkins\miniconda3\lib\site-packages (from pytest-cpp==2.3.0) (0.4.6) 2025-09-07T06:55:36.2839354Z Collecting absl-py>=0.4 (from tensorboard==2.13.0) 2025-09-07T06:55:36.2886589Z Downloading absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-09-07T06:55:37.0110309Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0) 2025-09-07T06:55:37.0195455Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl.metadata (4.0 kB) 2025-09-07T06:55:37.1300087Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0) 2025-09-07T06:55:37.1345500Z Downloading google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-09-07T06:55:37.1588033Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0) 2025-09-07T06:55:37.1641648Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-09-07T06:55:37.1966782Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0) 2025-09-07T06:55:37.2011025Z Downloading markdown-3.9-py3-none-any.whl.metadata (5.1 kB) 2025-09-07T06:55:37.2075272Z Requirement already satisfied: numpy>=1.12.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (1.22.3) 2025-09-07T06:55:37.2274015Z Requirement already satisfied: requests<3,>=2.21.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (2.27.1) 2025-09-07T06:55:37.2280850Z Requirement already satisfied: setuptools>=41.0.0 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (78.1.1) 2025-09-07T06:55:37.2418913Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0) 2025-09-07T06:55:37.2461896Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-09-07T06:55:37.3194305Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0) 2025-09-07T06:55:37.3239835Z Downloading werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-09-07T06:55:37.3306035Z Requirement already satisfied: wheel>=0.26 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (0.43.0) 2025-09-07T06:55:37.3357819Z Requirement already satisfied: attrs>=19.2.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest-subtests==0.13.1) (25.3.0) 2025-09-07T06:55:37.4418450Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-09-07T06:55:37.4466697Z Downloading cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-09-07T06:55:37.4783489Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-09-07T06:55:37.4826972Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-09-07T06:55:37.5089620Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-09-07T06:55:37.5131688Z Downloading rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-09-07T06:55:37.5598249Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-09-07T06:55:37.5640001Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-09-07T06:55:37.5846521Z 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-09-07T06:55:37.6007201Z Requirement already satisfied: iniconfig in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.1.0) 2025-09-07T06:55:37.6013620Z 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-09-07T06:55:37.6024490Z 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-09-07T06:55:37.6030968Z 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-09-07T06:55:37.6157754Z 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-09-07T06:55:37.6166056Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (2025.8.3) 2025-09-07T06:55:37.6177833Z 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-09-07T06:55:37.6191306Z 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-09-07T06:55:37.6466729Z 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-09-07T06:55:37.6863427Z 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-09-07T06:55:37.7354713Z 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-09-07T06:55:37.7412632Z Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-09-07T06:55:37.7718872Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-09-07T06:55:37.7771264Z Downloading oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-09-07T06:55:37.8567650Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-09-07T06:55:37.8697398Z Downloading tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-09-07T06:55:37.9278831Z ---------------------------------------- 5.6/5.6 MB 88.2 MB/s eta 0:00:00 2025-09-07T06:55:37.9328976Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl (434 kB) 2025-09-07T06:55:37.9433509Z --------------------------------------- 434.6/434.6 kB 28.3 MB/s eta 0:00:00 2025-09-07T06:55:37.9485699Z Downloading pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-09-07T06:55:37.9575229Z Downloading absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-09-07T06:55:37.9661441Z ---------------------------------------- 135.8/135.8 kB ? eta 0:00:00 2025-09-07T06:55:37.9702121Z Downloading google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-09-07T06:55:37.9794316Z ---------------------------------------- 216.1/216.1 kB ? eta 0:00:00 2025-09-07T06:55:37.9836473Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-09-07T06:55:37.9932442Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl (4.5 MB) 2025-09-07T06:55:38.0272245Z ---------------------------------------- 4.5/4.5 MB 144.7 MB/s eta 0:00:00 2025-09-07T06:55:38.0312827Z Downloading markdown-3.9-py3-none-any.whl (107 kB) 2025-09-07T06:55:38.0388619Z ---------------------------------------- 107.4/107.4 kB ? eta 0:00:00 2025-09-07T06:55:38.0430981Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-09-07T06:55:38.0522413Z Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-09-07T06:55:38.0614329Z ---------------------------------------- 224.5/224.5 kB ? eta 0:00:00 2025-09-07T06:55:38.0655837Z Downloading cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-09-07T06:55:38.0750736Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-09-07T06:55:38.0835295Z ---------------------------------------- 181.3/181.3 kB ? eta 0:00:00 2025-09-07T06:55:38.0874614Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-09-07T06:55:38.0964264Z Downloading rsa-4.9.1-py3-none-any.whl (34 kB) 2025-09-07T06:55:38.1059068Z Downloading oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-09-07T06:55:38.1149389Z ---------------------------------------- 160.1/160.1 kB 9.4 MB/s eta 0:00:00 2025-09-07T06:55:38.1189249Z Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-09-07T06:55:38.1270109Z ---------------------------------------- 83.1/83.1 kB ? eta 0:00:00 2025-09-07T06:55:38.9969040Z 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-09-07T06:55:39.2898697Z Attempting uninstall: protobuf 2025-09-07T06:55:39.2909218Z Found existing installation: protobuf 5.29.3 2025-09-07T06:55:39.3085044Z Uninstalling protobuf-5.29.3: 2025-09-07T06:55:39.3128859Z Successfully uninstalled protobuf-5.29.3 2025-09-07T06:55:40.0398431Z 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-09-07T06:55:40.0399650Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-09-07T06:55:40.1030659Z Attempting uninstall: pytest-rerunfailures 2025-09-07T06:55:40.1044504Z Found existing installation: pytest-rerunfailures 10.2 2025-09-07T06:55:40.1080825Z Uninstalling pytest-rerunfailures-10.2: 2025-09-07T06:55:40.5756867Z Successfully uninstalled pytest-rerunfailures-10.2 2025-09-07T06:55:40.9715507Z WARNING: The script markdown_py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-09-07T06:55:40.9716397Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-09-07T06:55:41.4354663Z WARNING: The script google-oauthlib-tool.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-09-07T06:55:41.4355517Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-09-07T06:55:42.0951391Z WARNING: The script tensorboard.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-09-07T06:55:42.0952294Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-09-07T06:55:42.1553026Z 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.9 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-09-07T06:55:42.3601611Z + python -m pip install z3-solver==4.15.1.0 2025-09-07T06:55:43.1017514Z Collecting z3-solver==4.15.1.0 2025-09-07T06:55:43.2849812Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl.metadata (778 bytes) 2025-09-07T06:55:43.2973561Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl (16.4 MB) 2025-09-07T06:55:43.5814324Z ---------------------------------------- 16.4/16.4 MB 108.8 MB/s eta 0:00:00 2025-09-07T06:55:44.6123784Z Installing collected packages: z3-solver 2025-09-07T06:55:45.0585439Z Successfully installed z3-solver-4.15.1.0 2025-09-07T06:55:45.1355049Z + python -m pip install tlparse==0.4.0 2025-09-07T06:55:45.9420922Z Collecting tlparse==0.4.0 2025-09-07T06:55:46.1250333Z Downloading tlparse-0.4.0-py3-none-win_amd64.whl.metadata (2.0 kB) 2025-09-07T06:55:46.1369849Z Downloading tlparse-0.4.0-py3-none-win_amd64.whl (2.0 MB) 2025-09-07T06:55:46.2864135Z ---------------------------------------- 2.0/2.0 MB 12.9 MB/s eta 0:00:00 2025-09-07T06:55:47.2591133Z Installing collected packages: tlparse 2025-09-07T06:55:47.3334923Z Successfully installed tlparse-0.4.0 2025-09-07T06:55:47.4124595Z + python -m pip install parameterized==0.8.1 2025-09-07T06:55:48.1225031Z Collecting parameterized==0.8.1 2025-09-07T06:55:48.3060210Z Downloading parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-09-07T06:55:48.3458693Z Downloading parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-09-07T06:55:49.3603111Z Installing collected packages: parameterized 2025-09-07T06:55:49.4394795Z Successfully installed parameterized-0.8.1 2025-09-07T06:55:49.5185800Z + python -m pip install pulp==2.9.0 2025-09-07T06:55:50.2299498Z Collecting pulp==2.9.0 2025-09-07T06:55:50.4126568Z Downloading PuLP-2.9.0-py3-none-any.whl.metadata (5.4 kB) 2025-09-07T06:55:50.4300168Z Downloading PuLP-2.9.0-py3-none-any.whl (17.7 MB) 2025-09-07T06:55:50.7409873Z ---------------------------------------- 17.7/17.7 MB 108.8 MB/s eta 0:00:00 2025-09-07T06:55:51.7597521Z Installing collected packages: pulp 2025-09-07T06:55:52.1391969Z WARNING: The script pulptest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-09-07T06:55:52.1392803Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-09-07T06:55:52.1910991Z Successfully installed pulp-2.9.0 2025-09-07T06:55:52.2700405Z + python -m pip install expecttest==0.3.0 2025-09-07T06:55:52.9793806Z Collecting expecttest==0.3.0 2025-09-07T06:55:53.1616737Z Downloading expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-09-07T06:55:53.1799020Z Downloading expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-09-07T06:55:54.1455170Z Installing collected packages: expecttest 2025-09-07T06:55:54.1456773Z Attempting uninstall: expecttest 2025-09-07T06:55:54.1465987Z Found existing installation: expecttest 0.1.3 2025-09-07T06:55:54.1504869Z Uninstalling expecttest-0.1.3: 2025-09-07T06:55:54.1533835Z Successfully uninstalled expecttest-0.1.3 2025-09-07T06:55:54.2113056Z Successfully installed expecttest-0.3.0 2025-09-07T06:55:54.2872907Z + run_tests 2025-09-07T06:55:54.2873458Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-09-07T06:55:54.2874114Z + [[ -x /c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe ]] 2025-09-07T06:55:54.2874845Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-09-07T06:55:54.2875410Z + [[ -x /c/Windows/System32/nvidia-smi.exe ]] 2025-09-07T06:55:54.2875733Z + /c/Windows/System32/nvidia-smi.exe 2025-09-07T06:55:54.3248922Z 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-09-07T06:55:54.3250135Z 2025-09-07T06:55:54.3278564Z + echo true 2025-09-07T06:55:54.3278779Z true 2025-09-07T06:55:54.3278948Z + break 2025-09-07T06:55:54.3279142Z + [[ 3 -eq 1 ]] 2025-09-07T06:55:54.3279572Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-09-07T06:55:54.3410586Z 2025-09-07T06:55:54.3411418Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-09-07T06:55:54.3420816Z 2025-09-07T06:55:54.3424088Z 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:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;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:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-09-07T06:55:54.3427120Z 2025-09-07T06:55:54.3427646Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-09-07T06:55:54.3428585Z 2025-09-07T06:55:54.3429216Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-09-07T06:55:54.3439087Z 2025-09-07T06:55:54.3439916Z 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-09-07T06:55:54.3443942Z 2025-09-07T06:55:54.3444673Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-09-07T06:55:54.3447151Z 2025-09-07T06:55:54.3447627Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-09-07T06:55:54.3448659Z 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-09-07T06:55:54.3449634Z if errorlevel 1 exit /b 2025-09-07T06:55:54.3449899Z if not errorlevel 0 exit /b 2025-09-07T06:55:54.3450774Z 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-09-07T06:55:54.3451595Z if errorlevel 1 exit /b 2025-09-07T06:55:54.3451857Z if not errorlevel 0 exit /b 2025-09-07T06:55:54.3452103Z ) 2025-09-07T06:55:54.3452209Z 2025-09-07T06:55:54.3452560Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-09-07T06:55:54.9820260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py 2025-09-07T06:55:54.9825086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\hub.py 2025-09-07T06:55:54.9829271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\library.py 2025-09-07T06:55:54.9833444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\overrides.py 2025-09-07T06:55:54.9837886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\py.typed 2025-09-07T06:55:54.9846152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quasirandom.py 2025-09-07T06:55:54.9849606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\random.py 2025-09-07T06:55:54.9852818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.py 2025-09-07T06:55:54.9856272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.pyi 2025-09-07T06:55:54.9859736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\serialization.py 2025-09-07T06:55:54.9863715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\storage.py 2025-09-07T06:55:54.9867642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\torch_version.py 2025-09-07T06:55:54.9871331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\types.py 2025-09-07T06:55:54.9874835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\version.py 2025-09-07T06:55:54.9878274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_appdirs.py 2025-09-07T06:55:54.9881822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C.cp39-win_amd64.pyd 2025-09-07T06:55:54.9885786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_classes.py 2025-09-07T06:55:54.9889178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_compile.py 2025-09-07T06:55:54.9892556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_ops.py 2025-09-07T06:55:54.9898418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_environment.py 2025-09-07T06:55:54.9903540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_guards.py 2025-09-07T06:55:54.9908910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_jit_internal.py 2025-09-07T06:55:54.9913909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_linalg_utils.py 2025-09-07T06:55:54.9917582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lobpcg.py 2025-09-07T06:55:54.9922523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lowrank.py 2025-09-07T06:55:54.9929970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_meta_registrations.py 2025-09-07T06:55:54.9936102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_namedtensor_internals.py 2025-09-07T06:55:54.9940978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_ops.py 2025-09-07T06:55:54.9946666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_python_dispatcher.py 2025-09-07T06:55:54.9951275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_size_docs.py 2025-09-07T06:55:54.9956040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_sources.py 2025-09-07T06:55:54.9959498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_storage_docs.py 2025-09-07T06:55:54.9964891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_streambase.py 2025-09-07T06:55:54.9969344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor.py 2025-09-07T06:55:54.9974787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_docs.py 2025-09-07T06:55:54.9980309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_str.py 2025-09-07T06:55:54.9988634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_thread_safe_fork.py 2025-09-07T06:55:54.9992894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_torch_docs.py 2025-09-07T06:55:55.0000061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils.py 2025-09-07T06:55:55.0005612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils_internal.py 2025-09-07T06:55:55.0010454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.py 2025-09-07T06:55:55.0014922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.pyi 2025-09-07T06:55:55.0028059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vmap_internals.py 2025-09-07T06:55:55.0033078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_weights_only_unpickler.py 2025-09-07T06:55:55.0036760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__config__.py 2025-09-07T06:55:55.0041586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__future__.py 2025-09-07T06:55:55.0046373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__init__.py 2025-09-07T06:55:55.0059958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\memory.py 2025-09-07T06:55:55.0064894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\_utils.py 2025-09-07T06:55:55.0069690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__init__.py 2025-09-07T06:55:55.0079144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\memory.cpython-39.pyc 2025-09-07T06:55:55.0083997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:55:55.0109536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0122572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\autocast_mode.py 2025-09-07T06:55:55.0128075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\grad_scaler.py 2025-09-07T06:55:55.0133378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__init__.py 2025-09-07T06:55:55.0147272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-09-07T06:55:55.0150938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-09-07T06:55:55.0154492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0168537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__init__.py 2025-09-07T06:55:55.0176424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__init__.py 2025-09-07T06:55:55.0183579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__init__.py 2025-09-07T06:55:55.0191649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\fused.py 2025-09-07T06:55:55.0195181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__init__.py 2025-09-07T06:55:55.0202065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-09-07T06:55:55.0205515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0214123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__init__.py 2025-09-07T06:55:55.0220863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\conv_fused.py 2025-09-07T06:55:55.0224744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_fused.py 2025-09-07T06:55:55.0228167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_relu.py 2025-09-07T06:55:55.0231613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__init__.py 2025-09-07T06:55:55.0247000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-09-07T06:55:55.0271865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-09-07T06:55:55.0275741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-09-07T06:55:55.0285575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0296121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0307477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__init__.py 2025-09-07T06:55:55.0316143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py 2025-09-07T06:55:55.0325343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-09-07T06:55:55.0328969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-09-07T06:55:55.0338612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-09-07T06:55:55.0343512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0354034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0363426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py 2025-09-07T06:55:55.0368178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_add.py 2025-09-07T06:55:55.0372846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py 2025-09-07T06:55:55.0377567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py 2025-09-07T06:55:55.0381073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__init__.py 2025-09-07T06:55:55.0393801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-09-07T06:55:55.0398963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_add.cpython-39.pyc 2025-09-07T06:55:55.0413052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-09-07T06:55:55.0421802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-09-07T06:55:55.0425564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0433569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0447210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0456165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__init__.py 2025-09-07T06:55:55.0463457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__init__.py 2025-09-07T06:55:55.0470043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\linear.py 2025-09-07T06:55:55.0473550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__init__.py 2025-09-07T06:55:55.0480383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:55:55.0484159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0491889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0499678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\conv.py 2025-09-07T06:55:55.0503304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\embedding_ops.py 2025-09-07T06:55:55.0506980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\linear.py 2025-09-07T06:55:55.0510312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__init__.py 2025-09-07T06:55:55.0521419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-09-07T06:55:55.0525344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-09-07T06:55:55.0529066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:55:55.0536665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0544837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0553590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__init__.py 2025-09-07T06:55:55.0560394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\activation.py 2025-09-07T06:55:55.0564822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\rnn.py 2025-09-07T06:55:55.0567465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__init__.py 2025-09-07T06:55:55.0575196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-09-07T06:55:55.0578702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:55:55.0582662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0594878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0606872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\functional.py 2025-09-07T06:55:55.0610496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__init__.py 2025-09-07T06:55:55.0617724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__init__.py 2025-09-07T06:55:55.0624471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\conv.py 2025-09-07T06:55:55.0627969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\linear.py 2025-09-07T06:55:55.0631540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\rnn.py 2025-09-07T06:55:55.0635243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__init__.py 2025-09-07T06:55:55.0642414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-09-07T06:55:55.0645991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:55:55.0649498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:55:55.0657032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0664742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0674531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\activation.py 2025-09-07T06:55:55.0677948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\batchnorm.py 2025-09-07T06:55:55.0681319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\conv.py 2025-09-07T06:55:55.0684875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\dropout.py 2025-09-07T06:55:55.0688133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\embedding_ops.py 2025-09-07T06:55:55.0695816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\functional_modules.py 2025-09-07T06:55:55.0699025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\linear.py 2025-09-07T06:55:55.0702303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\normalization.py 2025-09-07T06:55:55.0705971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\rnn.py 2025-09-07T06:55:55.0709352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\utils.py 2025-09-07T06:55:55.0712663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__init__.py 2025-09-07T06:55:55.0720136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-09-07T06:55:55.0723573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-09-07T06:55:55.0727318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-09-07T06:55:55.0734821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-09-07T06:55:55.0738205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-09-07T06:55:55.0742564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-09-07T06:55:55.0745899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:55:55.0749552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-09-07T06:55:55.0752995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:55:55.0756556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.0760018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0771532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__init__.py 2025-09-07T06:55:55.0777911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\conv.py 2025-09-07T06:55:55.0781114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\linear.py 2025-09-07T06:55:55.0784315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\rnn.py 2025-09-07T06:55:55.0787644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\sparse.py 2025-09-07T06:55:55.0790749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\utils.py 2025-09-07T06:55:55.0793936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__init__.py 2025-09-07T06:55:55.0804920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\conv.cpython-39.pyc 2025-09-07T06:55:55.0808430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:55:55.0811741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:55:55.0818990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\sparse.cpython-39.pyc 2025-09-07T06:55:55.0822374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.0825885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0833642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0841844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-09-07T06:55:55.0845652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0854797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__init__.py 2025-09-07T06:55:55.0861751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\linear.py 2025-09-07T06:55:55.0865184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\utils.py 2025-09-07T06:55:55.0868537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__init__.py 2025-09-07T06:55:55.0875487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\linear.py 2025-09-07T06:55:55.0878969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__init__.py 2025-09-07T06:55:55.0885688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\linear.cpython-39.pyc 2025-09-07T06:55:55.0889142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0900717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\linear.cpython-39.pyc 2025-09-07T06:55:55.0904137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.0907677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0919677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0927975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.0936518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite.py 2025-09-07T06:55:55.0939958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite_fx.py 2025-09-07T06:55:55.0943479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__init__.py 2025-09-07T06:55:55.0949708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_matcher.py 2025-09-07T06:55:55.0953178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_passes.py 2025-09-07T06:55:55.0956743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\mappings.py 2025-09-07T06:55:55.0960001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\ns_types.py 2025-09-07T06:55:55.0974051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\n_shadows_utils.py 2025-09-07T06:55:55.0974692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\pattern_utils.py 2025-09-07T06:55:55.0975255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\qconfig_multi_mapping.py 2025-09-07T06:55:55.0978020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\utils.py 2025-09-07T06:55:55.0981546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\weight_utils.py 2025-09-07T06:55:55.0985035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__init__.py 2025-09-07T06:55:55.0991488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_matcher.cpython-39.pyc 2025-09-07T06:55:55.0995059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_passes.cpython-39.pyc 2025-09-07T06:55:55.0998559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\mappings.cpython-39.pyc 2025-09-07T06:55:55.1005909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\ns_types.cpython-39.pyc 2025-09-07T06:55:55.1009519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\n_shadows_utils.cpython-39.pyc 2025-09-07T06:55:55.1013333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-09-07T06:55:55.1017020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\qconfig_multi_mapping.cpython-39.pyc 2025-09-07T06:55:55.1020464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.1024218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\weight_utils.cpython-39.pyc 2025-09-07T06:55:55.1028069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1040719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite.cpython-39.pyc 2025-09-07T06:55:55.1044782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-09-07T06:55:55.1048462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1060787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_mappings.py 2025-09-07T06:55:55.1064424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__init__.py 2025-09-07T06:55:55.1071579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\base_scheduler.py 2025-09-07T06:55:55.1075087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\cubic_scheduler.py 2025-09-07T06:55:55.1078542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\lambda_scheduler.py 2025-09-07T06:55:55.1086519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__init__.py 2025-09-07T06:55:55.1092740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\base_scheduler.cpython-39.pyc 2025-09-07T06:55:55.1096274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\cubic_scheduler.cpython-39.pyc 2025-09-07T06:55:55.1099798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\lambda_scheduler.cpython-39.pyc 2025-09-07T06:55:55.1107410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1119568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\base_sparsifier.py 2025-09-07T06:55:55.1123285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py 2025-09-07T06:55:55.1126913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\utils.py 2025-09-07T06:55:55.1134673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py 2025-09-07T06:55:55.1138612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__init__.py 2025-09-07T06:55:55.1145189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\base_sparsifier.cpython-39.pyc 2025-09-07T06:55:55.1148928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\nearly_diagonal_sparsifier.cpython-39.pyc 2025-09-07T06:55:55.1152506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.1160268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\weight_norm_sparsifier.cpython-39.pyc 2025-09-07T06:55:55.1163786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1172212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__init__.py 2025-09-07T06:55:55.1178599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py 2025-09-07T06:55:55.1182116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py 2025-09-07T06:55:55.1192419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\activation_sparsifier.cpython-39.pyc 2025-09-07T06:55:55.1197309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1204699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py 2025-09-07T06:55:55.1208161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__init__.py 2025-09-07T06:55:55.1215644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\base_data_scheduler.cpython-39.pyc 2025-09-07T06:55:55.1218997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1230621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py 2025-09-07T06:55:55.1234076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py 2025-09-07T06:55:55.1237458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py 2025-09-07T06:55:55.1246511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__init__.py 2025-09-07T06:55:55.1253939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py 2025-09-07T06:55:55.1259966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py 2025-09-07T06:55:55.1263727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py 2025-09-07T06:55:55.1267096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py 2025-09-07T06:55:55.1278043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\data_sparsity.cpython-39.pyc 2025-09-07T06:55:55.1281689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\_data_sparstity_utils.cpython-39.pyc 2025-09-07T06:55:55.1285411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1296829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1305538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\base_data_sparsifier.cpython-39.pyc 2025-09-07T06:55:55.1309125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\data_norm_sparsifier.cpython-39.pyc 2025-09-07T06:55:55.1312628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\quantization_utils.cpython-39.pyc 2025-09-07T06:55:55.1321060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1327515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py 2025-09-07T06:55:55.1331270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py 2025-09-07T06:55:55.1335300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py 2025-09-07T06:55:55.1342403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\match_utils.py 2025-09-07T06:55:55.1346431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\parametrization.py 2025-09-07T06:55:55.1350288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\prune_functions.py 2025-09-07T06:55:55.1353433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\saliency_pruner.py 2025-09-07T06:55:55.1356858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__init__.py 2025-09-07T06:55:55.1364322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\base_structured_sparsifier.cpython-39.pyc 2025-09-07T06:55:55.1367974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\FPGM_pruner.cpython-39.pyc 2025-09-07T06:55:55.1371701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\lstm_saliency_pruner.cpython-39.pyc 2025-09-07T06:55:55.1379537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\match_utils.cpython-39.pyc 2025-09-07T06:55:55.1411698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\parametrization.cpython-39.pyc 2025-09-07T06:55:55.1415377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\prune_functions.cpython-39.pyc 2025-09-07T06:55:55.1419318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\saliency_pruner.cpython-39.pyc 2025-09-07T06:55:55.1422711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1431162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1439240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\_mappings.cpython-39.pyc 2025-09-07T06:55:55.1442836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1451657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fake_quantize.py 2025-09-07T06:55:55.1455913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuser_method_mappings.py 2025-09-07T06:55:55.1459795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuse_modules.py 2025-09-07T06:55:55.1467985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\observer.py 2025-09-07T06:55:55.1471728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig.py 2025-09-07T06:55:55.1475221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig_mapping.py 2025-09-07T06:55:55.1479392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantization_mappings.py 2025-09-07T06:55:55.1482997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize.py 2025-09-07T06:55:55.1486331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_fx.py 2025-09-07T06:55:55.1490411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_jit.py 2025-09-07T06:55:55.1494056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_pt2e.py 2025-09-07T06:55:55.1497981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quant_type.py 2025-09-07T06:55:55.1501974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\stubs.py 2025-09-07T06:55:55.1505469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\utils.py 2025-09-07T06:55:55.1508804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_correct_bias.py 2025-09-07T06:55:55.1512256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_equalize.py 2025-09-07T06:55:55.1515690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_learnable_fake_quantize.py 2025-09-07T06:55:55.1519172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__init__.py 2025-09-07T06:55:55.1526707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\backend_config.py 2025-09-07T06:55:55.1530357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\executorch.py 2025-09-07T06:55:55.1533910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\fbgemm.py 2025-09-07T06:55:55.1537351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\native.py 2025-09-07T06:55:55.1545887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\onednn.py 2025-09-07T06:55:55.1549528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\qnnpack.py 2025-09-07T06:55:55.1552721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\tensorrt.py 2025-09-07T06:55:55.1556867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\utils.py 2025-09-07T06:55:55.1559512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\x86.py 2025-09-07T06:55:55.1563534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_common_operator_config_utils.py 2025-09-07T06:55:55.1567016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_qnnpack_pt2e.py 2025-09-07T06:55:55.1571464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__init__.py 2025-09-07T06:55:55.1579218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\backend_config.cpython-39.pyc 2025-09-07T06:55:55.1582874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\executorch.cpython-39.pyc 2025-09-07T06:55:55.1586642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\fbgemm.cpython-39.pyc 2025-09-07T06:55:55.1595226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\native.cpython-39.pyc 2025-09-07T06:55:55.1599258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\onednn.cpython-39.pyc 2025-09-07T06:55:55.1602859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\qnnpack.cpython-39.pyc 2025-09-07T06:55:55.1607158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\tensorrt.cpython-39.pyc 2025-09-07T06:55:55.1610688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.1614213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\x86.cpython-39.pyc 2025-09-07T06:55:55.1619327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_common_operator_config_utils.cpython-39.pyc 2025-09-07T06:55:55.1623087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_qnnpack_pt2e.cpython-39.pyc 2025-09-07T06:55:55.1626998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1634959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\convert.py 2025-09-07T06:55:55.1638763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\custom_config.py 2025-09-07T06:55:55.1642213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse.py 2025-09-07T06:55:55.1645489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse_handler.py 2025-09-07T06:55:55.1648851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\graph_module.py 2025-09-07T06:55:55.1657687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_fbgemm.py 2025-09-07T06:55:55.1661015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_qnnpack.py 2025-09-07T06:55:55.1664965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lstm_utils.py 2025-09-07T06:55:55.1668226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\match_utils.py 2025-09-07T06:55:55.1671587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\pattern_utils.py 2025-09-07T06:55:55.1675415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\prepare.py 2025-09-07T06:55:55.1679394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\qconfig_mapping_utils.py 2025-09-07T06:55:55.1683106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\quantize_handler.py 2025-09-07T06:55:55.1686487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\tracer.py 2025-09-07T06:55:55.1689750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\utils.py 2025-09-07T06:55:55.1693128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_decomposed.py 2025-09-07T06:55:55.1698245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_equalize.py 2025-09-07T06:55:55.1701597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_lower_to_native_backend.py 2025-09-07T06:55:55.1705260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__init__.py 2025-09-07T06:55:55.1712398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\detector.py 2025-09-07T06:55:55.1716304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report.py 2025-09-07T06:55:55.1720089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_observer.py 2025-09-07T06:55:55.1729237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_visualizer.py 2025-09-07T06:55:55.1732992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__init__.py 2025-09-07T06:55:55.1739900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\detector.cpython-39.pyc 2025-09-07T06:55:55.1743604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report.cpython-39.pyc 2025-09-07T06:55:55.1747307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_observer.cpython-39.pyc 2025-09-07T06:55:55.1756528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_visualizer.cpython-39.pyc 2025-09-07T06:55:55.1760107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1768184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-09-07T06:55:55.1771715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\custom_config.cpython-39.pyc 2025-09-07T06:55:55.1775230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-09-07T06:55:55.1785176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse_handler.cpython-39.pyc 2025-09-07T06:55:55.1788728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-09-07T06:55:55.1792196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_fbgemm.cpython-39.pyc 2025-09-07T06:55:55.1795725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_qnnpack.cpython-39.pyc 2025-09-07T06:55:55.1799388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lstm_utils.cpython-39.pyc 2025-09-07T06:55:55.1802825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-09-07T06:55:55.1806311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-09-07T06:55:55.1809809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-09-07T06:55:55.1813496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\qconfig_mapping_utils.cpython-39.pyc 2025-09-07T06:55:55.1816975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\quantize_handler.cpython-39.pyc 2025-09-07T06:55:55.1820567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\tracer.cpython-39.pyc 2025-09-07T06:55:55.1824147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.1827875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_decomposed.cpython-39.pyc 2025-09-07T06:55:55.1831516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-09-07T06:55:55.1841844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_lower_to_native_backend.cpython-39.pyc 2025-09-07T06:55:55.1845663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1854033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\duplicate_dq_pass.py 2025-09-07T06:55:55.1858069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\export_utils.py 2025-09-07T06:55:55.1861528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\graph_utils.py 2025-09-07T06:55:55.1865502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\lowering.py 2025-09-07T06:55:55.1875493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\port_metadata_pass.py 2025-09-07T06:55:55.1879040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\prepare.py 2025-09-07T06:55:55.1882515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\qat_utils.py 2025-09-07T06:55:55.1886218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\utils.py 2025-09-07T06:55:55.1889751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_affine_quantization.py 2025-09-07T06:55:55.1893531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_numeric_debugger.py 2025-09-07T06:55:55.1897295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__init__.py 2025-09-07T06:55:55.1904070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\rewrite.py 2025-09-07T06:55:55.1907937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__init__.py 2025-09-07T06:55:55.1915145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\rewrite.cpython-39.pyc 2025-09-07T06:55:55.1918702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1928842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\duplicate_dq_pass.cpython-39.pyc 2025-09-07T06:55:55.1934213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\export_utils.cpython-39.pyc 2025-09-07T06:55:55.1938791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\graph_utils.cpython-39.pyc 2025-09-07T06:55:55.1950158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\lowering.cpython-39.pyc 2025-09-07T06:55:55.1953844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\port_metadata_pass.cpython-39.pyc 2025-09-07T06:55:55.1958732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\prepare.cpython-39.pyc 2025-09-07T06:55:55.1963582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\qat_utils.cpython-39.pyc 2025-09-07T06:55:55.1968737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.1973673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_affine_quantization.cpython-39.pyc 2025-09-07T06:55:55.1977404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_numeric_debugger.cpython-39.pyc 2025-09-07T06:55:55.1982255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.1993380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\composable_quantizer.py 2025-09-07T06:55:55.1998620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\embedding_quantizer.py 2025-09-07T06:55:55.2003281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\quantizer.py 2025-09-07T06:55:55.2014972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\utils.py 2025-09-07T06:55:55.2018616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\x86_inductor_quantizer.py 2025-09-07T06:55:55.2024027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer.py 2025-09-07T06:55:55.2028795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py 2025-09-07T06:55:55.2033871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py 2025-09-07T06:55:55.2038614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__init__.py 2025-09-07T06:55:55.2047741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\composable_quantizer.cpython-39.pyc 2025-09-07T06:55:55.2052922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\embedding_quantizer.cpython-39.pyc 2025-09-07T06:55:55.2057743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\quantizer.cpython-39.pyc 2025-09-07T06:55:55.2069123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.2072879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\x86_inductor_quantizer.cpython-39.pyc 2025-09-07T06:55:55.2078826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer.cpython-39.pyc 2025-09-07T06:55:55.2083573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer_utils.cpython-39.pyc 2025-09-07T06:55:55.2088739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xpu_inductor_quantizer.cpython-39.pyc 2025-09-07T06:55:55.2093569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2111913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-09-07T06:55:55.2115677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-09-07T06:55:55.2119642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-09-07T06:55:55.2130187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\observer.cpython-39.pyc 2025-09-07T06:55:55.2134217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig.cpython-39.pyc 2025-09-07T06:55:55.2137884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig_mapping.cpython-39.pyc 2025-09-07T06:55:55.2141428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-09-07T06:55:55.2145016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize.cpython-39.pyc 2025-09-07T06:55:55.2148711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-09-07T06:55:55.2152407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-09-07T06:55:55.2156414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_pt2e.cpython-39.pyc 2025-09-07T06:55:55.2159902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quant_type.cpython-39.pyc 2025-09-07T06:55:55.2163644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\stubs.cpython-39.pyc 2025-09-07T06:55:55.2167126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.2170680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_correct_bias.cpython-39.pyc 2025-09-07T06:55:55.2174845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_equalize.cpython-39.pyc 2025-09-07T06:55:55.2178477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_learnable_fake_quantize.cpython-39.pyc 2025-09-07T06:55:55.2189058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2205008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2212984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\anomaly_mode.py 2025-09-07T06:55:55.2216131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\forward_ad.py 2025-09-07T06:55:55.2219186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\function.py 2025-09-07T06:55:55.2222395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\functional.py 2025-09-07T06:55:55.2233641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\gradcheck.py 2025-09-07T06:55:55.2237598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\grad_mode.py 2025-09-07T06:55:55.2241536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\graph.py 2025-09-07T06:55:55.2245305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler.py 2025-09-07T06:55:55.2249064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_legacy.py 2025-09-07T06:55:55.2252555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_util.py 2025-09-07T06:55:55.2256290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\variable.py 2025-09-07T06:55:55.2259725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__init__.py 2025-09-07T06:55:55.2266914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\tensor.py 2025-09-07T06:55:55.2270261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\utils.py 2025-09-07T06:55:55.2273856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__init__.py 2025-09-07T06:55:55.2281679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\tensor.cpython-39.pyc 2025-09-07T06:55:55.2285332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.2288849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2305249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\anomaly_mode.cpython-39.pyc 2025-09-07T06:55:55.2308871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\forward_ad.cpython-39.pyc 2025-09-07T06:55:55.2312561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\function.cpython-39.pyc 2025-09-07T06:55:55.2323811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\functional.cpython-39.pyc 2025-09-07T06:55:55.2327380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\gradcheck.cpython-39.pyc 2025-09-07T06:55:55.2331326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\grad_mode.cpython-39.pyc 2025-09-07T06:55:55.2334762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\graph.cpython-39.pyc 2025-09-07T06:55:55.2338305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler.cpython-39.pyc 2025-09-07T06:55:55.2342137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_legacy.cpython-39.pyc 2025-09-07T06:55:55.2346105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_util.cpython-39.pyc 2025-09-07T06:55:55.2349889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\variable.cpython-39.pyc 2025-09-07T06:55:55.2353479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2362446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__init__.py 2025-09-07T06:55:55.2370226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__init__.py 2025-09-07T06:55:55.2377338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2385295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__init__.py 2025-09-07T06:55:55.2393289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2400146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\rnn.py 2025-09-07T06:55:55.2403502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__init__.py 2025-09-07T06:55:55.2410593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:55:55.2414403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2422331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__init__.py 2025-09-07T06:55:55.2429358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2445287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__init__.py 2025-09-07T06:55:55.2452586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2460434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__init__.py 2025-09-07T06:55:55.2467799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2475169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__init__.py 2025-09-07T06:55:55.2481989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2489558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__init__.py 2025-09-07T06:55:55.2496388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2503866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__init__.py 2025-09-07T06:55:55.2510529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2517611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__init__.py 2025-09-07T06:55:55.2524566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2563460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__init__.py 2025-09-07T06:55:55.2570222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2577450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__init__.py 2025-09-07T06:55:55.2584870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2592242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__init__.py 2025-09-07T06:55:55.2599094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2606622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__init__.py 2025-09-07T06:55:55.2613713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2621379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\run_cpu.py 2025-09-07T06:55:55.2625216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__init__.py 2025-09-07T06:55:55.2631637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\run_cpu.cpython-39.pyc 2025-09-07T06:55:55.2635330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2643281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__init__.py 2025-09-07T06:55:55.2650570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2658202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\preprocess.py 2025-09-07T06:55:55.2661661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__init__.py 2025-09-07T06:55:55.2668065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\preprocess.cpython-39.pyc 2025-09-07T06:55:55.2671825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2679061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\prepare.py 2025-09-07T06:55:55.2682530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\serializer.py 2025-09-07T06:55:55.2686429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__init__.py 2025-09-07T06:55:55.2692457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\prepare.cpython-39.pyc 2025-09-07T06:55:55.2696018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\serializer.cpython-39.pyc 2025-09-07T06:55:55.2699862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2715520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2723802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\FileStoreTest.exe 2025-09-07T06:55:55.2729275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\protoc.exe 2025-09-07T06:55:55.2748048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\TCPStoreTest.exe 2025-09-07T06:55:55.2753418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_api.exe 2025-09-07T06:55:55.2806321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_jit.exe 2025-09-07T06:55:55.2842905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_lazy.exe 2025-09-07T06:55:55.2857962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_nativert.exe 2025-09-07T06:55:55.2877392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\config.py 2025-09-07T06:55:55.2880963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\_cache.py 2025-09-07T06:55:55.2884613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__init__.py 2025-09-07T06:55:55.2891476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\config.cpython-39.pyc 2025-09-07T06:55:55.2895065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\_cache.cpython-39.pyc 2025-09-07T06:55:55.2898531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2914581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\_tensorboard_vis.py 2025-09-07T06:55:55.2917880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__init__.py 2025-09-07T06:55:55.2924785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\_tensorboard_vis.cpython-39.pyc 2025-09-07T06:55:55.2928033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2936391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__init__.py 2025-09-07T06:55:55.2942909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\autocast_mode.py 2025-09-07T06:55:55.2946569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\grad_scaler.py 2025-09-07T06:55:55.2949863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__init__.py 2025-09-07T06:55:55.2966049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-09-07T06:55:55.2969431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-09-07T06:55:55.2972934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.2990996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3005825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\csrc\inductor\aoti_runtime\model.h 2025-09-07T06:55:55.3015194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\comm.py 2025-09-07T06:55:55.3018350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\gds.py 2025-09-07T06:55:55.3021717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\graphs.py 2025-09-07T06:55:55.3025187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\jiterator.py 2025-09-07T06:55:55.3028850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\memory.py 2025-09-07T06:55:55.3032333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nccl.py 2025-09-07T06:55:55.3044220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nvtx.py 2025-09-07T06:55:55.3047791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\profiler.py 2025-09-07T06:55:55.3051225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\random.py 2025-09-07T06:55:55.3054517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\sparse.py 2025-09-07T06:55:55.3057861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\streams.py 2025-09-07T06:55:55.3061876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\tunable.py 2025-09-07T06:55:55.3065767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_gpu_trace.py 2025-09-07T06:55:55.3069455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_memory_viz.py 2025-09-07T06:55:55.3073353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_pin_memory_utils.py 2025-09-07T06:55:55.3076853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_sanitizer.py 2025-09-07T06:55:55.3081048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_utils.py 2025-09-07T06:55:55.3084866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__init__.py 2025-09-07T06:55:55.3092571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\autocast_mode.py 2025-09-07T06:55:55.3096206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\common.py 2025-09-07T06:55:55.3099572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\grad_scaler.py 2025-09-07T06:55:55.3103662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__init__.py 2025-09-07T06:55:55.3137546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-09-07T06:55:55.3138254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\common.cpython-39.pyc 2025-09-07T06:55:55.3138917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-09-07T06:55:55.3143677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3152143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\comm.cpython-39.pyc 2025-09-07T06:55:55.3155712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\gds.cpython-39.pyc 2025-09-07T06:55:55.3159222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\graphs.cpython-39.pyc 2025-09-07T06:55:55.3172799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\jiterator.cpython-39.pyc 2025-09-07T06:55:55.3175393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\memory.cpython-39.pyc 2025-09-07T06:55:55.3179347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nccl.cpython-39.pyc 2025-09-07T06:55:55.3182858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nvtx.cpython-39.pyc 2025-09-07T06:55:55.3186506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\profiler.cpython-39.pyc 2025-09-07T06:55:55.3190133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\random.cpython-39.pyc 2025-09-07T06:55:55.3193586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\sparse.cpython-39.pyc 2025-09-07T06:55:55.3197031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\streams.cpython-39.pyc 2025-09-07T06:55:55.3200563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\tunable.cpython-39.pyc 2025-09-07T06:55:55.3204307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_gpu_trace.cpython-39.pyc 2025-09-07T06:55:55.3207867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_memory_viz.cpython-39.pyc 2025-09-07T06:55:55.3211934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_pin_memory_utils.cpython-39.pyc 2025-09-07T06:55:55.3215254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_sanitizer.cpython-39.pyc 2025-09-07T06:55:55.3218866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:55:55.3231603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3241668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\argparse_util.py 2025-09-07T06:55:55.3245420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\c10d_logger.py 2025-09-07T06:55:55.3248986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\collective_utils.py 2025-09-07T06:55:55.3261631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\constants.py 2025-09-07T06:55:55.3265378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\device_mesh.py 2025-09-07T06:55:55.3269200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\distributed_c10d.py 2025-09-07T06:55:55.3273921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launch.py 2025-09-07T06:55:55.3277560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\logging_handlers.py 2025-09-07T06:55:55.3281239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\remote_device.py 2025-09-07T06:55:55.3284820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rendezvous.py 2025-09-07T06:55:55.3288286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\run.py 2025-09-07T06:55:55.3291878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\utils.py 2025-09-07T06:55:55.3295425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_checkpointable.py 2025-09-07T06:55:55.3298919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable_state.py 2025-09-07T06:55:55.3302521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_C_stubs.py 2025-09-07T06:55:55.3306081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_dist2.py 2025-09-07T06:55:55.3309895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_distributed_c10d.py 2025-09-07T06:55:55.3313411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives.py 2025-09-07T06:55:55.3318708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives_impl.py 2025-09-07T06:55:55.3322176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_serialization.py 2025-09-07T06:55:55.3325898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_state_dict_utils.py 2025-09-07T06:55:55.3338854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__init__.py 2025-09-07T06:55:55.3346665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\join.py 2025-09-07T06:55:55.3350284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__init__.py 2025-09-07T06:55:55.3357112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py 2025-09-07T06:55:55.3360976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py 2025-09-07T06:55:55.3364414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py 2025-09-07T06:55:55.3377015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py 2025-09-07T06:55:55.3380512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py 2025-09-07T06:55:55.3384199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py 2025-09-07T06:55:55.3387715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py 2025-09-07T06:55:55.3391582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py 2025-09-07T06:55:55.3395024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__init__.py 2025-09-07T06:55:55.3402314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\ddp_zero_hook.cpython-39.pyc 2025-09-07T06:55:55.3405728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\debugging_hooks.cpython-39.pyc 2025-09-07T06:55:55.3409572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-09-07T06:55:55.3422864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\mixed_precision_hooks.cpython-39.pyc 2025-09-07T06:55:55.3426519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\optimizer_overlap_hooks.cpython-39.pyc 2025-09-07T06:55:55.3430980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\post_localSGD_hook.cpython-39.pyc 2025-09-07T06:55:55.3433869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\powerSGD_hook.cpython-39.pyc 2025-09-07T06:55:55.3437745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\quantization_hooks.cpython-39.pyc 2025-09-07T06:55:55.3441230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3457677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\averagers.py 2025-09-07T06:55:55.3461731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py 2025-09-07T06:55:55.3465836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\utils.py 2025-09-07T06:55:55.3478049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__init__.py 2025-09-07T06:55:55.3485413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\averagers.cpython-39.pyc 2025-09-07T06:55:55.3489209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\hierarchical_model_averager.cpython-39.pyc 2025-09-07T06:55:55.3492665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.3506200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3514195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py 2025-09-07T06:55:55.3517875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__init__.py 2025-09-07T06:55:55.3524041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\checkpoint_wrapper.cpython-39.pyc 2025-09-07T06:55:55.3528814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3544898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\default_hooks.py 2025-09-07T06:55:55.3545724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__init__.py 2025-09-07T06:55:55.3549500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-09-07T06:55:55.3553243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3560999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py 2025-09-07T06:55:55.3564579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__init__.py 2025-09-07T06:55:55.3571987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\optimizer_overlap.cpython-39.pyc 2025-09-07T06:55:55.3576046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3583405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\quantization.py 2025-09-07T06:55:55.3588696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__init__.py 2025-09-07T06:55:55.3596445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\quantization.cpython-39.pyc 2025-09-07T06:55:55.3601321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3623490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\join.cpython-39.pyc 2025-09-07T06:55:55.3627227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3638925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__init__.py 2025-09-07T06:55:55.3649325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3657114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\api.py 2025-09-07T06:55:55.3662345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\default_planner.py 2025-09-07T06:55:55.3666069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\filesystem.py 2025-09-07T06:55:55.3669707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\format_utils.py 2025-09-07T06:55:55.3682543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\hf_storage.py 2025-09-07T06:55:55.3686013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logger.py 2025-09-07T06:55:55.3689427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logging_handlers.py 2025-09-07T06:55:55.3693337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\metadata.py 2025-09-07T06:55:55.3696969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\optimizer.py 2025-09-07T06:55:55.3700206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner.py 2025-09-07T06:55:55.3703549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner_helpers.py 2025-09-07T06:55:55.3708536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\quantized_hf_storage.py 2025-09-07T06:55:55.3712281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\resharding.py 2025-09-07T06:55:55.3716023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\staging.py 2025-09-07T06:55:55.3719370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\stateful.py 2025-09-07T06:55:55.3722766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict.py 2025-09-07T06:55:55.3726566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_loader.py 2025-09-07T06:55:55.3730173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_saver.py 2025-09-07T06:55:55.3733656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\storage.py 2025-09-07T06:55:55.3737039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\utils.py 2025-09-07T06:55:55.3740483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_executor.py 2025-09-07T06:55:55.3744203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_process_executor.py 2025-09-07T06:55:55.3747971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_thread_executor.py 2025-09-07T06:55:55.3761538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_checkpointer.py 2025-09-07T06:55:55.3765228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_consolidate_hf_safetensors.py 2025-09-07T06:55:55.3768851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_save_plans.py 2025-09-07T06:55:55.3772487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_tensors.py 2025-09-07T06:55:55.3776306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_extension.py 2025-09-07T06:55:55.3779733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_fsspec_filesystem.py 2025-09-07T06:55:55.3783328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_hf_utils.py 2025-09-07T06:55:55.3787363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_nested_dict.py 2025-09-07T06:55:55.3791027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_pg_transport.py 2025-09-07T06:55:55.3803969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_sharded_tensor_utils.py 2025-09-07T06:55:55.3807488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_state_dict_stager.py 2025-09-07T06:55:55.3811049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_storage_utils.py 2025-09-07T06:55:55.3814577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_traverse.py 2025-09-07T06:55:55.3818095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_version.py 2025-09-07T06:55:55.3821559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__init__.py 2025-09-07T06:55:55.3829785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\barriers.py 2025-09-07T06:55:55.3833617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\builder.py 2025-09-07T06:55:55.3869708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpointer.py 2025-09-07T06:55:55.3873241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_process.py 2025-09-07T06:55:55.3881409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_reader.py 2025-09-07T06:55:55.3886052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_writer.py 2025-09-07T06:55:55.3888739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\config.py 2025-09-07T06:55:55.3892380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\staging.py 2025-09-07T06:55:55.3896027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\types.py 2025-09-07T06:55:55.3900211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\utils.py 2025-09-07T06:55:55.3904073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__init__.py 2025-09-07T06:55:55.3912316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\barriers.cpython-39.pyc 2025-09-07T06:55:55.3915997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\builder.cpython-39.pyc 2025-09-07T06:55:55.3920630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpointer.cpython-39.pyc 2025-09-07T06:55:55.3933086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_process.cpython-39.pyc 2025-09-07T06:55:55.3937889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_reader.cpython-39.pyc 2025-09-07T06:55:55.3940611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_writer.cpython-39.pyc 2025-09-07T06:55:55.3944291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\config.cpython-39.pyc 2025-09-07T06:55:55.3948927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\staging.cpython-39.pyc 2025-09-07T06:55:55.3953727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\types.cpython-39.pyc 2025-09-07T06:55:55.3958889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.3963801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.3974382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.3978988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\default_planner.cpython-39.pyc 2025-09-07T06:55:55.3981836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\filesystem.cpython-39.pyc 2025-09-07T06:55:55.3996486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\format_utils.cpython-39.pyc 2025-09-07T06:55:55.3999352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\hf_storage.cpython-39.pyc 2025-09-07T06:55:55.4003755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logger.cpython-39.pyc 2025-09-07T06:55:55.4008196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logging_handlers.cpython-39.pyc 2025-09-07T06:55:55.4012059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\metadata.cpython-39.pyc 2025-09-07T06:55:55.4015783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\optimizer.cpython-39.pyc 2025-09-07T06:55:55.4019526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner.cpython-39.pyc 2025-09-07T06:55:55.4023202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner_helpers.cpython-39.pyc 2025-09-07T06:55:55.4027097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\quantized_hf_storage.cpython-39.pyc 2025-09-07T06:55:55.4031606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\resharding.cpython-39.pyc 2025-09-07T06:55:55.4037411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\staging.cpython-39.pyc 2025-09-07T06:55:55.4041656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\stateful.cpython-39.pyc 2025-09-07T06:55:55.4046622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict.cpython-39.pyc 2025-09-07T06:55:55.4051800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_loader.cpython-39.pyc 2025-09-07T06:55:55.4065973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_saver.cpython-39.pyc 2025-09-07T06:55:55.4068755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\storage.cpython-39.pyc 2025-09-07T06:55:55.4073129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.4077644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_executor.cpython-39.pyc 2025-09-07T06:55:55.4080745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_process_executor.cpython-39.pyc 2025-09-07T06:55:55.4084472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_thread_executor.cpython-39.pyc 2025-09-07T06:55:55.4089149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_checkpointer.cpython-39.pyc 2025-09-07T06:55:55.4092133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_consolidate_hf_safetensors.cpython-39.pyc 2025-09-07T06:55:55.4106446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_save_plans.cpython-39.pyc 2025-09-07T06:55:55.4109951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_tensors.cpython-39.pyc 2025-09-07T06:55:55.4114338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_extension.cpython-39.pyc 2025-09-07T06:55:55.4117964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_fsspec_filesystem.cpython-39.pyc 2025-09-07T06:55:55.4121712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_hf_utils.cpython-39.pyc 2025-09-07T06:55:55.4125589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_nested_dict.cpython-39.pyc 2025-09-07T06:55:55.4129421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_pg_transport.cpython-39.pyc 2025-09-07T06:55:55.4133330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_sharded_tensor_utils.cpython-39.pyc 2025-09-07T06:55:55.4156335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_state_dict_stager.cpython-39.pyc 2025-09-07T06:55:55.4161963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_storage_utils.cpython-39.pyc 2025-09-07T06:55:55.4165685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_traverse.cpython-39.pyc 2025-09-07T06:55:55.4171169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_version.cpython-39.pyc 2025-09-07T06:55:55.4174737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4186674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\control_plane.py 2025-09-07T06:55:55.4190400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__init__.py 2025-09-07T06:55:55.4197779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__init__.py 2025-09-07T06:55:55.4203769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\api.py 2025-09-07T06:55:55.4207452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\health_check_server.py 2025-09-07T06:55:55.4210999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\local_elastic_agent.py 2025-09-07T06:55:55.4214389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__init__.py 2025-09-07T06:55:55.4232786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.4236611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\health_check_server.cpython-39.pyc 2025-09-07T06:55:55.4240370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\local_elastic_agent.cpython-39.pyc 2025-09-07T06:55:55.4253588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4261600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4270484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\api.py 2025-09-07T06:55:55.4273871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\handlers.py 2025-09-07T06:55:55.4277540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__init__.py 2025-09-07T06:55:55.4284518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.4288114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\handlers.cpython-39.pyc 2025-09-07T06:55:55.4291573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4309085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\api.py 2025-09-07T06:55:55.4312515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__init__.py 2025-09-07T06:55:55.4319354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.4323173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4340260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\api.py 2025-09-07T06:55:55.4344001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\redirects.py 2025-09-07T06:55:55.4347593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\tail_log.py 2025-09-07T06:55:55.4350930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__init__.py 2025-09-07T06:55:55.4367493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\error_handler.py 2025-09-07T06:55:55.4370933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\handlers.py 2025-09-07T06:55:55.4374400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__init__.py 2025-09-07T06:55:55.4381566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\error_handler.cpython-39.pyc 2025-09-07T06:55:55.4385247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\handlers.cpython-39.pyc 2025-09-07T06:55:55.4388706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4406460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py 2025-09-07T06:55:55.4410225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py 2025-09-07T06:55:55.4413916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py 2025-09-07T06:55:55.4431565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\handlers.cpython-39.pyc 2025-09-07T06:55:55.4435436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\subprocess_handler.cpython-39.pyc 2025-09-07T06:55:55.4438975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4458609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.4463470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\redirects.cpython-39.pyc 2025-09-07T06:55:55.4468578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\tail_log.cpython-39.pyc 2025-09-07T06:55:55.4482272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4492686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\api.py 2025-09-07T06:55:55.4497496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py 2025-09-07T06:55:55.4502397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py 2025-09-07T06:55:55.4516683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous.py 2025-09-07T06:55:55.4522325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py 2025-09-07T06:55:55.4527675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_server.py 2025-09-07T06:55:55.4532491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_store.py 2025-09-07T06:55:55.4537281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\registry.py 2025-09-07T06:55:55.4541275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py 2025-09-07T06:55:55.4545890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\utils.py 2025-09-07T06:55:55.4550606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\_etcd_stub.py 2025-09-07T06:55:55.4556262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__init__.py 2025-09-07T06:55:55.4566451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.4570489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\c10d_rendezvous_backend.cpython-39.pyc 2025-09-07T06:55:55.4575361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\dynamic_rendezvous.cpython-39.pyc 2025-09-07T06:55:55.4589885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous.cpython-39.pyc 2025-09-07T06:55:55.4593840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous_backend.cpython-39.pyc 2025-09-07T06:55:55.4598791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_server.cpython-39.pyc 2025-09-07T06:55:55.4603727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_store.cpython-39.pyc 2025-09-07T06:55:55.4608793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\registry.cpython-39.pyc 2025-09-07T06:55:55.4630642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\static_tcp_rendezvous.cpython-39.pyc 2025-09-07T06:55:55.4634276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.4639639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\_etcd_stub.cpython-39.pyc 2025-09-07T06:55:55.4645095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4656222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\api.py 2025-09-07T06:55:55.4659594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\debug_info_logging.py 2025-09-07T06:55:55.4663247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\file_based_local_timer.py 2025-09-07T06:55:55.4668860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\local_timer.py 2025-09-07T06:55:55.4683735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__init__.py 2025-09-07T06:55:55.4690833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.4694443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\debug_info_logging.cpython-39.pyc 2025-09-07T06:55:55.4697891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\file_based_local_timer.cpython-39.pyc 2025-09-07T06:55:55.4710606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\local_timer.cpython-39.pyc 2025-09-07T06:55:55.4715617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4723280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\api.py 2025-09-07T06:55:55.4726791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\distributed.py 2025-09-07T06:55:55.4730117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\logging.py 2025-09-07T06:55:55.4733461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\log_level.py 2025-09-07T06:55:55.4736856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\store.py 2025-09-07T06:55:55.4750210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__init__.py 2025-09-07T06:55:55.4757153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\cycling_iterator.py 2025-09-07T06:55:55.4760754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py 2025-09-07T06:55:55.4764079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__init__.py 2025-09-07T06:55:55.4782394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\cycling_iterator.cpython-39.pyc 2025-09-07T06:55:55.4786179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\elastic_distributed_sampler.cpython-39.pyc 2025-09-07T06:55:55.4789666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4807953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.4811802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\distributed.cpython-39.pyc 2025-09-07T06:55:55.4815447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\logging.cpython-39.pyc 2025-09-07T06:55:55.4829050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\log_level.cpython-39.pyc 2025-09-07T06:55:55.4832621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\store.cpython-39.pyc 2025-09-07T06:55:55.4836216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4844390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\control_plane.cpython-39.pyc 2025-09-07T06:55:55.4848227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.4856812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\api.py 2025-09-07T06:55:55.4860353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\fully_sharded_data_parallel.py 2025-09-07T06:55:55.4864678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\sharded_grad_scaler.py 2025-09-07T06:55:55.4868285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\wrap.py 2025-09-07T06:55:55.4872232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_common_utils.py 2025-09-07T06:55:55.4886238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_debug_utils.py 2025-09-07T06:55:55.4890040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_dynamo_utils.py 2025-09-07T06:55:55.4893623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_exec_order_utils.py 2025-09-07T06:55:55.4897158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_flat_param.py 2025-09-07T06:55:55.4901917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fsdp_extensions.py 2025-09-07T06:55:55.4905668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_init_utils.py 2025-09-07T06:55:55.4909294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_limiter_utils.py 2025-09-07T06:55:55.4912886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_optim_utils.py 2025-09-07T06:55:55.4917211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_runtime_utils.py 2025-09-07T06:55:55.4921693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_shard_utils.py 2025-09-07T06:55:55.4924877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_state_dict_utils.py 2025-09-07T06:55:55.4928566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_trace_utils.py 2025-09-07T06:55:55.4932137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_traversal_utils.py 2025-09-07T06:55:55.4935701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_unshard_param_utils.py 2025-09-07T06:55:55.4940110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_wrap_utils.py 2025-09-07T06:55:55.4954443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__init__.py 2025-09-07T06:55:55.4964287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_api.py 2025-09-07T06:55:55.4969277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py 2025-09-07T06:55:55.4972882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_common.py 2025-09-07T06:55:55.4988476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_init.py 2025-09-07T06:55:55.4993223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param.py 2025-09-07T06:55:55.4998216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py 2025-09-07T06:55:55.5002118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_state.py 2025-09-07T06:55:55.5007260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fully_shard.py 2025-09-07T06:55:55.5012108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__init__.py 2025-09-07T06:55:55.5022763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_api.cpython-39.pyc 2025-09-07T06:55:55.5026582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_collectives.cpython-39.pyc 2025-09-07T06:55:55.5031840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_common.cpython-39.pyc 2025-09-07T06:55:55.5047330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_init.cpython-39.pyc 2025-09-07T06:55:55.5052268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param.cpython-39.pyc 2025-09-07T06:55:55.5056973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param_group.cpython-39.pyc 2025-09-07T06:55:55.5061273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_state.cpython-39.pyc 2025-09-07T06:55:55.5066545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fully_shard.cpython-39.pyc 2025-09-07T06:55:55.5071555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5082618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.5087662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\fully_sharded_data_parallel.cpython-39.pyc 2025-09-07T06:55:55.5093405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\sharded_grad_scaler.cpython-39.pyc 2025-09-07T06:55:55.5107102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\wrap.cpython-39.pyc 2025-09-07T06:55:55.5112249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_common_utils.cpython-39.pyc 2025-09-07T06:55:55.5128584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_debug_utils.cpython-39.pyc 2025-09-07T06:55:55.5132142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_dynamo_utils.cpython-39.pyc 2025-09-07T06:55:55.5137450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_exec_order_utils.cpython-39.pyc 2025-09-07T06:55:55.5142645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_flat_param.cpython-39.pyc 2025-09-07T06:55:55.5148384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_fsdp_extensions.cpython-39.pyc 2025-09-07T06:55:55.5153718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_init_utils.cpython-39.pyc 2025-09-07T06:55:55.5157688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_limiter_utils.cpython-39.pyc 2025-09-07T06:55:55.5161190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_optim_utils.cpython-39.pyc 2025-09-07T06:55:55.5166910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_runtime_utils.cpython-39.pyc 2025-09-07T06:55:55.5170676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_shard_utils.cpython-39.pyc 2025-09-07T06:55:55.5174243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_state_dict_utils.cpython-39.pyc 2025-09-07T06:55:55.5187652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_trace_utils.cpython-39.pyc 2025-09-07T06:55:55.5191422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_traversal_utils.cpython-39.pyc 2025-09-07T06:55:55.5195056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_unshard_param_utils.cpython-39.pyc 2025-09-07T06:55:55.5198505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_wrap_utils.cpython-39.pyc 2025-09-07T06:55:55.5202332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5212117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\api.py 2025-09-07T06:55:55.5215562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__init__.py 2025-09-07T06:55:55.5222666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.5226325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5234131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\functional.py 2025-09-07T06:55:55.5237751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__init__.py 2025-09-07T06:55:55.5244554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\remote_module.py 2025-09-07T06:55:55.5248041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__init__.py 2025-09-07T06:55:55.5288115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\remote_module.cpython-39.pyc 2025-09-07T06:55:55.5292103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5299750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\instantiator.py 2025-09-07T06:55:55.5303188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__init__.py 2025-09-07T06:55:55.5310604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\remote_module_template.py 2025-09-07T06:55:55.5314579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__init__.py 2025-09-07T06:55:55.5321290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\remote_module_template.cpython-39.pyc 2025-09-07T06:55:55.5325253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5337528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\instantiator.cpython-39.pyc 2025-09-07T06:55:55.5340945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5359270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\functional.cpython-39.pyc 2025-09-07T06:55:55.5363181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5371523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\apply_optimizer_in_backward.py 2025-09-07T06:55:55.5375200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adadelta.py 2025-09-07T06:55:55.5379218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adagrad.py 2025-09-07T06:55:55.5392428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adam.py 2025-09-07T06:55:55.5395918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamax.py 2025-09-07T06:55:55.5399357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamw.py 2025-09-07T06:55:55.5402962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rmsprop.py 2025-09-07T06:55:55.5407422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rprop.py 2025-09-07T06:55:55.5411068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_sgd.py 2025-09-07T06:55:55.5414747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\named_optimizer.py 2025-09-07T06:55:55.5418200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\optimizer.py 2025-09-07T06:55:55.5421810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\post_localSGD_optimizer.py 2025-09-07T06:55:55.5425337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\utils.py 2025-09-07T06:55:55.5428919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.py 2025-09-07T06:55:55.5433098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.pyi 2025-09-07T06:55:55.5437079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\_deprecation_warning.py 2025-09-07T06:55:55.5440508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__init__.py 2025-09-07T06:55:55.5449465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\apply_optimizer_in_backward.cpython-39.pyc 2025-09-07T06:55:55.5452448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adadelta.cpython-39.pyc 2025-09-07T06:55:55.5456125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adagrad.cpython-39.pyc 2025-09-07T06:55:55.5470111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adam.cpython-39.pyc 2025-09-07T06:55:55.5474395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamax.cpython-39.pyc 2025-09-07T06:55:55.5478246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamw.cpython-39.pyc 2025-09-07T06:55:55.5482013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rmsprop.cpython-39.pyc 2025-09-07T06:55:55.5486079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rprop.cpython-39.pyc 2025-09-07T06:55:55.5489846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_sgd.cpython-39.pyc 2025-09-07T06:55:55.5493916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\named_optimizer.cpython-39.pyc 2025-09-07T06:55:55.5498201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\optimizer.cpython-39.pyc 2025-09-07T06:55:55.5502656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\post_localSGD_optimizer.cpython-39.pyc 2025-09-07T06:55:55.5506805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.5510310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\zero_redundancy_optimizer.cpython-39.pyc 2025-09-07T06:55:55.5514490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\_deprecation_warning.cpython-39.pyc 2025-09-07T06:55:55.5518311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5538346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\microbatch.py 2025-09-07T06:55:55.5542062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\schedules.py 2025-09-07T06:55:55.5546803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\stage.py 2025-09-07T06:55:55.5550355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_backward.py 2025-09-07T06:55:55.5564119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_debug.py 2025-09-07T06:55:55.5567506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_IR.py 2025-09-07T06:55:55.5571820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_schedule_visualizer.py 2025-09-07T06:55:55.5575489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_unflatten.py 2025-09-07T06:55:55.5578974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_utils.py 2025-09-07T06:55:55.5582629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__init__.py 2025-09-07T06:55:55.5590434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\microbatch.cpython-39.pyc 2025-09-07T06:55:55.5594590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\schedules.cpython-39.pyc 2025-09-07T06:55:55.5598777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\stage.cpython-39.pyc 2025-09-07T06:55:55.5612899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_backward.cpython-39.pyc 2025-09-07T06:55:55.5617906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_debug.cpython-39.pyc 2025-09-07T06:55:55.5621574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_IR.cpython-39.pyc 2025-09-07T06:55:55.5625345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_schedule_visualizer.cpython-39.pyc 2025-09-07T06:55:55.5629106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_unflatten.cpython-39.pyc 2025-09-07T06:55:55.5634464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:55:55.5637939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5645799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\api.py 2025-09-07T06:55:55.5649254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\backend_registry.py 2025-09-07T06:55:55.5652676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\constants.py 2025-09-07T06:55:55.5656012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\functions.py 2025-09-07T06:55:55.5669518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\internal.py 2025-09-07T06:55:55.5712541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\options.py 2025-09-07T06:55:55.5717441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\rref_proxy.py 2025-09-07T06:55:55.5722648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\server_process_global_profiler.py 2025-09-07T06:55:55.5726054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_utils.py 2025-09-07T06:55:55.5731282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__init__.py 2025-09-07T06:55:55.5740028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py 2025-09-07T06:55:55.5743585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__init__.py 2025-09-07T06:55:55.5752595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\faulty_agent_backend_registry.cpython-39.pyc 2025-09-07T06:55:55.5756158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5765180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.5768962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\backend_registry.cpython-39.pyc 2025-09-07T06:55:55.5772356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\constants.cpython-39.pyc 2025-09-07T06:55:55.5785940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\functions.cpython-39.pyc 2025-09-07T06:55:55.5790717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\internal.cpython-39.pyc 2025-09-07T06:55:55.5794217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\options.cpython-39.pyc 2025-09-07T06:55:55.5798064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\rref_proxy.cpython-39.pyc 2025-09-07T06:55:55.5801696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\server_process_global_profiler.cpython-39.pyc 2025-09-07T06:55:55.5805085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:55:55.5808617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5817153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\device_mesh.py 2025-09-07T06:55:55.5820665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\placement_types.py 2025-09-07T06:55:55.5824201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_api.py 2025-09-07T06:55:55.5828117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_collective_utils.py 2025-09-07T06:55:55.5841593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dispatch.py 2025-09-07T06:55:55.5846421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dtensor_spec.py 2025-09-07T06:55:55.5849953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_op_schema.py 2025-09-07T06:55:55.5853387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_random.py 2025-09-07T06:55:55.5856908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_redistribute.py 2025-09-07T06:55:55.5860228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_sharding_prop.py 2025-09-07T06:55:55.5863652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_shards_wrapper.py 2025-09-07T06:55:55.5867148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_tp_conv.py 2025-09-07T06:55:55.5870422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_utils.py 2025-09-07T06:55:55.5873679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__init__.py 2025-09-07T06:55:55.5880384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_comm_mode.py 2025-09-07T06:55:55.5883947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_op_coverage.py 2025-09-07T06:55:55.5887577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_visualize_sharding.py 2025-09-07T06:55:55.5890909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__init__.py 2025-09-07T06:55:55.5907638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_comm_mode.cpython-39.pyc 2025-09-07T06:55:55.5911480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_op_coverage.cpython-39.pyc 2025-09-07T06:55:55.5915043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_visualize_sharding.cpython-39.pyc 2025-09-07T06:55:55.5927734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.5935534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_attention.py 2025-09-07T06:55:55.5939209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_func_map.py 2025-09-07T06:55:55.5942664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_register_sharding.py 2025-09-07T06:55:55.5955687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_tp_transform.py 2025-09-07T06:55:55.5960379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__init__.py 2025-09-07T06:55:55.5970187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_attention.cpython-39.pyc 2025-09-07T06:55:55.5975232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_func_map.cpython-39.pyc 2025-09-07T06:55:55.5979004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_register_sharding.cpython-39.pyc 2025-09-07T06:55:55.5995609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_tp_transform.cpython-39.pyc 2025-09-07T06:55:55.6000384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6020574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\api.py 2025-09-07T06:55:55.6021333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\ddp.py 2025-09-07T06:55:55.6021930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\fsdp.py 2025-09-07T06:55:55.6023636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\input_reshard.py 2025-09-07T06:55:55.6028395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\loss.py 2025-09-07T06:55:55.6032106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\style.py 2025-09-07T06:55:55.6047203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\_data_parallel_utils.py 2025-09-07T06:55:55.6050883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__init__.py 2025-09-07T06:55:55.6058841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.6062514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\ddp.cpython-39.pyc 2025-09-07T06:55:55.6066255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\fsdp.cpython-39.pyc 2025-09-07T06:55:55.6079514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\input_reshard.cpython-39.pyc 2025-09-07T06:55:55.6083291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\loss.cpython-39.pyc 2025-09-07T06:55:55.6087388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\style.cpython-39.pyc 2025-09-07T06:55:55.6091275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\_data_parallel_utils.cpython-39.pyc 2025-09-07T06:55:55.6094890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6103248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\utils.py 2025-09-07T06:55:55.6106787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_common_rules.py 2025-09-07T06:55:55.6110162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_conv_ops.py 2025-09-07T06:55:55.6113877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_einsum_strategy.py 2025-09-07T06:55:55.6135560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_embedding_ops.py 2025-09-07T06:55:55.6157291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_math_ops.py 2025-09-07T06:55:55.6162584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_matrix_ops.py 2025-09-07T06:55:55.6167922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_pointwise_ops.py 2025-09-07T06:55:55.6171686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_random_ops.py 2025-09-07T06:55:55.6176890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_tensor_ops.py 2025-09-07T06:55:55.6182511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_view_ops.py 2025-09-07T06:55:55.6186284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__init__.py 2025-09-07T06:55:55.6195659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.6199304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_common_rules.cpython-39.pyc 2025-09-07T06:55:55.6202769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_conv_ops.cpython-39.pyc 2025-09-07T06:55:55.6215577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_einsum_strategy.cpython-39.pyc 2025-09-07T06:55:55.6219104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_embedding_ops.cpython-39.pyc 2025-09-07T06:55:55.6222558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_math_ops.cpython-39.pyc 2025-09-07T06:55:55.6226572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_matrix_ops.cpython-39.pyc 2025-09-07T06:55:55.6230278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_pointwise_ops.cpython-39.pyc 2025-09-07T06:55:55.6233834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_random_ops.cpython-39.pyc 2025-09-07T06:55:55.6238751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_tensor_ops.cpython-39.pyc 2025-09-07T06:55:55.6242502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_view_ops.cpython-39.pyc 2025-09-07T06:55:55.6246113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6254992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\device_mesh.cpython-39.pyc 2025-09-07T06:55:55.6258636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\placement_types.cpython-39.pyc 2025-09-07T06:55:55.6262206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_api.cpython-39.pyc 2025-09-07T06:55:55.6276323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_collective_utils.cpython-39.pyc 2025-09-07T06:55:55.6280024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dispatch.cpython-39.pyc 2025-09-07T06:55:55.6283663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dtensor_spec.cpython-39.pyc 2025-09-07T06:55:55.6287205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_op_schema.cpython-39.pyc 2025-09-07T06:55:55.6290750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_random.cpython-39.pyc 2025-09-07T06:55:55.6295086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_redistribute.cpython-39.pyc 2025-09-07T06:55:55.6298256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_sharding_prop.cpython-39.pyc 2025-09-07T06:55:55.6301840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_shards_wrapper.cpython-39.pyc 2025-09-07T06:55:55.6305562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_tp_conv.cpython-39.pyc 2025-09-07T06:55:55.6309125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:55:55.6312642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6321567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\checkpoint_activation.py 2025-09-07T06:55:55.6324884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\contract.py 2025-09-07T06:55:55.6328309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate.py 2025-09-07T06:55:55.6331857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate_with_fsdp.py 2025-09-07T06:55:55.6345566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__init__.py 2025-09-07T06:55:55.6352347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\fully_shard.py 2025-09-07T06:55:55.6355895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__init__.py 2025-09-07T06:55:55.6363002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\fully_shard.cpython-39.pyc 2025-09-07T06:55:55.6366758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6374506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\checkpoint_activation.cpython-39.pyc 2025-09-07T06:55:55.6377935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\contract.cpython-39.pyc 2025-09-07T06:55:55.6381390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate.cpython-39.pyc 2025-09-07T06:55:55.6395233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate_with_fsdp.cpython-39.pyc 2025-09-07T06:55:55.6399083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6407236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\api.py 2025-09-07T06:55:55.6410822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\common_op_utils.py 2025-09-07T06:55:55.6414750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\metadata.py 2025-09-07T06:55:55.6418232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\op_registry_utils.py 2025-09-07T06:55:55.6421814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharder.py 2025-09-07T06:55:55.6434789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\_utils.py 2025-09-07T06:55:55.6438247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__init__.py 2025-09-07T06:55:55.6445426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__init__.py 2025-09-07T06:55:55.6452569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6459761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\api.py 2025-09-07T06:55:55.6462936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__init__.py 2025-09-07T06:55:55.6469985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.6473739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6481419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\api.py 2025-09-07T06:55:55.6486494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logger.py 2025-09-07T06:55:55.6490158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logging_handlers.py 2025-09-07T06:55:55.6493666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\metadata.py 2025-09-07T06:55:55.6497372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\reshard.py 2025-09-07T06:55:55.6510740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\shard.py 2025-09-07T06:55:55.6514233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\utils.py 2025-09-07T06:55:55.6517674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__init__.py 2025-09-07T06:55:55.6525135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py 2025-09-07T06:55:55.6528549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\init.py 2025-09-07T06:55:55.6531918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py 2025-09-07T06:55:55.6535442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py 2025-09-07T06:55:55.6538799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\_common.py 2025-09-07T06:55:55.6553151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__init__.py 2025-09-07T06:55:55.6560418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\binary_cmp.cpython-39.pyc 2025-09-07T06:55:55.6564478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\init.cpython-39.pyc 2025-09-07T06:55:55.6568043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\misc_ops.cpython-39.pyc 2025-09-07T06:55:55.6581158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\tensor_ops.cpython-39.pyc 2025-09-07T06:55:55.6619761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\_common.cpython-39.pyc 2025-09-07T06:55:55.6624972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6644547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.6650091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logger.cpython-39.pyc 2025-09-07T06:55:55.6654026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logging_handlers.cpython-39.pyc 2025-09-07T06:55:55.6664949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\metadata.cpython-39.pyc 2025-09-07T06:55:55.6668724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\reshard.cpython-39.pyc 2025-09-07T06:55:55.6673997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\shard.cpython-39.pyc 2025-09-07T06:55:55.6677746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.6681281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6691000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\api.py 2025-09-07T06:55:55.6694541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__init__.py 2025-09-07T06:55:55.6701488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.6705240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6712712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\api.py 2025-09-07T06:55:55.6716230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py 2025-09-07T06:55:55.6721397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\_internals.py 2025-09-07T06:55:55.6725482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__init__.py 2025-09-07T06:55:55.6742472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py 2025-09-07T06:55:55.6746142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py 2025-09-07T06:55:55.6749746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py 2025-09-07T06:55:55.6762856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py 2025-09-07T06:55:55.6769553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding.cpython-39.pyc 2025-09-07T06:55:55.6773381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding_bag.cpython-39.pyc 2025-09-07T06:55:55.6778408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\_common.cpython-39.pyc 2025-09-07T06:55:55.6791574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6799494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.6803040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\chunk_sharding_spec.cpython-39.pyc 2025-09-07T06:55:55.6806525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\_internals.cpython-39.pyc 2025-09-07T06:55:55.6819730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6829083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.6832540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\common_op_utils.cpython-39.pyc 2025-09-07T06:55:55.6836078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\metadata.cpython-39.pyc 2025-09-07T06:55:55.6849397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\op_registry_utils.cpython-39.pyc 2025-09-07T06:55:55.6852995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\sharder.cpython-39.pyc 2025-09-07T06:55:55.6856538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:55:55.6860155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6868243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__init__.py 2025-09-07T06:55:55.6875139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6885313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__init__.py 2025-09-07T06:55:55.6893761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6904192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\_nvshmem_triton.py 2025-09-07T06:55:55.6909222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__init__.py 2025-09-07T06:55:55.6918112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\_nvshmem_triton.cpython-39.pyc 2025-09-07T06:55:55.6923059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6933759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\api.py 2025-09-07T06:55:55.6938388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\placement_types.py 2025-09-07T06:55:55.6942094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__init__.py 2025-09-07T06:55:55.6951776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\api.cpython-39.pyc 2025-09-07T06:55:55.6956506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\placement_types.cpython-39.pyc 2025-09-07T06:55:55.6960210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.6979364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\common_utils.py 2025-09-07T06:55:55.6993055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fake_collectives.py 2025-09-07T06:55:55.6996465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fsdp2_mem_tracker.py 2025-09-07T06:55:55.7000710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\ilp_utils.py 2025-09-07T06:55:55.7014671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\memory_tracker.py 2025-09-07T06:55:55.7018325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mem_tracker.py 2025-09-07T06:55:55.7022772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mod_tracker.py 2025-09-07T06:55:55.7026478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\runtime_estimator.py 2025-09-07T06:55:55.7030157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_estimator.py 2025-09-07T06:55:55.7033810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_ilp.py 2025-09-07T06:55:55.7037269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__init__.py 2025-09-07T06:55:55.7044895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\common_utils.cpython-39.pyc 2025-09-07T06:55:55.7048557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fake_collectives.cpython-39.pyc 2025-09-07T06:55:55.7052072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fsdp2_mem_tracker.cpython-39.pyc 2025-09-07T06:55:55.7066117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\ilp_utils.cpython-39.pyc 2025-09-07T06:55:55.7069832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\memory_tracker.cpython-39.pyc 2025-09-07T06:55:55.7073459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mem_tracker.cpython-39.pyc 2025-09-07T06:55:55.7077364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mod_tracker.cpython-39.pyc 2025-09-07T06:55:55.7081010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\runtime_estimator.cpython-39.pyc 2025-09-07T06:55:55.7085741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_estimator.cpython-39.pyc 2025-09-07T06:55:55.7089221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_ilp.cpython-39.pyc 2025-09-07T06:55:55.7092789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.7101374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\argparse_util.cpython-39.pyc 2025-09-07T06:55:55.7105197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\c10d_logger.cpython-39.pyc 2025-09-07T06:55:55.7109119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\collective_utils.cpython-39.pyc 2025-09-07T06:55:55.7123559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\constants.cpython-39.pyc 2025-09-07T06:55:55.7127734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\device_mesh.cpython-39.pyc 2025-09-07T06:55:55.7131867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\distributed_c10d.cpython-39.pyc 2025-09-07T06:55:55.7136538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\launch.cpython-39.pyc 2025-09-07T06:55:55.7140341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\logging_handlers.cpython-39.pyc 2025-09-07T06:55:55.7144656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\remote_device.cpython-39.pyc 2025-09-07T06:55:55.7148504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\rendezvous.cpython-39.pyc 2025-09-07T06:55:55.7152348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\run.cpython-39.pyc 2025-09-07T06:55:55.7156063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.7159832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_checkpointable.cpython-39.pyc 2025-09-07T06:55:55.7163536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_composable_state.cpython-39.pyc 2025-09-07T06:55:55.7167258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_C_stubs.cpython-39.pyc 2025-09-07T06:55:55.7170720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_dist2.cpython-39.pyc 2025-09-07T06:55:55.7174557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_distributed_c10d.cpython-39.pyc 2025-09-07T06:55:55.7188586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives.cpython-39.pyc 2025-09-07T06:55:55.7192374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives_impl.cpython-39.pyc 2025-09-07T06:55:55.7196177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_serialization.cpython-39.pyc 2025-09-07T06:55:55.7200167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_state_dict_utils.cpython-39.pyc 2025-09-07T06:55:55.7203901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.7213681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\bernoulli.py 2025-09-07T06:55:55.7217251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\beta.py 2025-09-07T06:55:55.7220618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\binomial.py 2025-09-07T06:55:55.7223968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\categorical.py 2025-09-07T06:55:55.7237737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\cauchy.py 2025-09-07T06:55:55.7241195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\chi2.py 2025-09-07T06:55:55.7244539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraints.py 2025-09-07T06:55:55.7248015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraint_registry.py 2025-09-07T06:55:55.7252196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\continuous_bernoulli.py 2025-09-07T06:55:55.7255644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\dirichlet.py 2025-09-07T06:55:55.7259069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\distribution.py 2025-09-07T06:55:55.7262429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exponential.py 2025-09-07T06:55:55.7266047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exp_family.py 2025-09-07T06:55:55.7269549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\fishersnedecor.py 2025-09-07T06:55:55.7272985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gamma.py 2025-09-07T06:55:55.7276395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\generalized_pareto.py 2025-09-07T06:55:55.7279904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\geometric.py 2025-09-07T06:55:55.7283690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gumbel.py 2025-09-07T06:55:55.7287125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_cauchy.py 2025-09-07T06:55:55.7290618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_normal.py 2025-09-07T06:55:55.7294165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\independent.py 2025-09-07T06:55:55.7297624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\inverse_gamma.py 2025-09-07T06:55:55.7310875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kl.py 2025-09-07T06:55:55.7314427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kumaraswamy.py 2025-09-07T06:55:55.7318057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\laplace.py 2025-09-07T06:55:55.7321469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lkj_cholesky.py 2025-09-07T06:55:55.7325115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\logistic_normal.py 2025-09-07T06:55:55.7328619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\log_normal.py 2025-09-07T06:55:55.7332358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lowrank_multivariate_normal.py 2025-09-07T06:55:55.7335846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\mixture_same_family.py 2025-09-07T06:55:55.7339291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multinomial.py 2025-09-07T06:55:55.7342822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multivariate_normal.py 2025-09-07T06:55:55.7355723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\negative_binomial.py 2025-09-07T06:55:55.7359191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\normal.py 2025-09-07T06:55:55.7363029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\one_hot_categorical.py 2025-09-07T06:55:55.7366392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\pareto.py 2025-09-07T06:55:55.7369806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\poisson.py 2025-09-07T06:55:55.7373261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_bernoulli.py 2025-09-07T06:55:55.7377072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_categorical.py 2025-09-07T06:55:55.7380495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\studentT.py 2025-09-07T06:55:55.7383912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transformed_distribution.py 2025-09-07T06:55:55.7387457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transforms.py 2025-09-07T06:55:55.7391303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\uniform.py 2025-09-07T06:55:55.7394936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\utils.py 2025-09-07T06:55:55.7398340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\von_mises.py 2025-09-07T06:55:55.7411751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\weibull.py 2025-09-07T06:55:55.7415141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\wishart.py 2025-09-07T06:55:55.7418496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__init__.py 2025-09-07T06:55:55.7427166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\bernoulli.cpython-39.pyc 2025-09-07T06:55:55.7430665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\beta.cpython-39.pyc 2025-09-07T06:55:55.7434128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\binomial.cpython-39.pyc 2025-09-07T06:55:55.7447627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\categorical.cpython-39.pyc 2025-09-07T06:55:55.7451761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\cauchy.cpython-39.pyc 2025-09-07T06:55:55.7455393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\chi2.cpython-39.pyc 2025-09-07T06:55:55.7458971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraints.cpython-39.pyc 2025-09-07T06:55:55.7462789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraint_registry.cpython-39.pyc 2025-09-07T06:55:55.7466584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\continuous_bernoulli.cpython-39.pyc 2025-09-07T06:55:55.7470040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\dirichlet.cpython-39.pyc 2025-09-07T06:55:55.7473706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\distribution.cpython-39.pyc 2025-09-07T06:55:55.7477301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exponential.cpython-39.pyc 2025-09-07T06:55:55.7481009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exp_family.cpython-39.pyc 2025-09-07T06:55:55.7484418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\fishersnedecor.cpython-39.pyc 2025-09-07T06:55:55.7487891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gamma.cpython-39.pyc 2025-09-07T06:55:55.7491425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\generalized_pareto.cpython-39.pyc 2025-09-07T06:55:55.7495171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\geometric.cpython-39.pyc 2025-09-07T06:55:55.7508526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gumbel.cpython-39.pyc 2025-09-07T06:55:55.7512106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_cauchy.cpython-39.pyc 2025-09-07T06:55:55.7515681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_normal.cpython-39.pyc 2025-09-07T06:55:55.7519216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\independent.cpython-39.pyc 2025-09-07T06:55:55.7522687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\inverse_gamma.cpython-39.pyc 2025-09-07T06:55:55.7526137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kl.cpython-39.pyc 2025-09-07T06:55:55.7529874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kumaraswamy.cpython-39.pyc 2025-09-07T06:55:55.7533645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\laplace.cpython-39.pyc 2025-09-07T06:55:55.7547037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lkj_cholesky.cpython-39.pyc 2025-09-07T06:55:55.7550704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\logistic_normal.cpython-39.pyc 2025-09-07T06:55:55.7554420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\log_normal.cpython-39.pyc 2025-09-07T06:55:55.7558098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lowrank_multivariate_normal.cpython-39.pyc 2025-09-07T06:55:55.7561725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\mixture_same_family.cpython-39.pyc 2025-09-07T06:55:55.7565629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multinomial.cpython-39.pyc 2025-09-07T06:55:55.7569320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multivariate_normal.cpython-39.pyc 2025-09-07T06:55:55.7572972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\negative_binomial.cpython-39.pyc 2025-09-07T06:55:55.7597786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\normal.cpython-39.pyc 2025-09-07T06:55:55.7601513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\one_hot_categorical.cpython-39.pyc 2025-09-07T06:55:55.7605069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\pareto.cpython-39.pyc 2025-09-07T06:55:55.7609077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\poisson.cpython-39.pyc 2025-09-07T06:55:55.7612938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_bernoulli.cpython-39.pyc 2025-09-07T06:55:55.7616745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_categorical.cpython-39.pyc 2025-09-07T06:55:55.7620427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\studentT.cpython-39.pyc 2025-09-07T06:55:55.7624298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transformed_distribution.cpython-39.pyc 2025-09-07T06:55:55.7638502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transforms.cpython-39.pyc 2025-09-07T06:55:55.7642859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\uniform.cpython-39.pyc 2025-09-07T06:55:55.7647036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.7651386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\von_mises.cpython-39.pyc 2025-09-07T06:55:55.7655574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\weibull.cpython-39.pyc 2025-09-07T06:55:55.7659793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\wishart.cpython-39.pyc 2025-09-07T06:55:55.7663640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.7673069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_obj.py 2025-09-07T06:55:55.7676622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_ops.py 2025-09-07T06:55:55.7680168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\decomp_utils.py 2025-09-07T06:55:55.7683618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\dynamic_shapes.py 2025-09-07T06:55:55.7697150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\exported_program.py 2025-09-07T06:55:55.7700925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\graph_signature.py 2025-09-07T06:55:55.7704943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\unflatten.py 2025-09-07T06:55:55.7708967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_draft_export.py 2025-09-07T06:55:55.7712639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_leakage_detection_utils.py 2025-09-07T06:55:55.7716248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_auto_functionalized_pass.py 2025-09-07T06:55:55.7719695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_effect_tokens_pass.py 2025-09-07T06:55:55.7723061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_safeguard.py 2025-09-07T06:55:55.7726656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_swap.py 2025-09-07T06:55:55.7729980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_trace.py 2025-09-07T06:55:55.7733896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_tree_utils.py 2025-09-07T06:55:55.7737374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_unlift.py 2025-09-07T06:55:55.7740667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_wrapper_utils.py 2025-09-07T06:55:55.7744674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__init__.py 2025-09-07T06:55:55.7751612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\_utils.py 2025-09-07T06:55:55.7754929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__init__.py 2025-09-07T06:55:55.7762096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:55:55.7765569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.7772883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__init__.py 2025-09-07T06:55:55.7779726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.7796228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\constants.py 2025-09-07T06:55:55.7799723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package.py 2025-09-07T06:55:55.7803128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package_weights.py 2025-09-07T06:55:55.7806351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__init__.py 2025-09-07T06:55:55.7823089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\constants.cpython-39.pyc 2025-09-07T06:55:55.7826905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package.cpython-39.pyc 2025-09-07T06:55:55.7830617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package_weights.cpython-39.pyc 2025-09-07T06:55:55.7843707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.7852285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_obj.cpython-39.pyc 2025-09-07T06:55:55.7855647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_ops.cpython-39.pyc 2025-09-07T06:55:55.7859174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\decomp_utils.cpython-39.pyc 2025-09-07T06:55:55.7871922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\dynamic_shapes.cpython-39.pyc 2025-09-07T06:55:55.7908861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\exported_program.cpython-39.pyc 2025-09-07T06:55:55.7912615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\graph_signature.cpython-39.pyc 2025-09-07T06:55:55.7916321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\unflatten.cpython-39.pyc 2025-09-07T06:55:55.7920290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_draft_export.cpython-39.pyc 2025-09-07T06:55:55.7923695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_leakage_detection_utils.cpython-39.pyc 2025-09-07T06:55:55.7927108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_auto_functionalized_pass.cpython-39.pyc 2025-09-07T06:55:55.7930596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_effect_tokens_pass.cpython-39.pyc 2025-09-07T06:55:55.7933927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_safeguard.cpython-39.pyc 2025-09-07T06:55:55.7937440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_swap.cpython-39.pyc 2025-09-07T06:55:55.7940742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_trace.cpython-39.pyc 2025-09-07T06:55:55.7944666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_tree_utils.cpython-39.pyc 2025-09-07T06:55:55.7948236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_unlift.cpython-39.pyc 2025-09-07T06:55:55.7956612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_wrapper_utils.cpython-39.pyc 2025-09-07T06:55:55.7960311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.7968583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__init__.py 2025-09-07T06:55:55.7976405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.7984099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__init__.py 2025-09-07T06:55:55.7990985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.7998299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__init__.py 2025-09-07T06:55:55.8005799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8013471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\annotate.py 2025-09-07T06:55:55.8016990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\config.py 2025-09-07T06:55:55.8020259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph.py 2025-09-07T06:55:55.8024433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph_module.py 2025-09-07T06:55:55.8028177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\immutable_collections.py 2025-09-07T06:55:55.8041929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\interpreter.py 2025-09-07T06:55:55.8045547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\node.py 2025-09-07T06:55:55.8049674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\operator_schemas.py 2025-09-07T06:55:55.8053374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\proxy.py 2025-09-07T06:55:55.8056972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\subgraph_rewriter.py 2025-09-07T06:55:55.8060450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\tensor_type.py 2025-09-07T06:55:55.8064059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\traceback.py 2025-09-07T06:55:55.8067556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_compatibility.py 2025-09-07T06:55:55.8071088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_graph_pickler.py 2025-09-07T06:55:55.8075373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_lazy_graph_module.py 2025-09-07T06:55:55.8078223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_pytree.py 2025-09-07T06:55:55.8081983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_symbolic_trace.py 2025-09-07T06:55:55.8085907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_utils.py 2025-09-07T06:55:55.8089328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__init__.py 2025-09-07T06:55:55.8096625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\accelerator_partitioner.py 2025-09-07T06:55:55.8100496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\const_fold.py 2025-09-07T06:55:55.8104076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\debug.py 2025-09-07T06:55:55.8117328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\graph_gradual_typechecker.py 2025-09-07T06:55:55.8121062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\merge_matmul.py 2025-09-07T06:55:55.8124839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\meta_tracer.py 2025-09-07T06:55:55.8128251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\normalize.py 2025-09-07T06:55:55.8131830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\optimization.py 2025-09-07T06:55:55.8135491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\partitioner_utils.py 2025-09-07T06:55:55.8138943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\proxy_tensor.py 2025-09-07T06:55:55.8143301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\recording.py 2025-09-07T06:55:55.8147081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\refinement_types.py 2025-09-07T06:55:55.8150461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\rewriter.py 2025-09-07T06:55:55.8154029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\schema_type_annotation.py 2025-09-07T06:55:55.8157477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\symbolic_shapes.py 2025-09-07T06:55:55.8163086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\sym_node.py 2025-09-07T06:55:55.8166983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unify_refinements.py 2025-09-07T06:55:55.8171138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\validator.py 2025-09-07T06:55:55.8174366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_backward_state.py 2025-09-07T06:55:55.8177830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_config.py 2025-09-07T06:55:55.8182223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_constant_symnode.py 2025-09-07T06:55:55.8194700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_dynamism.py 2025-09-07T06:55:55.8198403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__init__.py 2025-09-07T06:55:55.8204861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint.py 2025-09-07T06:55:55.8208453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_generator.py 2025-09-07T06:55:55.8212060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py 2025-09-07T06:55:55.8226908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\operation.py 2025-09-07T06:55:55.8231755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py 2025-09-07T06:55:55.8235910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\util.py 2025-09-07T06:55:55.8239341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\z3_types.py 2025-09-07T06:55:55.8242887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__init__.py 2025-09-07T06:55:55.8249352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint.cpython-39.pyc 2025-09-07T06:55:55.8253009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_generator.cpython-39.pyc 2025-09-07T06:55:55.8256748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_transformation.cpython-39.pyc 2025-09-07T06:55:55.8270892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\operation.cpython-39.pyc 2025-09-07T06:55:55.8274504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\transform_to_z3.cpython-39.pyc 2025-09-07T06:55:55.8278136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\util.cpython-39.pyc 2025-09-07T06:55:55.8281736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\z3_types.cpython-39.pyc 2025-09-07T06:55:55.8285298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8294765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\core.py 2025-09-07T06:55:55.8298203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\dispatch.py 2025-09-07T06:55:55.8301439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\match.py 2025-09-07T06:55:55.8304825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\more.py 2025-09-07T06:55:55.8308253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\unification_tools.py 2025-09-07T06:55:55.8322084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\utils.py 2025-09-07T06:55:55.8325492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\variable.py 2025-09-07T06:55:55.8328950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__init__.py 2025-09-07T06:55:55.8335701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\conflict.py 2025-09-07T06:55:55.8338984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\core.py 2025-09-07T06:55:55.8342399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\dispatcher.py 2025-09-07T06:55:55.8345913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\utils.py 2025-09-07T06:55:55.8349303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\variadic.py 2025-09-07T06:55:55.8362941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__init__.py 2025-09-07T06:55:55.8369874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\conflict.cpython-39.pyc 2025-09-07T06:55:55.8373340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\core.cpython-39.pyc 2025-09-07T06:55:55.8376825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\dispatcher.cpython-39.pyc 2025-09-07T06:55:55.8389677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.8398825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\variadic.cpython-39.pyc 2025-09-07T06:55:55.8442116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8453441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\core.cpython-39.pyc 2025-09-07T06:55:55.8458629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\dispatch.cpython-39.pyc 2025-09-07T06:55:55.8462270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\match.cpython-39.pyc 2025-09-07T06:55:55.8477241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\more.cpython-39.pyc 2025-09-07T06:55:55.8480990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\unification_tools.cpython-39.pyc 2025-09-07T06:55:55.8484440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\utils.cpython-39.pyc 2025-09-07T06:55:55.8487945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\variable.cpython-39.pyc 2025-09-07T06:55:55.8493327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8501931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\accelerator_partitioner.cpython-39.pyc 2025-09-07T06:55:55.8505772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\const_fold.cpython-39.pyc 2025-09-07T06:55:55.8509234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\debug.cpython-39.pyc 2025-09-07T06:55:55.8524027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\graph_gradual_typechecker.cpython-39.pyc 2025-09-07T06:55:55.8527759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\merge_matmul.cpython-39.pyc 2025-09-07T06:55:55.8531375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\meta_tracer.cpython-39.pyc 2025-09-07T06:55:55.8534795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\normalize.cpython-39.pyc 2025-09-07T06:55:55.8538190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\optimization.cpython-39.pyc 2025-09-07T06:55:55.8541628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\partitioner_utils.cpython-39.pyc 2025-09-07T06:55:55.8545136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\proxy_tensor.cpython-39.pyc 2025-09-07T06:55:55.8549101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\recording.cpython-39.pyc 2025-09-07T06:55:55.8552909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\refinement_types.cpython-39.pyc 2025-09-07T06:55:55.8556420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\rewriter.cpython-39.pyc 2025-09-07T06:55:55.8559941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\schema_type_annotation.cpython-39.pyc 2025-09-07T06:55:55.8565657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\symbolic_shapes.cpython-39.pyc 2025-09-07T06:55:55.8570718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\sym_node.cpython-39.pyc 2025-09-07T06:55:55.8584472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\unify_refinements.cpython-39.pyc 2025-09-07T06:55:55.8588159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\validator.cpython-39.pyc 2025-09-07T06:55:55.8592106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_backward_state.cpython-39.pyc 2025-09-07T06:55:55.8595681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_config.cpython-39.pyc 2025-09-07T06:55:55.8599224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_constant_symnode.cpython-39.pyc 2025-09-07T06:55:55.8602696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_dynamism.cpython-39.pyc 2025-09-07T06:55:55.8606189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8614629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\annotate_getitem_nodes.py 2025-09-07T06:55:55.8618660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\fake_tensor_prop.py 2025-09-07T06:55:55.8622073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_drawer.py 2025-09-07T06:55:55.8625584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_manipulation.py 2025-09-07T06:55:55.8638743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_transform_observer.py 2025-09-07T06:55:55.8642157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\net_min_base.py 2025-09-07T06:55:55.8645752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\operator_support.py 2025-09-07T06:55:55.8649132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\param_fetch.py 2025-09-07T06:55:55.8652556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\pass_manager.py 2025-09-07T06:55:55.8655994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\reinplace.py 2025-09-07T06:55:55.8659453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\runtime_assert.py 2025-09-07T06:55:55.8662898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\shape_prop.py 2025-09-07T06:55:55.8666403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\splitter_base.py 2025-09-07T06:55:55.8670622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_module.py 2025-09-07T06:55:55.8674271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_utils.py 2025-09-07T06:55:55.8677791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tools_common.py 2025-09-07T06:55:55.8681296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\_tensorify_python_scalars.py 2025-09-07T06:55:55.8685112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__init__.py 2025-09-07T06:55:55.8692350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\cudagraphs.py 2025-09-07T06:55:55.8695750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__init__.py 2025-09-07T06:55:55.8701561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-09-07T06:55:55.8705204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8723704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__init__.py 2025-09-07T06:55:55.8729363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\cse_pass.py 2025-09-07T06:55:55.8732866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__init__.py 2025-09-07T06:55:55.8738675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\cse_pass.cpython-39.pyc 2025-09-07T06:55:55.8742234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8749502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8757244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\partitioner.py 2025-09-07T06:55:55.8760643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_base.py 2025-09-07T06:55:55.8764176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_manager.py 2025-09-07T06:55:55.8767476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__init__.py 2025-09-07T06:55:55.8784022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\partitioner.cpython-39.pyc 2025-09-07T06:55:55.8787587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_base.cpython-39.pyc 2025-09-07T06:55:55.8791109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_manager.cpython-39.pyc 2025-09-07T06:55:55.8804481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8812462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\test_pass_manager.py 2025-09-07T06:55:55.8816039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__init__.py 2025-09-07T06:55:55.8822311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\test_pass_manager.cpython-39.pyc 2025-09-07T06:55:55.8825884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8833328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\common.py 2025-09-07T06:55:55.8836792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\fuser_utils.py 2025-09-07T06:55:55.8840228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_utils.py 2025-09-07T06:55:55.8843826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_with_name_node_map_utils.py 2025-09-07T06:55:55.8856854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\source_matcher_utils.py 2025-09-07T06:55:55.8860416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__init__.py 2025-09-07T06:55:55.8867495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\common.cpython-39.pyc 2025-09-07T06:55:55.8871267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\fuser_utils.cpython-39.pyc 2025-09-07T06:55:55.8874757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_utils.cpython-39.pyc 2025-09-07T06:55:55.8888003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_with_name_node_map_utils.cpython-39.pyc 2025-09-07T06:55:55.8891519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\source_matcher_utils.cpython-39.pyc 2025-09-07T06:55:55.8895083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8903119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\annotate_getitem_nodes.cpython-39.pyc 2025-09-07T06:55:55.8907460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\fake_tensor_prop.cpython-39.pyc 2025-09-07T06:55:55.8911369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_drawer.cpython-39.pyc 2025-09-07T06:55:55.8925002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_manipulation.cpython-39.pyc 2025-09-07T06:55:55.8928639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_transform_observer.cpython-39.pyc 2025-09-07T06:55:55.8932473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\net_min_base.cpython-39.pyc 2025-09-07T06:55:55.8936460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\operator_support.cpython-39.pyc 2025-09-07T06:55:55.8940400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\param_fetch.cpython-39.pyc 2025-09-07T06:55:55.8944243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\pass_manager.cpython-39.pyc 2025-09-07T06:55:55.8948148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\reinplace.cpython-39.pyc 2025-09-07T06:55:55.8951865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\runtime_assert.cpython-39.pyc 2025-09-07T06:55:55.8955396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\shape_prop.cpython-39.pyc 2025-09-07T06:55:55.8959023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\splitter_base.cpython-39.pyc 2025-09-07T06:55:55.8962876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_module.cpython-39.pyc 2025-09-07T06:55:55.8966602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_utils.cpython-39.pyc 2025-09-07T06:55:55.8970219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\tools_common.cpython-39.pyc 2025-09-07T06:55:55.8984043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\_tensorify_python_scalars.cpython-39.pyc 2025-09-07T06:55:55.8987842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.8996567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\annotate.cpython-39.pyc 2025-09-07T06:55:55.9000324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\config.cpython-39.pyc 2025-09-07T06:55:55.9003742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph.cpython-39.pyc 2025-09-07T06:55:55.9017054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph_module.cpython-39.pyc 2025-09-07T06:55:55.9020972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\immutable_collections.cpython-39.pyc 2025-09-07T06:55:55.9025062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\interpreter.cpython-39.pyc 2025-09-07T06:55:55.9029774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\node.cpython-39.pyc 2025-09-07T06:55:55.9033510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\operator_schemas.cpython-39.pyc 2025-09-07T06:55:55.9037016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\proxy.cpython-39.pyc 2025-09-07T06:55:55.9041227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\subgraph_rewriter.cpython-39.pyc 2025-09-07T06:55:55.9044735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\tensor_type.cpython-39.pyc 2025-09-07T06:55:55.9048507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\traceback.cpython-39.pyc 2025-09-07T06:55:55.9052030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_compatibility.cpython-39.pyc 2025-09-07T06:55:55.9055516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_graph_pickler.cpython-39.pyc 2025-09-07T06:55:55.9059237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_lazy_graph_module.cpython-39.pyc 2025-09-07T06:55:55.9062800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_pytree.cpython-39.pyc 2025-09-07T06:55:55.9066618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_symbolic_trace.cpython-39.pyc 2025-09-07T06:55:55.9079836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:55:55.9083581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:55:55.9101498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\advisor-annotate.h 2025-09-07T06:55:55.9105256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\cpuinfo.h 2025-09-07T06:55:55.9108930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.h 2025-09-07T06:55:55.9112304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.hpp 2025-09-07T06:55:55.9115566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_config.h 2025-09-07T06:55:55.9128559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_debug.h 2025-09-07T06:55:55.9131951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.h 2025-09-07T06:55:55.9169176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.hpp 2025-09-07T06:55:55.9172679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.h 2025-09-07T06:55:55.9176520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.hpp 2025-09-07T06:55:55.9179905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl_types.h 2025-09-07T06:55:55.9183382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.h 2025-09-07T06:55:55.9186920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.hpp 2025-09-07T06:55:55.9190394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool_iface.hpp 2025-09-07T06:55:55.9193875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_types.h 2025-09-07T06:55:55.9197372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_version.h 2025-09-07T06:55:55.9201069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\experiments-config.h 2025-09-07T06:55:55.9204514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16.h 2025-09-07T06:55:55.9207762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fxdiv.h 2025-09-07T06:55:55.9211160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify-zca.h 2025-09-07T06:55:55.9214723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify.h 2025-09-07T06:55:55.9219216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\jitprofiling.h 2025-09-07T06:55:55.9227468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libittnotify.h 2025-09-07T06:55:55.9230835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libshm.h 2025-09-07T06:55:55.9234381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\psimd.h 2025-09-07T06:55:55.9238087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pthreadpool.h 2025-09-07T06:55:55.9242503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\sleef.h 2025-09-07T06:55:55.9248007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\xnnpack.h 2025-09-07T06:55:55.9258492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\AccumulateType.h 2025-09-07T06:55:55.9262046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ArrayRef.h 2025-09-07T06:55:55.9265712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ATen.h 2025-09-07T06:55:55.9269416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\autocast_mode.h 2025-09-07T06:55:55.9273299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backend.h 2025-09-07T06:55:55.9287202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backtrace.h 2025-09-07T06:55:55.9291158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\BlasBackend.h 2025-09-07T06:55:55.9294843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CachedTensorUtils.h 2025-09-07T06:55:55.9298359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ceil_div.h 2025-09-07T06:55:55.9301805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\code_template.h 2025-09-07T06:55:55.9305420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CollapseDims.h 2025-09-07T06:55:55.9308971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions.h 2025-09-07T06:55:55.9312641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h 2025-09-07T06:55:55.9316444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h 2025-09-07T06:55:55.9320457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h 2025-09-07T06:55:55.9324213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions.h 2025-09-07T06:55:55.9327992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h 2025-09-07T06:55:55.9331778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h 2025-09-07T06:55:55.9335929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h 2025-09-07T06:55:55.9349578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Config.h 2025-09-07T06:55:55.9353519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Context.h 2025-09-07T06:55:55.9356964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpp_custom_type_hack.h 2025-09-07T06:55:55.9360618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUApplyUtils.h 2025-09-07T06:55:55.9364274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFixedAllocator.h 2025-09-07T06:55:55.9367811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions.h 2025-09-07T06:55:55.9371425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions_inl.h 2025-09-07T06:55:55.9375400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUGeneratorImpl.h 2025-09-07T06:55:55.9378972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions.h 2025-09-07T06:55:55.9382752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions_inl.h 2025-09-07T06:55:55.9396645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Device.h 2025-09-07T06:55:55.9399995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceAccelerator.h 2025-09-07T06:55:55.9403420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceGuard.h 2025-09-07T06:55:55.9406876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dimname.h 2025-09-07T06:55:55.9410151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DimVector.h 2025-09-07T06:55:55.9413561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch.h 2025-09-07T06:55:55.9416930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch_v2.h 2025-09-07T06:55:55.9420701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\div_rtn.h 2025-09-07T06:55:55.9424579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DLConvertor.h 2025-09-07T06:55:55.9428050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\dlpack.h 2025-09-07T06:55:55.9431268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DTensorState.h 2025-09-07T06:55:55.9435504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DynamicLibrary.h 2025-09-07T06:55:55.9449148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\EmptyTensor.h 2025-09-07T06:55:55.9452685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandBase.h 2025-09-07T06:55:55.9456122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandUtils.h 2025-09-07T06:55:55.9459558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Formatting.h 2025-09-07T06:55:55.9463054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalStorageImpl.h 2025-09-07T06:55:55.9466914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalTensorWrapper.h 2025-09-07T06:55:55.9470349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Functions.h 2025-09-07T06:55:55.9474048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FuncTorchTLS.h 2025-09-07T06:55:55.9478447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Generator.h 2025-09-07T06:55:55.9482514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InferSize.h 2025-09-07T06:55:55.9495817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InitialTensorOptions.h 2025-09-07T06:55:55.9499968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jiterator_macros.h 2025-09-07T06:55:55.9503330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jit_macros.h 2025-09-07T06:55:55.9507455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Layout.h 2025-09-07T06:55:55.9510871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedFallback.h 2025-09-07T06:55:55.9514739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedTensorImpl.h 2025-09-07T06:55:55.9518201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapMode.h 2025-09-07T06:55:55.9521777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapTransforms.h 2025-09-07T06:55:55.9525324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LinalgBackend.h 2025-09-07T06:55:55.9529109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MapAllocator.h 2025-09-07T06:55:55.9552262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MatrixRef.h 2025-09-07T06:55:55.9556141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MemoryOverlap.h 2025-09-07T06:55:55.9559852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions.h 2025-09-07T06:55:55.9563489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions_inl.h 2025-09-07T06:55:55.9567109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MethodOperators.h 2025-09-07T06:55:55.9570727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensor.h 2025-09-07T06:55:55.9574230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensorUtils.h 2025-09-07T06:55:55.9577935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeFunctions.h 2025-09-07T06:55:55.9581953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeMetaFunctions.h 2025-09-07T06:55:55.9595781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NestedTensorImpl.h 2025-09-07T06:55:55.9599785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NumericUtils.h 2025-09-07T06:55:55.9603368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpaqueTensorImpl.h 2025-09-07T06:55:55.9606856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Operators.h 2025-09-07T06:55:55.9610862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpMathType.h 2025-09-07T06:55:55.9614573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PadNd.h 2025-09-07T06:55:55.9617951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel-inl.h 2025-09-07T06:55:55.9621677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel.h 2025-09-07T06:55:55.9625309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelFuture.h 2025-09-07T06:55:55.9628932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelNative.h 2025-09-07T06:55:55.9642828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelOpenMP.h 2025-09-07T06:55:55.9647084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PTThreadPool.h 2025-09-07T06:55:55.9650666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PythonTorchFunctionTLS.h 2025-09-07T06:55:55.9654809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\record_function.h 2025-09-07T06:55:55.9694608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RedispatchFunctions.h 2025-09-07T06:55:55.9711372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RegistrationDeclarations.h 2025-09-07T06:55:55.9720091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ROCmFABackend.h 2025-09-07T06:55:55.9723710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SavedTensorHooks.h 2025-09-07T06:55:55.9728052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Scalar.h 2025-09-07T06:55:55.9731497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarOps.h 2025-09-07T06:55:55.9735709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarType.h 2025-09-07T06:55:55.9739208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SDPBackend.h 2025-09-07T06:55:55.9742843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SequenceNumber.h 2025-09-07T06:55:55.9746488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SmallVector.h 2025-09-07T06:55:55.9750896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorImpl.h 2025-09-07T06:55:55.9754535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorUtils.h 2025-09-07T06:55:55.9758123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseTensorImpl.h 2025-09-07T06:55:55.9761911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Storage.h 2025-09-07T06:55:55.9765254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\StorageUtils.h 2025-09-07T06:55:55.9768769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Tensor.h 2025-09-07T06:55:55.9772143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorAccessor.h 2025-09-07T06:55:55.9785749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorGeometry.h 2025-09-07T06:55:55.9789275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIndexing.h 2025-09-07T06:55:55.9793059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIterator.h 2025-09-07T06:55:55.9797040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIteratorInternal.h 2025-09-07T06:55:55.9800663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorMeta.h 2025-09-07T06:55:55.9804443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorNames.h 2025-09-07T06:55:55.9808219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOperators.h 2025-09-07T06:55:55.9811901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOptions.h 2025-09-07T06:55:55.9815522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorSubclassLikeUtils.h 2025-09-07T06:55:55.9827301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorUtils.h 2025-09-07T06:55:55.9827900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalPythonObjects.h 2025-09-07T06:55:55.9828490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalState.h 2025-09-07T06:55:55.9831924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TracerMode.h 2025-09-07T06:55:55.9835788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TypeDefault.h 2025-09-07T06:55:55.9839002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Utils.h 2025-09-07T06:55:55.9842416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Version.h 2025-09-07T06:55:55.9845889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\VmapGeneratedPlumbing.h 2025-09-07T06:55:55.9858012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtils.h 2025-09-07T06:55:55.9861796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtilsMulti.h 2025-09-07T06:55:55.9881257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\alias_info.h 2025-09-07T06:55:55.9884756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Array.h 2025-09-07T06:55:55.9888264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenGeneral.h 2025-09-07T06:55:55.9891882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenOpList.h 2025-09-07T06:55:55.9905180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_fwd.h 2025-09-07T06:55:55.9908661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\aten_interned_strings.h 2025-09-07T06:55:55.9912543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_pch.h 2025-09-07T06:55:55.9916221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Backtrace.h 2025-09-07T06:55:55.9919895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\blob.h 2025-09-07T06:55:55.9923315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\builtin_function.h 2025-09-07T06:55:55.9926962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CachingHostAllocator.h 2025-09-07T06:55:55.9930508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CheckMemoryFormat.h 2025-09-07T06:55:55.9934231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\class_type.h 2025-09-07T06:55:55.9937713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\custom_class.h 2025-09-07T06:55:55.9941311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypeProperties.h 2025-09-07T06:55:55.9944961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h 2025-09-07T06:55:55.9948462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict.h 2025-09-07T06:55:55.9952214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict_inl.h 2025-09-07T06:55:55.9955487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dimname.h 2025-09-07T06:55:55.9958808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DimVector.h 2025-09-07T06:55:55.9962547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DistributionsHelper.h 2025-09-07T06:55:55.9966049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dynamic_type.h 2025-09-07T06:55:55.9979072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_tag.h 2025-09-07T06:55:55.9982309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_type.h 2025-09-07T06:55:55.9985939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Formatting.h 2025-09-07T06:55:55.9989511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function.h 2025-09-07T06:55:55.9992748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\functional.h 2025-09-07T06:55:55.9996255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema.h 2025-09-07T06:55:56.0000082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema_inl.h 2025-09-07T06:55:56.0004048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Generator.h 2025-09-07T06:55:56.0007650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\GeneratorForPrivateuseone.h 2025-09-07T06:55:56.0011128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\grad_mode.h 2025-09-07T06:55:56.0014736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef.h 2025-09-07T06:55:56.0027880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef_inl.h 2025-09-07T06:55:56.0031292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings.h 2025-09-07T06:55:56.0034823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings_class.h 2025-09-07T06:55:56.0038459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue.h 2025-09-07T06:55:56.0042088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_inl.h 2025-09-07T06:55:56.0046414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_to.h 2025-09-07T06:55:56.0049986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type.h 2025-09-07T06:55:56.0054543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type_base.h 2025-09-07T06:55:56.0058917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\LegacyTypeDispatch.h 2025-09-07T06:55:56.0062606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List.h 2025-09-07T06:55:56.0066807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List_inl.h 2025-09-07T06:55:56.0070421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\MT19937RNGEngine.h 2025-09-07T06:55:56.0084498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NamedTensor.h 2025-09-07T06:55:56.0088219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NestedIntSymNodeImpl.h 2025-09-07T06:55:56.0091806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\operator_name.h 2025-09-07T06:55:56.0095539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PhiloxRNGEngine.h 2025-09-07T06:55:56.0099183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonFallbackKernel.h 2025-09-07T06:55:56.0102783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonOpRegistrationTrampoline.h 2025-09-07T06:55:56.0106411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\qualified_name.h 2025-09-07T06:55:56.0110844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\QuantizerBase.h 2025-09-07T06:55:56.0113517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Range.h 2025-09-07T06:55:56.0117058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Reduction.h 2025-09-07T06:55:56.0131990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\rref_interface.h 2025-09-07T06:55:56.0136710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Scalar.h 2025-09-07T06:55:56.0140989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ScalarType.h 2025-09-07T06:55:56.0179473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\stack.h 2025-09-07T06:55:56.0180027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\symbol.h 2025-09-07T06:55:56.0180535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Tensor.h 2025-09-07T06:55:56.0181080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorAccessor.h 2025-09-07T06:55:56.0181639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBase.h 2025-09-07T06:55:56.0182293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBody.h 2025-09-07T06:55:56.0182857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TorchDispatchUtils.h 2025-09-07T06:55:56.0183479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TransformationHelper.h 2025-09-07T06:55:56.0199731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\typeid.h 2025-09-07T06:55:56.0203816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_factory.h 2025-09-07T06:55:56.0206966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_ptr.h 2025-09-07T06:55:56.0210606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UndefinedTensorImpl.h 2025-09-07T06:55:56.0214870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UnsafeFromTH.h 2025-09-07T06:55:56.0218030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\VariableHooksInterface.h 2025-09-07T06:55:56.0221532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Variadic.h 2025-09-07T06:55:56.0225239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Vitals.h 2025-09-07T06:55:56.0232641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel.h 2025-09-07T06:55:56.0236045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel_impl.h 2025-09-07T06:55:56.0239779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction.h 2025-09-07T06:55:56.0242943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction_impl.h 2025-09-07T06:55:56.0256909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\OperatorKernel.h 2025-09-07T06:55:56.0264391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\boxing.h 2025-09-07T06:55:56.0267903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h 2025-09-07T06:55:56.0271681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\test_helpers.h 2025-09-07T06:55:56.0275124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h 2025-09-07T06:55:56.0289010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h 2025-09-07T06:55:56.0297067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\CppSignature.h 2025-09-07T06:55:56.0301009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\Dispatcher.h 2025-09-07T06:55:56.0304737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h 2025-09-07T06:55:56.0308184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\ObservedOperators.h 2025-09-07T06:55:56.0321421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorEntry.h 2025-09-07T06:55:56.0324995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorOptions.h 2025-09-07T06:55:56.0328580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h 2025-09-07T06:55:56.0336855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\adaption.h 2025-09-07T06:55:56.0340272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\infer_schema.h 2025-09-07T06:55:56.0344057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_allowlist.h 2025-09-07T06:55:56.0347609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_registration.h 2025-09-07T06:55:56.0366083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\FlushDenormal.h 2025-09-07T06:55:56.0369520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\Utils.h 2025-09-07T06:55:56.0372920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vml.h 2025-09-07T06:55:56.0379756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional.h 2025-09-07T06:55:56.0383157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_base.h 2025-09-07T06:55:56.0386732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_bfloat16.h 2025-09-07T06:55:56.0390369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\intrinsics.h 2025-09-07T06:55:56.0403514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec.h 2025-09-07T06:55:56.0407349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_base.h 2025-09-07T06:55:56.0410978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_convert.h 2025-09-07T06:55:56.0414832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_half.h 2025-09-07T06:55:56.0418134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_mask.h 2025-09-07T06:55:56.0456581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_n.h 2025-09-07T06:55:56.0459997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_quant.h 2025-09-07T06:55:56.0467574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\sve_helper.h 2025-09-07T06:55:56.0471103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h 2025-09-07T06:55:56.0474698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_common_sve.h 2025-09-07T06:55:56.0478443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_double.h 2025-09-07T06:55:56.0486319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_float.h 2025-09-07T06:55:56.0489806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_int.h 2025-09-07T06:55:56.0493259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_qint.h 2025-09-07T06:55:56.0501010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128.h 2025-09-07T06:55:56.0504571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h 2025-09-07T06:55:56.0508305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_convert.h 2025-09-07T06:55:56.0511613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h 2025-09-07T06:55:56.0525615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h 2025-09-07T06:55:56.0529608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h 2025-09-07T06:55:56.0537151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h 2025-09-07T06:55:56.0540621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h 2025-09-07T06:55:56.0544409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256.h 2025-09-07T06:55:56.0547811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h 2025-09-07T06:55:56.0562705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h 2025-09-07T06:55:56.0566942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h 2025-09-07T06:55:56.0571119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h 2025-09-07T06:55:56.0575543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_convert.h 2025-09-07T06:55:56.0579637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_double.h 2025-09-07T06:55:56.0583477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_float.h 2025-09-07T06:55:56.0587482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_half.h 2025-09-07T06:55:56.0591144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_int.h 2025-09-07T06:55:56.0594935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_mask.h 2025-09-07T06:55:56.0598541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_qint.h 2025-09-07T06:55:56.0606743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h 2025-09-07T06:55:56.0610802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h 2025-09-07T06:55:56.0614714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h 2025-09-07T06:55:56.0681722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h 2025-09-07T06:55:56.0685905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h 2025-09-07T06:55:56.0690323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h 2025-09-07T06:55:56.0694286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h 2025-09-07T06:55:56.0698260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h 2025-09-07T06:55:56.0701884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h 2025-09-07T06:55:56.0705643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h 2025-09-07T06:55:56.0720804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h 2025-09-07T06:55:56.0721492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h 2025-09-07T06:55:56.0722160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h 2025-09-07T06:55:56.0724248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h 2025-09-07T06:55:56.0732850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512.h 2025-09-07T06:55:56.0736597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h 2025-09-07T06:55:56.0740326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h 2025-09-07T06:55:56.0743810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h 2025-09-07T06:55:56.0793021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_convert.h 2025-09-07T06:55:56.0796507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_double.h 2025-09-07T06:55:56.0801395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float.h 2025-09-07T06:55:56.0805129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float8.h 2025-09-07T06:55:56.0808914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_int.h 2025-09-07T06:55:56.0812757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_mask.h 2025-09-07T06:55:56.0816393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_qint.h 2025-09-07T06:55:56.0825818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ApplyGridUtils.cuh 2025-09-07T06:55:56.0829284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\AsmUtils.cuh 2025-09-07T06:55:56.0832608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ATenCUDAGeneral.h 2025-09-07T06:55:56.0836147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Atomic.cuh 2025-09-07T06:55:56.0839592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CachingHostAllocator.h 2025-09-07T06:55:56.0847711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub-RadixSortPairs.cuh 2025-09-07T06:55:56.0851052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.cuh 2025-09-07T06:55:56.0854559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.h 2025-09-07T06:55:56.0858262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub_definitions.cuh 2025-09-07T06:55:56.0861599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAApplyUtils.cuh 2025-09-07T06:55:56.0865214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDABlas.h 2025-09-07T06:55:56.0868590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContext.h 2025-09-07T06:55:56.0872051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContextLight.h 2025-09-07T06:55:56.0875525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADataType.h 2025-09-07T06:55:56.0879662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADevice.h 2025-09-07T06:55:56.0883314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAEvent.h 2025-09-07T06:55:56.0886810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGeneratorImpl.h 2025-09-07T06:55:56.0890299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraph.h 2025-09-07T06:55:56.0893851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraphsUtils.cuh 2025-09-07T06:55:56.0897431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparse.h 2025-09-07T06:55:56.0900981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseBlas.h 2025-09-07T06:55:56.0908177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseDescriptors.h 2025-09-07T06:55:56.0911739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDATensorMethods.cuh 2025-09-07T06:55:56.0915383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAUtils.h 2025-09-07T06:55:56.0919107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\DeviceUtils.cuh 2025-09-07T06:55:56.0922657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\EmptyTensor.h 2025-09-07T06:55:56.0926151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Exceptions.h 2025-09-07T06:55:56.0929628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator.h 2025-09-07T06:55:56.0933226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator_impl.h 2025-09-07T06:55:56.0936806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\llvm_jit_strings.h 2025-09-07T06:55:56.0944188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\NumericLimits.cuh 2025-09-07T06:55:56.0948046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PeerToPeerAccess.h 2025-09-07T06:55:56.0951651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxCudaState.h 2025-09-07T06:55:56.0955665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxUtils.cuh 2025-09-07T06:55:56.0959461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PinnedMemoryAllocator.h 2025-09-07T06:55:56.0963038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ScanUtils.cuh 2025-09-07T06:55:56.0967023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Sleep.h 2025-09-07T06:55:56.0970988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ThrustAllocator.h 2025-09-07T06:55:56.0978724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\CUDAHooks.h 2025-09-07T06:55:56.0982798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\DeviceThreadHandles.h 2025-09-07T06:55:56.0986462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IndexUtils.cuh 2025-09-07T06:55:56.0990371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IntegerDivider.cuh 2025-09-07T06:55:56.0997534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\KernelUtils.h 2025-09-07T06:55:56.1000982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\LazyNVRTC.h 2025-09-07T06:55:56.1004542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\OffsetCalculator.cuh 2025-09-07T06:55:56.1008319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh 2025-09-07T06:55:56.1011872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\TensorInfo.cuh 2025-09-07T06:55:56.1015503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\UnpackRaw.cuh 2025-09-07T06:55:56.1023697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmCommon.h 2025-09-07T06:55:56.1027595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmHipblaslt.h 2025-09-07T06:55:56.1031188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmRocblas.h 2025-09-07T06:55:56.1034845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\StreamTimer.h 2025-09-07T06:55:56.1042716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\Tunable.h 2025-09-07T06:55:56.1046633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableGemm.h 2025-09-07T06:55:56.1050188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableOp.h 2025-09-07T06:55:56.1059208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\cudnn-wrapper.h 2025-09-07T06:55:56.1063049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Descriptors.h 2025-09-07T06:55:56.1066504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handle.h 2025-09-07T06:55:56.1070326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handles.h 2025-09-07T06:55:56.1073800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Types.h 2025-09-07T06:55:56.1081895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Utils.h 2025-09-07T06:55:56.1089558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\AcceleratorHooksInterface.h 2025-09-07T06:55:56.1093637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\CUDAHooksInterface.h 2025-09-07T06:55:56.1097848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\FunctionTraits.h 2025-09-07T06:55:56.1107075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HIPHooksInterface.h 2025-09-07T06:55:56.1111997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HPUHooksInterface.h 2025-09-07T06:55:56.1117190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\IPUHooksInterface.h 2025-09-07T06:55:56.1121705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MAIAHooksInterface.h 2025-09-07T06:55:56.1125630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MPSHooksInterface.h 2025-09-07T06:55:56.1130218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MTIAHooksInterface.h 2025-09-07T06:55:56.1135008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\PrivateUse1HooksInterface.h 2025-09-07T06:55:56.1139992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\XPUHooksInterface.h 2025-09-07T06:55:56.1167235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\ADInterpreters.h 2025-09-07T06:55:56.1172487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedFallback.h 2025-09-07T06:55:56.1177742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedTensorImpl.h 2025-09-07T06:55:56.1185242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchingMetaprogramming.h 2025-09-07T06:55:56.1188880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchRulesHelper.h 2025-09-07T06:55:56.1192553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\DynamicLayer.h 2025-09-07T06:55:56.1196798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\FunctionalizeInterpreter.h 2025-09-07T06:55:56.1200062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Interpreter.h 2025-09-07T06:55:56.1203580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\LegacyVmapTransforms.h 2025-09-07T06:55:56.1207059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Macros.h 2025-09-07T06:55:56.1210550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\PlumbingHelper.h 2025-09-07T06:55:56.1214247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\TensorWrapper.h 2025-09-07T06:55:56.1217757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\VmapInterpreter.h 2025-09-07T06:55:56.1229327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h 2025-09-07T06:55:56.1233137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h 2025-09-07T06:55:56.1236550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h 2025-09-07T06:55:56.1244164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h 2025-09-07T06:55:56.1253956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\metal\Context.h 2025-09-07T06:55:56.1261687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Descriptors.h 2025-09-07T06:55:56.1265263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Exceptions.h 2025-09-07T06:55:56.1268851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Handle.h 2025-09-07T06:55:56.1272143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\miopen-wrapper.h 2025-09-07T06:55:56.1279878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Types.h 2025-09-07T06:55:56.1283089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Utils.h 2025-09-07T06:55:56.1290150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\EmptyTensor.h 2025-09-07T06:55:56.1293638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\IndexKernels.h 2025-09-07T06:55:56.1296912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocator.h 2025-09-07T06:55:56.1301649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocatorInterface.h 2025-09-07T06:55:56.1309737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSDevice.h 2025-09-07T06:55:56.1313290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSEvent.h 2025-09-07T06:55:56.1316724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGeneratorImpl.h 2025-09-07T06:55:56.1320291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGuardImpl.h 2025-09-07T06:55:56.1323681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSHooks.h 2025-09-07T06:55:56.1327056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSProfiler.h 2025-09-07T06:55:56.1330493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSStream.h 2025-09-07T06:55:56.1338438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Activation.h 2025-09-07T06:55:56.1342245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AdaptivePooling.h 2025-09-07T06:55:56.1345772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AmpKernels.h 2025-09-07T06:55:56.1349242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BatchLinearAlgebra.h 2025-09-07T06:55:56.1357067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\batch_norm.h 2025-09-07T06:55:56.1360651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BinaryOps.h 2025-09-07T06:55:56.1364056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BucketizationUtils.h 2025-09-07T06:55:56.1367595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CanUse32BitIndexMath.h 2025-09-07T06:55:56.1371218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ComplexHelper.h 2025-09-07T06:55:56.1374637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessor.h 2025-09-07T06:55:56.1378243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessorCommon.h 2025-09-07T06:55:56.1381648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvolutionMM3d.h 2025-09-07T06:55:56.1385212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvUtils.h 2025-09-07T06:55:56.1388676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Copy.h 2025-09-07T06:55:56.1392049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUBlas.h 2025-09-07T06:55:56.1395426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUFallback.h 2025-09-07T06:55:56.1399308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Cross.h 2025-09-07T06:55:56.1403000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DilatedConvolutionUtils.h 2025-09-07T06:55:56.1406705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DispatchStub.h 2025-09-07T06:55:56.1410349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distance.h 2025-09-07T06:55:56.1413852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distributions.h 2025-09-07T06:55:56.1421595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DistributionTemplates.h 2025-09-07T06:55:56.1425601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\EmbeddingBag.h 2025-09-07T06:55:56.1428934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Fill.h 2025-09-07T06:55:56.1432464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ForeachUtils.h 2025-09-07T06:55:56.1436168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FractionalMaxPooling.h 2025-09-07T06:55:56.1440394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FunctionOfAMatrixUtils.h 2025-09-07T06:55:56.1444146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdagrad.h 2025-09-07T06:55:56.1447950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdam.h 2025-09-07T06:55:56.1451811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedSGD.h 2025-09-07T06:55:56.1455082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Gelu.h 2025-09-07T06:55:56.1458434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSampler.h 2025-09-07T06:55:56.1466221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSamplerUtils.h 2025-09-07T06:55:56.1469555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GroupedMMUtils.h 2025-09-07T06:55:56.1473446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\group_norm.h 2025-09-07T06:55:56.1477636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Histogram.h 2025-09-07T06:55:56.1480732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col.h 2025-09-07T06:55:56.1484221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col_shape_check.h 2025-09-07T06:55:56.1487701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexingUtils.h 2025-09-07T06:55:56.1491298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexKernel.h 2025-09-07T06:55:56.1494943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\layer_norm.h 2025-09-07T06:55:56.1498356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Lerp.h 2025-09-07T06:55:56.1502231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebra.h 2025-09-07T06:55:56.1510248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebraUtils.h 2025-09-07T06:55:56.1515355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LossMulti.h 2025-09-07T06:55:56.1520283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Math.h 2025-09-07T06:55:56.1526097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitFallThroughLists.h 2025-09-07T06:55:56.1530895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitsFallback.h 2025-09-07T06:55:56.1534436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MaxPooling.h 2025-09-07T06:55:56.1539440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonEmptyUtils.h 2025-09-07T06:55:56.1544360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonSymbolicBC.h 2025-09-07T06:55:56.1549142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Normalization.h 2025-09-07T06:55:56.1553689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Padding.h 2025-09-07T06:55:56.1562789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PixelShuffle.h 2025-09-07T06:55:56.1568029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PointwiseOps.h 2025-09-07T06:55:56.1573047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pool.h 2025-09-07T06:55:56.1577737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pow.h 2025-09-07T06:55:56.1583509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeFactories.h 2025-09-07T06:55:56.1587136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeUtils.h 2025-09-07T06:55:56.1592185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceAllOps.h 2025-09-07T06:55:56.1596974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOps.h 2025-09-07T06:55:56.1601973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOpsUtils.h 2025-09-07T06:55:56.1605498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReductionType.h 2025-09-07T06:55:56.1610469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Repeat.h 2025-09-07T06:55:56.1621524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Resize.h 2025-09-07T06:55:56.1625192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ResizeCommon.h 2025-09-07T06:55:56.1628713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RNN.h 2025-09-07T06:55:56.1632252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ScatterGatherChecks.h 2025-09-07T06:55:56.1635886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SegmentReduce.h 2025-09-07T06:55:56.1639439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SharedReduceOps.h 2025-09-07T06:55:56.1643096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SobolEngineOpsUtils.h 2025-09-07T06:55:56.1646755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Sorting.h 2025-09-07T06:55:56.1651555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SortingUtils.h 2025-09-07T06:55:56.1655249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SparseTensorUtils.h 2025-09-07T06:55:56.1658947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SpectralOpsUtils.h 2025-09-07T06:55:56.1666645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\StridedRandomAccessor.h 2025-09-07T06:55:56.1670203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexing.h 2025-09-07T06:55:56.1698042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexingUtils.h 2025-09-07T06:55:56.1701594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorCompare.h 2025-09-07T06:55:56.1705329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorConversions.h 2025-09-07T06:55:56.1709381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorDimApply.h 2025-09-07T06:55:56.1713026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorFactories.h 2025-09-07T06:55:56.1716589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIterator.h 2025-09-07T06:55:56.1720215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIteratorDynamicCasting.h 2025-09-07T06:55:56.1728626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorProperties.h 2025-09-07T06:55:56.1732301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorShape.h 2025-09-07T06:55:56.1736053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorTransformations.h 2025-09-07T06:55:56.1739666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TopKImpl.h 2025-09-07T06:55:56.1743949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TransposeType.h 2025-09-07T06:55:56.1747739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TriangularOpsUtils.h 2025-09-07T06:55:56.1751284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TypeProperties.h 2025-09-07T06:55:56.1755137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnaryOps.h 2025-09-07T06:55:56.1758441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold2d.h 2025-09-07T06:55:56.1762149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold3d.h 2025-09-07T06:55:56.1765297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnfoldBackward.h 2025-09-07T06:55:56.1768898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UpSample.h 2025-09-07T06:55:56.1772403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\verbose_wrapper.h 2025-09-07T06:55:56.1776027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\vol2col.h 2025-09-07T06:55:56.1791368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h 2025-09-07T06:55:56.1794900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h 2025-09-07T06:55:56.1798491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h 2025-09-07T06:55:56.1808007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\AtomicAddFloat.h 2025-09-07T06:55:56.1811463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\avx_mathfun.h 2025-09-07T06:55:56.1815102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CatKernel.h 2025-09-07T06:55:56.1818924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ChannelShuffleKernel.h 2025-09-07T06:55:56.1826733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CopyKernel.h 2025-09-07T06:55:56.1830136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DepthwiseConvKernel.h 2025-09-07T06:55:56.1833651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DistributionTemplates.h 2025-09-07T06:55:56.1837059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Elu.h 2025-09-07T06:55:56.1840421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Gelu.h 2025-09-07T06:55:56.1843829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\GridSamplerKernel.h 2025-09-07T06:55:56.1847292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IndexKernelUtils.h 2025-09-07T06:55:56.1850931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Intrinsics.h 2025-09-07T06:55:56.1854301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\int_mm_kernel.h 2025-09-07T06:55:56.1857602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IsContiguous.h 2025-09-07T06:55:56.1861154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogAddExp.h 2025-09-07T06:55:56.1864938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h 2025-09-07T06:55:56.1868267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Loops.h 2025-09-07T06:55:56.1871696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\MaxUnpoolKernel.h 2025-09-07T06:55:56.1875192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\mixed_data_type.h 2025-09-07T06:55:56.1878926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\moments_utils.h 2025-09-07T06:55:56.1887311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\PixelShuffleKernel.h 2025-09-07T06:55:56.1890721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Reduce.h 2025-09-07T06:55:56.1894550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h 2025-09-07T06:55:56.1898015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReduceUtils.h 2025-09-07T06:55:56.1901545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SampledAddmmKernel.h 2025-09-07T06:55:56.1905185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SerialStackImpl.h 2025-09-07T06:55:56.1909024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SoftmaxKernel.h 2025-09-07T06:55:56.1912710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SpmmReduceKernel.h 2025-09-07T06:55:56.1916262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\StackKernel.h 2025-09-07T06:55:56.1919812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h 2025-09-07T06:55:56.1927106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\utils.h 2025-09-07T06:55:56.1930646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\WeightNormKernel.h 2025-09-07T06:55:56.1934114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\zmath.h 2025-09-07T06:55:56.1942746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Activation.h 2025-09-07T06:55:56.1946416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\BinaryInternal.h 2025-09-07T06:55:56.1950089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\block_reduce.cuh 2025-09-07T06:55:56.1953586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CompositeRandomAccessor.h 2025-09-07T06:55:56.1961928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Copy.h 2025-09-07T06:55:56.1965916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDAJitLoops.cuh 2025-09-07T06:55:56.1968875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDALoops.cuh 2025-09-07T06:55:56.1972702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTPlanCache.h 2025-09-07T06:55:56.1977675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTUtils.h 2025-09-07T06:55:56.1980583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\cutlass_common.cuh 2025-09-07T06:55:56.1984244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DeviceSqrt.cuh 2025-09-07T06:55:56.1988924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Distributions.h 2025-09-07T06:55:56.1991594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DistributionTemplates.h 2025-09-07T06:55:56.1995972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh 2025-09-07T06:55:56.2000734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachFunctors.cuh 2025-09-07T06:55:56.2003338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh 2025-09-07T06:55:56.2007121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_impl.cuh 2025-09-07T06:55:56.2010551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_utils.cuh 2025-09-07T06:55:56.2014656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh 2025-09-07T06:55:56.2023539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_impl.cuh 2025-09-07T06:55:56.2026404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh 2025-09-07T06:55:56.2030264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_impl.cuh 2025-09-07T06:55:56.2033718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_utils.cuh 2025-09-07T06:55:56.2037614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.cuh 2025-09-07T06:55:56.2041323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.h 2025-09-07T06:55:56.2044823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMM.h 2025-09-07T06:55:56.2048801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMMCommon.cuh 2025-09-07T06:55:56.2052540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\im2col.cuh 2025-09-07T06:55:56.2060427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernel.h 2025-09-07T06:55:56.2064077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernelUtils.h 2025-09-07T06:55:56.2068228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\JitLoops.cuh 2025-09-07T06:55:56.2071820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\jit_utils.h 2025-09-07T06:55:56.2075471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\KernelUtils.cuh 2025-09-07T06:55:56.2078953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\LaunchUtils.h 2025-09-07T06:55:56.2082892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Loops.cuh 2025-09-07T06:55:56.2086387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Math.cuh 2025-09-07T06:55:56.2090810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MemoryAccess.cuh 2025-09-07T06:55:56.2095421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MiscUtils.h 2025-09-07T06:55:56.2099135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MultiTensorApply.cuh 2025-09-07T06:55:56.2107949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Normalization.cuh 2025-09-07T06:55:56.2111961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\PersistentSoftmax.cuh 2025-09-07T06:55:56.2115559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Pow.cuh 2025-09-07T06:55:56.2119036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Randperm.cuh 2025-09-07T06:55:56.2122572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Reduce.cuh 2025-09-07T06:55:56.2126103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ReduceOps.h 2025-09-07T06:55:56.2129810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\reduction_template.cuh 2025-09-07T06:55:56.2133393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Resize.h 2025-09-07T06:55:56.2136875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\RowwiseScaledMM.h 2025-09-07T06:55:56.2140470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScaledGroupMM.h 2025-09-07T06:55:56.2144680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanKernels.h 2025-09-07T06:55:56.2148218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanUtils.cuh 2025-09-07T06:55:56.2155814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sort.h 2025-09-07T06:55:56.2159233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sorting.h 2025-09-07T06:55:56.2162756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingCommon.cuh 2025-09-07T06:55:56.2166582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingRadixSelect.cuh 2025-09-07T06:55:56.2170241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortStable.h 2025-09-07T06:55:56.2173797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortUtils.cuh 2025-09-07T06:55:56.2177349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.cuh 2025-09-07T06:55:56.2181004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.h 2025-09-07T06:55:56.2184637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorTopK.h 2025-09-07T06:55:56.2188311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\thread_constants.h 2025-09-07T06:55:56.2200542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UniqueCub.cuh 2025-09-07T06:55:56.2204086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UpSample.cuh 2025-09-07T06:55:56.2207936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\vol2col.cuh 2025-09-07T06:55:56.2217874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_bgemm.h 2025-09-07T06:55:56.2221390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm.h 2025-09-07T06:55:56.2224732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm_template.h 2025-09-07T06:55:56.2228082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_types.h 2025-09-07T06:55:56.2239434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h 2025-09-07T06:55:56.2243119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h 2025-09-07T06:55:56.2251221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_kernels.h 2025-09-07T06:55:56.2254814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_pack.h 2025-09-07T06:55:56.2258260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h 2025-09-07T06:55:56.2269089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\Conv.h 2025-09-07T06:55:56.2272527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h 2025-09-07T06:55:56.2276382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\qconv.h 2025-09-07T06:55:56.2279762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\qlinear.h 2025-09-07T06:55:56.2286494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h 2025-09-07T06:55:56.2289989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h 2025-09-07T06:55:56.2293399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h 2025-09-07T06:55:56.2296838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h 2025-09-07T06:55:56.2300145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h 2025-09-07T06:55:56.2303555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h 2025-09-07T06:55:56.2315696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\Copy.h 2025-09-07T06:55:56.2319085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MetalShaderLibrary.h 2025-09-07T06:55:56.2322716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h 2025-09-07T06:55:56.2326295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSonomaOps.h 2025-09-07T06:55:56.2333479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphVenturaOps.h 2025-09-07T06:55:56.2337585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\OperationUtils.h 2025-09-07T06:55:56.2341035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\TensorFactory.h 2025-09-07T06:55:56.2348317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\GridSampler.h 2025-09-07T06:55:56.2353870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\Pooling.h 2025-09-07T06:55:56.2357357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\UpSample.h 2025-09-07T06:55:56.2364582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\BinaryKernel.h 2025-09-07T06:55:56.2368181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h 2025-09-07T06:55:56.2371703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h 2025-09-07T06:55:56.2379771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h 2025-09-07T06:55:56.2383334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h 2025-09-07T06:55:56.2387133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\MultiTensorApply.h 2025-09-07T06:55:56.2395664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mtia\EmptyTensor.h 2025-09-07T06:55:56.2402897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorBinaryOps.h 2025-09-07T06:55:56.2406428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorMath.h 2025-09-07T06:55:56.2410523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h 2025-09-07T06:55:56.2419515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h 2025-09-07T06:55:56.2423187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorUtils.h 2025-09-07T06:55:56.2431525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizer.h 2025-09-07T06:55:56.2435143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizerBase.h 2025-09-07T06:55:56.2438605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\ConvUtils.h 2025-09-07T06:55:56.2446921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\Copy.h 2025-09-07T06:55:56.2450526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\FakeQuantAffine.h 2025-09-07T06:55:56.2454087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\IndexKernel.h 2025-09-07T06:55:56.2457518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\library.h 2025-09-07T06:55:56.2460821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\PackedParams.h 2025-09-07T06:55:56.2467712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\ACLUtils.h 2025-09-07T06:55:56.2471039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\BinaryOps.h 2025-09-07T06:55:56.2474507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\conv_serialization.h 2025-09-07T06:55:56.2477983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h 2025-09-07T06:55:56.2486977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h 2025-09-07T06:55:56.2490600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\init_qnnpack.h 2025-09-07T06:55:56.2493935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\OnednnUtils.h 2025-09-07T06:55:56.2497294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qconv.h 2025-09-07T06:55:56.2500713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag.h 2025-09-07T06:55:56.2504559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h 2025-09-07T06:55:56.2508015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qlinear.h 2025-09-07T06:55:56.2511486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h 2025-09-07T06:55:56.2515548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantizedOps.h 2025-09-07T06:55:56.2519018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantUtils.h 2025-09-07T06:55:56.2523502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\RuyUtils.h 2025-09-07T06:55:56.2527031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h 2025-09-07T06:55:56.2534721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cudnn\utils.h 2025-09-07T06:55:56.2543411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\attention.h 2025-09-07T06:55:56.2547719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils.h 2025-09-07T06:55:56.2551512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils_cpp.h 2025-09-07T06:55:56.2565451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\sdp_utils.h 2025-09-07T06:55:56.2573435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h 2025-09-07T06:55:56.2576043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h 2025-09-07T06:55:56.2584883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h 2025-09-07T06:55:56.2588024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h 2025-09-07T06:55:56.2591630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h 2025-09-07T06:55:56.2602086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h 2025-09-07T06:55:56.2605520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h 2025-09-07T06:55:56.2613859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h 2025-09-07T06:55:56.2617129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h 2025-09-07T06:55:56.2621703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h 2025-09-07T06:55:56.2637522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h 2025-09-07T06:55:56.2641421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h 2025-09-07T06:55:56.2646033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h 2025-09-07T06:55:56.2651004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h 2025-09-07T06:55:56.2662132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h 2025-09-07T06:55:56.2666182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h 2025-09-07T06:55:56.2670443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h 2025-09-07T06:55:56.2679650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h 2025-09-07T06:55:56.2683562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h 2025-09-07T06:55:56.2687250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h 2025-09-07T06:55:56.2697873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h 2025-09-07T06:55:56.2702082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h 2025-09-07T06:55:56.2706873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h 2025-09-07T06:55:56.2710524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h 2025-09-07T06:55:56.2718028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h 2025-09-07T06:55:56.2722146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h 2025-09-07T06:55:56.2729564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h 2025-09-07T06:55:56.2739027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\aotriton_adapter.h 2025-09-07T06:55:56.2742647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\aotriton_versions.h 2025-09-07T06:55:56.2746216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\gemm_kernel_utils.h 2025-09-07T06:55:56.2760486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h 2025-09-07T06:55:56.2767517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h 2025-09-07T06:55:56.2776100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\Factory.h 2025-09-07T06:55:56.2810317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamsHash.h 2025-09-07T06:55:56.2814053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamUtils.h 2025-09-07T06:55:56.2823040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs.h 2025-09-07T06:55:56.2826697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute.h 2025-09-07T06:55:56.2830316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.2833737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_native.h 2025-09-07T06:55:56.2841193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_ops.h 2025-09-07T06:55:56.2845033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.2848669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cpu_dispatch.h 2025-09-07T06:55:56.2852170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cuda_dispatch.h 2025-09-07T06:55:56.2855683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_native.h 2025-09-07T06:55:56.2859128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_ops.h 2025-09-07T06:55:56.2862437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos.h 2025-09-07T06:55:56.2865866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh.h 2025-09-07T06:55:56.2869611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.2872988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cpu_dispatch.h 2025-09-07T06:55:56.2876999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cuda_dispatch.h 2025-09-07T06:55:56.2880681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta.h 2025-09-07T06:55:56.2884214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta_dispatch.h 2025-09-07T06:55:56.2887909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_native.h 2025-09-07T06:55:56.2891600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_ops.h 2025-09-07T06:55:56.2895406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.2905852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cpu_dispatch.h 2025-09-07T06:55:56.2909555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cuda_dispatch.h 2025-09-07T06:55:56.2913235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta.h 2025-09-07T06:55:56.2916748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta_dispatch.h 2025-09-07T06:55:56.2920314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_native.h 2025-09-07T06:55:56.2923961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_ops.h 2025-09-07T06:55:56.2928063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d.h 2025-09-07T06:55:56.2931624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.2936192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.2947263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_native.h 2025-09-07T06:55:56.2950967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h 2025-09-07T06:55:56.2955042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d.h 2025-09-07T06:55:56.2958951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.2962724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h 2025-09-07T06:55:56.2966500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h 2025-09-07T06:55:56.2970444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_native.h 2025-09-07T06:55:56.2974344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h 2025-09-07T06:55:56.2985447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d.h 2025-09-07T06:55:56.2989093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h 2025-09-07T06:55:56.2993136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-09-07T06:55:56.2996987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-09-07T06:55:56.3000662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h 2025-09-07T06:55:56.3004846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h 2025-09-07T06:55:56.3008671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.3012355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h 2025-09-07T06:55:56.3016120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h 2025-09-07T06:55:56.3019910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_native.h 2025-09-07T06:55:56.3023609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h 2025-09-07T06:55:56.3041876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d.h 2025-09-07T06:55:56.3045790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.3050271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_native.h 2025-09-07T06:55:56.3054134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_ops.h 2025-09-07T06:55:56.3057825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d.h 2025-09-07T06:55:56.3062525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward.h 2025-09-07T06:55:56.3066874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.3070731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h 2025-09-07T06:55:56.3074517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h 2025-09-07T06:55:56.3078387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h 2025-09-07T06:55:56.3082360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h 2025-09-07T06:55:56.3094231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h 2025-09-07T06:55:56.3098103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h 2025-09-07T06:55:56.3102466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.3106386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h 2025-09-07T06:55:56.3110968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h 2025-09-07T06:55:56.3114742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta.h 2025-09-07T06:55:56.3119054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h 2025-09-07T06:55:56.3130444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_native.h 2025-09-07T06:55:56.3134375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_ops.h 2025-09-07T06:55:56.3138136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d.h 2025-09-07T06:55:56.3142695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward.h 2025-09-07T06:55:56.3146949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.3159276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h 2025-09-07T06:55:56.3163207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h 2025-09-07T06:55:56.3167636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h 2025-09-07T06:55:56.3171582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h 2025-09-07T06:55:56.3175353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h 2025-09-07T06:55:56.3179638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h 2025-09-07T06:55:56.3184099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.3187989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h 2025-09-07T06:55:56.3191863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h 2025-09-07T06:55:56.3195545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta.h 2025-09-07T06:55:56.3199536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h 2025-09-07T06:55:56.3204435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_native.h 2025-09-07T06:55:56.3208715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_ops.h 2025-09-07T06:55:56.3212455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add.h 2025-09-07T06:55:56.3216043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm.h 2025-09-07T06:55:56.3219693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cpu_dispatch.h 2025-09-07T06:55:56.3223220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cuda_dispatch.h 2025-09-07T06:55:56.3226871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_meta_dispatch.h 2025-09-07T06:55:56.3230456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_native.h 2025-09-07T06:55:56.3234033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_ops.h 2025-09-07T06:55:56.3237850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv.h 2025-09-07T06:55:56.3241491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.3245002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cpu_dispatch.h 2025-09-07T06:55:56.3249096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cuda_dispatch.h 2025-09-07T06:55:56.3261055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta.h 2025-09-07T06:55:56.3264778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta_dispatch.h 2025-09-07T06:55:56.3268607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_native.h 2025-09-07T06:55:56.3272562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_ops.h 2025-09-07T06:55:56.3276192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul.h 2025-09-07T06:55:56.3279893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.3283323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cpu_dispatch.h 2025-09-07T06:55:56.3287000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cuda_dispatch.h 2025-09-07T06:55:56.3291157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta.h 2025-09-07T06:55:56.3294816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta_dispatch.h 2025-09-07T06:55:56.3298580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_native.h 2025-09-07T06:55:56.3302531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_ops.h 2025-09-07T06:55:56.3306404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm.h 2025-09-07T06:55:56.3310161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.3313830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cpu_dispatch.h 2025-09-07T06:55:56.3317757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cuda_dispatch.h 2025-09-07T06:55:56.3321278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta.h 2025-09-07T06:55:56.3324854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta_dispatch.h 2025-09-07T06:55:56.3328819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_native.h 2025-09-07T06:55:56.3332925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_ops.h 2025-09-07T06:55:56.3336471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv.h 2025-09-07T06:55:56.3340124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.3352685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cpu_dispatch.h 2025-09-07T06:55:56.3356401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cuda_dispatch.h 2025-09-07T06:55:56.3360132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta.h 2025-09-07T06:55:56.3363700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta_dispatch.h 2025-09-07T06:55:56.3367617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_native.h 2025-09-07T06:55:56.3371339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_ops.h 2025-09-07T06:55:56.3375243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr.h 2025-09-07T06:55:56.3378931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.3382493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cpu_dispatch.h 2025-09-07T06:55:56.3386237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cuda_dispatch.h 2025-09-07T06:55:56.3389796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_native.h 2025-09-07T06:55:56.3393413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_ops.h 2025-09-07T06:55:56.3397493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.3401329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.3405191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cpu_dispatch.h 2025-09-07T06:55:56.3409761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cuda_dispatch.h 2025-09-07T06:55:56.3413614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta.h 2025-09-07T06:55:56.3417339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta_dispatch.h 2025-09-07T06:55:56.3420740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_native.h 2025-09-07T06:55:56.3424635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_ops.h 2025-09-07T06:55:56.3428490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint.h 2025-09-07T06:55:56.3432324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.3435985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_native.h 2025-09-07T06:55:56.3439658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_ops.h 2025-09-07T06:55:56.3444101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator.h 2025-09-07T06:55:56.3448046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward.h 2025-09-07T06:55:56.3452440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.3456278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_native.h 2025-09-07T06:55:56.3460157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_ops.h 2025-09-07T06:55:56.3464170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.5591218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_native.h 2025-09-07T06:55:56.5595198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_ops.h 2025-09-07T06:55:56.5598948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias.h 2025-09-07T06:55:56.5602733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.5606509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy.h 2025-09-07T06:55:56.5610541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.5614256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.5618614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_native.h 2025-09-07T06:55:56.5622568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_ops.h 2025-09-07T06:55:56.5627565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_native.h 2025-09-07T06:55:56.5630333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_ops.h 2025-09-07T06:55:56.5634064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as.h 2025-09-07T06:55:56.5638976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5641757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_native.h 2025-09-07T06:55:56.5645517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_ops.h 2025-09-07T06:55:56.5649118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors.h 2025-09-07T06:55:56.5653123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5657475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_native.h 2025-09-07T06:55:56.5662131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_ops.h 2025-09-07T06:55:56.5665126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to.h 2025-09-07T06:55:56.5668770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5673422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_native.h 2025-09-07T06:55:56.5676134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_ops.h 2025-09-07T06:55:56.5680068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all.h 2025-09-07T06:55:56.5683552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose.h 2025-09-07T06:55:56.5687475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.5691425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_native.h 2025-09-07T06:55:56.5695120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_ops.h 2025-09-07T06:55:56.5699166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.5703239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.5707235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5712056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cpu_dispatch.h 2025-09-07T06:55:56.5715659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cuda_dispatch.h 2025-09-07T06:55:56.5719183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta.h 2025-09-07T06:55:56.5722722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta_dispatch.h 2025-09-07T06:55:56.5726496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_native.h 2025-09-07T06:55:56.5730179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_ops.h 2025-09-07T06:55:56.5733544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout.h 2025-09-07T06:55:56.5737765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5741597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_native.h 2025-09-07T06:55:56.5758511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_ops.h 2025-09-07T06:55:56.5762064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax.h 2025-09-07T06:55:56.5765883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.5769402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cpu_dispatch.h 2025-09-07T06:55:56.5772986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cuda_dispatch.h 2025-09-07T06:55:56.5776501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta.h 2025-09-07T06:55:56.5780159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta_dispatch.h 2025-09-07T06:55:56.5784539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_native.h 2025-09-07T06:55:56.5788078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_ops.h 2025-09-07T06:55:56.5791435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin.h 2025-09-07T06:55:56.5794845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax.h 2025-09-07T06:55:56.5798751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.5802334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cpu_dispatch.h 2025-09-07T06:55:56.5806308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cuda_dispatch.h 2025-09-07T06:55:56.5809853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta.h 2025-09-07T06:55:56.5813669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta_dispatch.h 2025-09-07T06:55:56.5817308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_native.h 2025-09-07T06:55:56.5820937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_ops.h 2025-09-07T06:55:56.5824897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.5828466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cpu_dispatch.h 2025-09-07T06:55:56.5832226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cuda_dispatch.h 2025-09-07T06:55:56.5835778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta.h 2025-09-07T06:55:56.5839587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta_dispatch.h 2025-09-07T06:55:56.5843167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_native.h 2025-09-07T06:55:56.5846638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_ops.h 2025-09-07T06:55:56.5850031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and.h 2025-09-07T06:55:56.5854249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5857104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_native.h 2025-09-07T06:55:56.5860562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_ops.h 2025-09-07T06:55:56.5863998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle.h 2025-09-07T06:55:56.5867816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cpu_dispatch.h 2025-09-07T06:55:56.5871728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cuda_dispatch.h 2025-09-07T06:55:56.5875273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_native.h 2025-09-07T06:55:56.5878799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_ops.h 2025-09-07T06:55:56.5882350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any.h 2025-09-07T06:55:56.5885959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.5889556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.5893123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5896884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cpu_dispatch.h 2025-09-07T06:55:56.5900458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cuda_dispatch.h 2025-09-07T06:55:56.5918031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta.h 2025-09-07T06:55:56.5921424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta_dispatch.h 2025-09-07T06:55:56.5924959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_native.h 2025-09-07T06:55:56.5928403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_ops.h 2025-09-07T06:55:56.5931678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange.h 2025-09-07T06:55:56.5935125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.5938884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cpu_dispatch.h 2025-09-07T06:55:56.5942920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cuda_dispatch.h 2025-09-07T06:55:56.5946594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_meta_dispatch.h 2025-09-07T06:55:56.5950285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_native.h 2025-09-07T06:55:56.5954259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_ops.h 2025-09-07T06:55:56.5958033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos.h 2025-09-07T06:55:56.5961421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh.h 2025-09-07T06:55:56.5965131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5969018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_native.h 2025-09-07T06:55:56.5972565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_ops.h 2025-09-07T06:55:56.5976323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5979904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_native.h 2025-09-07T06:55:56.5983551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_ops.h 2025-09-07T06:55:56.5987800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin.h 2025-09-07T06:55:56.5991311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh.h 2025-09-07T06:55:56.5994883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.5998959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_native.h 2025-09-07T06:55:56.6002405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_ops.h 2025-09-07T06:55:56.6006127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6009658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_native.h 2025-09-07T06:55:56.6049112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_ops.h 2025-09-07T06:55:56.6052808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan.h 2025-09-07T06:55:56.6056113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2.h 2025-09-07T06:55:56.6059758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6063594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_native.h 2025-09-07T06:55:56.6067832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_ops.h 2025-09-07T06:55:56.6071716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh.h 2025-09-07T06:55:56.6075221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6078690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_native.h 2025-09-07T06:55:56.6082840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_ops.h 2025-09-07T06:55:56.6086675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6090328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_native.h 2025-09-07T06:55:56.6094278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_ops.h 2025-09-07T06:55:56.6098269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax.h 2025-09-07T06:55:56.6101654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6105577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cpu_dispatch.h 2025-09-07T06:55:56.6109312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cuda_dispatch.h 2025-09-07T06:55:56.6113052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta.h 2025-09-07T06:55:56.6117232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta_dispatch.h 2025-09-07T06:55:56.6121127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_native.h 2025-09-07T06:55:56.6128810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_ops.h 2025-09-07T06:55:56.6132954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin.h 2025-09-07T06:55:56.6136866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6140685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cpu_dispatch.h 2025-09-07T06:55:56.6144848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cuda_dispatch.h 2025-09-07T06:55:56.6148363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta.h 2025-09-07T06:55:56.6152195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta_dispatch.h 2025-09-07T06:55:56.6156172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_native.h 2025-09-07T06:55:56.6159838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_ops.h 2025-09-07T06:55:56.6163834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort.h 2025-09-07T06:55:56.6167557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6171382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_native.h 2025-09-07T06:55:56.6175258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_ops.h 2025-09-07T06:55:56.6188565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere.h 2025-09-07T06:55:56.6189252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6189926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_native.h 2025-09-07T06:55:56.6192337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_ops.h 2025-09-07T06:55:56.6196198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin.h 2025-09-07T06:55:56.6201828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh.h 2025-09-07T06:55:56.6206954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6209240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cpu_dispatch.h 2025-09-07T06:55:56.6213161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cuda_dispatch.h 2025-09-07T06:55:56.6218111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta.h 2025-09-07T06:55:56.6221576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta_dispatch.h 2025-09-07T06:55:56.6225528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_native.h 2025-09-07T06:55:56.6229160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_ops.h 2025-09-07T06:55:56.6233708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6237369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cpu_dispatch.h 2025-09-07T06:55:56.6241190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cuda_dispatch.h 2025-09-07T06:55:56.6246220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta.h 2025-09-07T06:55:56.6250574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta_dispatch.h 2025-09-07T06:55:56.6255045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_native.h 2025-09-07T06:55:56.6259101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_ops.h 2025-09-07T06:55:56.6262959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided.h 2025-09-07T06:55:56.6266931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6270704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy.h 2025-09-07T06:55:56.6274437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6279351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6283819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_native.h 2025-09-07T06:55:56.6294951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_ops.h 2025-09-07T06:55:56.6298635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cpu_dispatch.h 2025-09-07T06:55:56.6302776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cuda_dispatch.h 2025-09-07T06:55:56.6306777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_meta_dispatch.h 2025-09-07T06:55:56.6310448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_native.h 2025-09-07T06:55:56.6314112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_ops.h 2025-09-07T06:55:56.6317706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter.h 2025-09-07T06:55:56.6321961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6325318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6329126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_native.h 2025-09-07T06:55:56.6333558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_ops.h 2025-09-07T06:55:56.6336832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan.h 2025-09-07T06:55:56.6350330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2.h 2025-09-07T06:55:56.6354316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6357704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cpu_dispatch.h 2025-09-07T06:55:56.6361522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cuda_dispatch.h 2025-09-07T06:55:56.6365061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta.h 2025-09-07T06:55:56.6369624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta_dispatch.h 2025-09-07T06:55:56.6373629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_native.h 2025-09-07T06:55:56.6378279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_ops.h 2025-09-07T06:55:56.6381843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh.h 2025-09-07T06:55:56.6385666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6389255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cpu_dispatch.h 2025-09-07T06:55:56.6392936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cuda_dispatch.h 2025-09-07T06:55:56.6396701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta.h 2025-09-07T06:55:56.6400324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta_dispatch.h 2025-09-07T06:55:56.6404121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_native.h 2025-09-07T06:55:56.6407740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_ops.h 2025-09-07T06:55:56.6411830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6415127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cpu_dispatch.h 2025-09-07T06:55:56.6418838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cuda_dispatch.h 2025-09-07T06:55:56.6422407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta.h 2025-09-07T06:55:56.6426166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta_dispatch.h 2025-09-07T06:55:56.6430426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_native.h 2025-09-07T06:55:56.6433971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_ops.h 2025-09-07T06:55:56.6437357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d.h 2025-09-07T06:55:56.6441029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6444756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_native.h 2025-09-07T06:55:56.6448530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_ops.h 2025-09-07T06:55:56.6452173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d.h 2025-09-07T06:55:56.6456005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6459956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_native.h 2025-09-07T06:55:56.6464096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_ops.h 2025-09-07T06:55:56.6467767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d.h 2025-09-07T06:55:56.6471689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6475321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_native.h 2025-09-07T06:55:56.6478935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_ops.h 2025-09-07T06:55:56.6482600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d.h 2025-09-07T06:55:56.6487054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6491012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6494648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_native.h 2025-09-07T06:55:56.6498284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_ops.h 2025-09-07T06:55:56.6502193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d.h 2025-09-07T06:55:56.6506173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward.h 2025-09-07T06:55:56.6510158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6514131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h 2025-09-07T06:55:56.6517728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h 2025-09-07T06:55:56.6521416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta.h 2025-09-07T06:55:56.6525218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h 2025-09-07T06:55:56.6528867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_native.h 2025-09-07T06:55:56.6532524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_ops.h 2025-09-07T06:55:56.6536732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6540292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h 2025-09-07T06:55:56.6544105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h 2025-09-07T06:55:56.6547852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta.h 2025-09-07T06:55:56.6551593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h 2025-09-07T06:55:56.6555297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_native.h 2025-09-07T06:55:56.6560165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_ops.h 2025-09-07T06:55:56.6564064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d.h 2025-09-07T06:55:56.6568151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward.h 2025-09-07T06:55:56.6572177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6575922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h 2025-09-07T06:55:56.6579637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h 2025-09-07T06:55:56.6584391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta.h 2025-09-07T06:55:56.6588472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h 2025-09-07T06:55:56.6592548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_native.h 2025-09-07T06:55:56.6609711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_ops.h 2025-09-07T06:55:56.6613728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6617402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h 2025-09-07T06:55:56.6621280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h 2025-09-07T06:55:56.6625183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta.h 2025-09-07T06:55:56.6629432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h 2025-09-07T06:55:56.6633563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_native.h 2025-09-07T06:55:56.6637331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_ops.h 2025-09-07T06:55:56.6641056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm.h 2025-09-07T06:55:56.6645058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6648490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cpu_dispatch.h 2025-09-07T06:55:56.6652647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cuda_dispatch.h 2025-09-07T06:55:56.6656640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta.h 2025-09-07T06:55:56.6661491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta_dispatch.h 2025-09-07T06:55:56.6664554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_native.h 2025-09-07T06:55:56.6668132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_ops.h 2025-09-07T06:55:56.6671780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window.h 2025-09-07T06:55:56.6675773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6680041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_native.h 2025-09-07T06:55:56.6683731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_ops.h 2025-09-07T06:55:56.6687482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm.h 2025-09-07T06:55:56.6691568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward.h 2025-09-07T06:55:56.6695434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h 2025-09-07T06:55:56.6699564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h 2025-09-07T06:55:56.6703936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt.h 2025-09-07T06:55:56.6708169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6713111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h 2025-09-07T06:55:56.6716908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_native.h 2025-09-07T06:55:56.6721205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h 2025-09-07T06:55:56.6725305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_native.h 2025-09-07T06:55:56.6729042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_ops.h 2025-09-07T06:55:56.6732799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce.h 2025-09-07T06:55:56.6739382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6743582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h 2025-09-07T06:55:56.6747386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_native.h 2025-09-07T06:55:56.6752947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h 2025-09-07T06:55:56.6756842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6760593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt.h 2025-09-07T06:55:56.6766201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h 2025-09-07T06:55:56.6770105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_native.h 2025-09-07T06:55:56.6774270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_ops.h 2025-09-07T06:55:56.6778077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats.h 2025-09-07T06:55:56.6782010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6785933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h 2025-09-07T06:55:56.6789850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_native.h 2025-09-07T06:55:56.6793699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_ops.h 2025-09-07T06:55:56.6799447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h 2025-09-07T06:55:56.6803577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6807991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h 2025-09-07T06:55:56.6811846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h 2025-09-07T06:55:56.6815875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h 2025-09-07T06:55:56.6819585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_native.h 2025-09-07T06:55:56.6823251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_ops.h 2025-09-07T06:55:56.6827059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats.h 2025-09-07T06:55:56.6831054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6834821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h 2025-09-07T06:55:56.6839712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_native.h 2025-09-07T06:55:56.6844299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_ops.h 2025-09-07T06:55:56.6848197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats.h 2025-09-07T06:55:56.6852307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6855921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h 2025-09-07T06:55:56.6859705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h 2025-09-07T06:55:56.6864667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_native.h 2025-09-07T06:55:56.6868448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_ops.h 2025-09-07T06:55:56.6872092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli.h 2025-09-07T06:55:56.6876054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.6879587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6883272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cpu_dispatch.h 2025-09-07T06:55:56.6887176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cuda_dispatch.h 2025-09-07T06:55:56.6907565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_meta_dispatch.h 2025-09-07T06:55:56.6911219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_native.h 2025-09-07T06:55:56.6914944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_ops.h 2025-09-07T06:55:56.6918987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear.h 2025-09-07T06:55:56.6923349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.6927049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_native.h 2025-09-07T06:55:56.6930708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_ops.h 2025-09-07T06:55:56.6934759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy.h 2025-09-07T06:55:56.6938519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward.h 2025-09-07T06:55:56.6942327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h 2025-09-07T06:55:56.6946168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h 2025-09-07T06:55:56.6949842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_native.h 2025-09-07T06:55:56.6953561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h 2025-09-07T06:55:56.6957449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h 2025-09-07T06:55:56.6961357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h 2025-09-07T06:55:56.6965268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_native.h 2025-09-07T06:55:56.6969036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_ops.h 2025-09-07T06:55:56.6973285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits.h 2025-09-07T06:55:56.6977496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6981408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h 2025-09-07T06:55:56.6985238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h 2025-09-07T06:55:56.6988861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount.h 2025-09-07T06:55:56.6992374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.6996359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cpu_dispatch.h 2025-09-07T06:55:56.7000055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cuda_dispatch.h 2025-09-07T06:55:56.7003674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_native.h 2025-09-07T06:55:56.7007676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_ops.h 2025-09-07T06:55:56.7011465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial.h 2025-09-07T06:55:56.7016523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7019936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cpu_dispatch.h 2025-09-07T06:55:56.7024092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cuda_dispatch.h 2025-09-07T06:55:56.7028179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_native.h 2025-09-07T06:55:56.7031608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_ops.h 2025-09-07T06:55:56.7035986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and.h 2025-09-07T06:55:56.7039957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7043718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7047734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h 2025-09-07T06:55:56.7051738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h 2025-09-07T06:55:56.7055426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta.h 2025-09-07T06:55:56.7059325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta_dispatch.h 2025-09-07T06:55:56.7063277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_native.h 2025-09-07T06:55:56.7067730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_ops.h 2025-09-07T06:55:56.7071454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift.h 2025-09-07T06:55:56.7076058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7080019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7083664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h 2025-09-07T06:55:56.7087733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h 2025-09-07T06:55:56.7091701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta.h 2025-09-07T06:55:56.7095596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h 2025-09-07T06:55:56.7099472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_native.h 2025-09-07T06:55:56.7103306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_ops.h 2025-09-07T06:55:56.7107433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not.h 2025-09-07T06:55:56.7145422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7149377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h 2025-09-07T06:55:56.7153095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h 2025-09-07T06:55:56.7157626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta.h 2025-09-07T06:55:56.7161743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta_dispatch.h 2025-09-07T06:55:56.7166034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_native.h 2025-09-07T06:55:56.7169873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_ops.h 2025-09-07T06:55:56.7173872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or.h 2025-09-07T06:55:56.7178140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7181989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7186364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h 2025-09-07T06:55:56.7190547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h 2025-09-07T06:55:56.7194515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta.h 2025-09-07T06:55:56.7198451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta_dispatch.h 2025-09-07T06:55:56.7202598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_native.h 2025-09-07T06:55:56.7206978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_ops.h 2025-09-07T06:55:56.7210523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift.h 2025-09-07T06:55:56.7253756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7257667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7261320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h 2025-09-07T06:55:56.7265700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h 2025-09-07T06:55:56.7269536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta.h 2025-09-07T06:55:56.7273406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h 2025-09-07T06:55:56.7277164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_native.h 2025-09-07T06:55:56.7280893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_ops.h 2025-09-07T06:55:56.7284531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor.h 2025-09-07T06:55:56.7288741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7292793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7296924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h 2025-09-07T06:55:56.7300636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h 2025-09-07T06:55:56.7304887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta.h 2025-09-07T06:55:56.7308704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h 2025-09-07T06:55:56.7312541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_native.h 2025-09-07T06:55:56.7316258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_ops.h 2025-09-07T06:55:56.7319996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window.h 2025-09-07T06:55:56.7323869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7327551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_native.h 2025-09-07T06:55:56.7331229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_ops.h 2025-09-07T06:55:56.7334957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag.h 2025-09-07T06:55:56.7339056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7342563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_native.h 2025-09-07T06:55:56.7346664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_ops.h 2025-09-07T06:55:56.7350354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm.h 2025-09-07T06:55:56.7353854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7357212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cpu_dispatch.h 2025-09-07T06:55:56.7361117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cuda_dispatch.h 2025-09-07T06:55:56.7365000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta.h 2025-09-07T06:55:56.7368328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta_dispatch.h 2025-09-07T06:55:56.7372131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_native.h 2025-09-07T06:55:56.7375534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_ops.h 2025-09-07T06:55:56.7378843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors.h 2025-09-07T06:55:56.7382392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7386258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_native.h 2025-09-07T06:55:56.7389781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_ops.h 2025-09-07T06:55:56.7393453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to.h 2025-09-07T06:55:56.7397347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7401686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_native.h 2025-09-07T06:55:56.7405553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_ops.h 2025-09-07T06:55:56.7409315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize.h 2025-09-07T06:55:56.7412998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7416656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cpu_dispatch.h 2025-09-07T06:55:56.7420316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cuda_dispatch.h 2025-09-07T06:55:56.7423984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_native.h 2025-09-07T06:55:56.7427924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_ops.h 2025-09-07T06:55:56.7431484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast.h 2025-09-07T06:55:56.7435033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7438723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_native.h 2025-09-07T06:55:56.7449235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_ops.h 2025-09-07T06:55:56.7449799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod.h 2025-09-07T06:55:56.7450517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7453412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_native.h 2025-09-07T06:55:56.7457019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_ops.h 2025-09-07T06:55:56.7461014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat.h 2025-09-07T06:55:56.7464898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7468634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7472361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cpu_dispatch.h 2025-09-07T06:55:56.7475946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cuda_dispatch.h 2025-09-07T06:55:56.7479600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta.h 2025-09-07T06:55:56.7483112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta_dispatch.h 2025-09-07T06:55:56.7486525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_native.h 2025-09-07T06:55:56.7490092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_ops.h 2025-09-07T06:55:56.7493455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy.h 2025-09-07T06:55:56.7497613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7501758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cpu_dispatch.h 2025-09-07T06:55:56.7506660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cuda_dispatch.h 2025-09-07T06:55:56.7510268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_meta_dispatch.h 2025-09-07T06:55:56.7525079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_native.h 2025-09-07T06:55:56.7529339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_ops.h 2025-09-07T06:55:56.7532504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices.h 2025-09-07T06:55:56.7536840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7540443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy.h 2025-09-07T06:55:56.7544495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7548525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7552248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_native.h 2025-09-07T06:55:56.7556177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_ops.h 2025-09-07T06:55:56.7560516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_native.h 2025-09-07T06:55:56.7564351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_ops.h 2025-09-07T06:55:56.7567893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist.h 2025-09-07T06:55:56.7572059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7575986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_native.h 2025-09-07T06:55:56.7579565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_ops.h 2025-09-07T06:55:56.7583306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil.h 2025-09-07T06:55:56.7587181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7590738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cpu_dispatch.h 2025-09-07T06:55:56.7595326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cuda_dispatch.h 2025-09-07T06:55:56.7599403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta.h 2025-09-07T06:55:56.7603575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta_dispatch.h 2025-09-07T06:55:56.7607270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_native.h 2025-09-07T06:55:56.7610886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_ops.h 2025-09-07T06:55:56.7614271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu.h 2025-09-07T06:55:56.7618617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7622053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_native.h 2025-09-07T06:55:56.7626070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_ops.h 2025-09-07T06:55:56.7629842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul.h 2025-09-07T06:55:56.7633721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7637707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_native.h 2025-09-07T06:55:56.7641475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_ops.h 2025-09-07T06:55:56.7645120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf.h 2025-09-07T06:55:56.7649027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7652711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_native.h 2025-09-07T06:55:56.7656996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_ops.h 2025-09-07T06:55:56.7660551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle.h 2025-09-07T06:55:56.7664767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7668817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h 2025-09-07T06:55:56.7672699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h 2025-09-07T06:55:56.7676861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_native.h 2025-09-07T06:55:56.7680971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_ops.h 2025-09-07T06:55:56.7705539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky.h 2025-09-07T06:55:56.7706127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cpu_dispatch.h 2025-09-07T06:55:56.7706743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cuda_dispatch.h 2025-09-07T06:55:56.7707487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse.h 2025-09-07T06:55:56.7708130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h 2025-09-07T06:55:56.7708803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h 2025-09-07T06:55:56.7709585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_native.h 2025-09-07T06:55:56.7713703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_ops.h 2025-09-07T06:55:56.7717662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_native.h 2025-09-07T06:55:56.7721126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_ops.h 2025-09-07T06:55:56.7725008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve.h 2025-09-07T06:55:56.7729878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7733425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_native.h 2025-09-07T06:55:56.7737614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_ops.h 2025-09-07T06:55:56.7741468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized.h 2025-09-07T06:55:56.7745429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7749093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_native.h 2025-09-07T06:55:56.7753066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_ops.h 2025-09-07T06:55:56.7756894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk.h 2025-09-07T06:55:56.7760543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7764247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_native.h 2025-09-07T06:55:56.7767957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_ops.h 2025-09-07T06:55:56.7771452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp.h 2025-09-07T06:55:56.7775066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7778796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cpu_dispatch.h 2025-09-07T06:55:56.7782475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cuda_dispatch.h 2025-09-07T06:55:56.7786211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max.h 2025-09-07T06:55:56.7790583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7794260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cpu_dispatch.h 2025-09-07T06:55:56.7798109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cuda_dispatch.h 2025-09-07T06:55:56.7801704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta.h 2025-09-07T06:55:56.7805644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta_dispatch.h 2025-09-07T06:55:56.7809318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_native.h 2025-09-07T06:55:56.7814222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_ops.h 2025-09-07T06:55:56.7817745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta.h 2025-09-07T06:55:56.7821400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta_dispatch.h 2025-09-07T06:55:56.7825131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min.h 2025-09-07T06:55:56.7829158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7834191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cpu_dispatch.h 2025-09-07T06:55:56.7837976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cuda_dispatch.h 2025-09-07T06:55:56.7842131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta.h 2025-09-07T06:55:56.7847415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta_dispatch.h 2025-09-07T06:55:56.7852484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_native.h 2025-09-07T06:55:56.7857456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_ops.h 2025-09-07T06:55:56.7862415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_native.h 2025-09-07T06:55:56.7867429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_ops.h 2025-09-07T06:55:56.7871334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip.h 2025-09-07T06:55:56.7876289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7881172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_native.h 2025-09-07T06:55:56.7886202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_ops.h 2025-09-07T06:55:56.7890770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone.h 2025-09-07T06:55:56.7894478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7899348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_native.h 2025-09-07T06:55:56.7904362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_ops.h 2025-09-07T06:55:56.7909367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce.h 2025-09-07T06:55:56.7912994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7918078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_native.h 2025-09-07T06:55:56.7922819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_ops.h 2025-09-07T06:55:56.7927701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im.h 2025-09-07T06:55:56.7932532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cpu_dispatch.h 2025-09-07T06:55:56.7936340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cuda_dispatch.h 2025-09-07T06:55:56.7941312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_native.h 2025-09-07T06:55:56.7946759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_ops.h 2025-09-07T06:55:56.7951400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack.h 2025-09-07T06:55:56.7956821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.7960531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_native.h 2025-09-07T06:55:56.7965813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_ops.h 2025-09-07T06:55:56.7970678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices.h 2025-09-07T06:55:56.7975540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7980666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy.h 2025-09-07T06:55:56.7986148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.7989838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.7994944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_native.h 2025-09-07T06:55:56.8000064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_ops.h 2025-09-07T06:55:56.8005669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_native.h 2025-09-07T06:55:56.8010626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_ops.h 2025-09-07T06:55:56.8015775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations.h 2025-09-07T06:55:56.8019729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8025032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_native.h 2025-09-07T06:55:56.8030727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_ops.h 2025-09-07T06:55:56.8035624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex.h 2025-09-07T06:55:56.8040410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8045214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cpu_dispatch.h 2025-09-07T06:55:56.8050700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cuda_dispatch.h 2025-09-07T06:55:56.8054498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_native.h 2025-09-07T06:55:56.8059508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_ops.h 2025-09-07T06:55:56.8064642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat.h 2025-09-07T06:55:56.8069927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate.h 2025-09-07T06:55:56.8075052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8078862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_native.h 2025-09-07T06:55:56.8084301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_ops.h 2025-09-07T06:55:56.8089699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8094532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_native.h 2025-09-07T06:55:56.8099530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_ops.h 2025-09-07T06:55:56.8104707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj.h 2025-09-07T06:55:56.8108315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8113186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_native.h 2025-09-07T06:55:56.8118156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_ops.h 2025-09-07T06:55:56.8123974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical.h 2025-09-07T06:55:56.8129245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8134951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8141183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cpu_dispatch.h 2025-09-07T06:55:56.8145919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cuda_dispatch.h 2025-09-07T06:55:56.8149682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_native.h 2025-09-07T06:55:56.8154691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_ops.h 2025-09-07T06:55:56.8160225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd.h 2025-09-07T06:55:56.8165197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8170026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_native.h 2025-09-07T06:55:56.8175161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_ops.h 2025-09-07T06:55:56.8180943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous.h 2025-09-07T06:55:56.8200816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8203296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_native.h 2025-09-07T06:55:56.8207696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_ops.h 2025-09-07T06:55:56.8212779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d.h 2025-09-07T06:55:56.8215031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8219145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_native.h 2025-09-07T06:55:56.8222269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_ops.h 2025-09-07T06:55:56.8225990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d.h 2025-09-07T06:55:56.8230163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8235427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_native.h 2025-09-07T06:55:56.8239265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_ops.h 2025-09-07T06:55:56.8242812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d.h 2025-09-07T06:55:56.8247106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8251012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_native.h 2025-09-07T06:55:56.8254666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_ops.h 2025-09-07T06:55:56.8258244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution.h 2025-09-07T06:55:56.8263462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward.h 2025-09-07T06:55:56.8266893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8271094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h 2025-09-07T06:55:56.8308902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_native.h 2025-09-07T06:55:56.8312864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_ops.h 2025-09-07T06:55:56.8316641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable.h 2025-09-07T06:55:56.8320602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8325730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_native.h 2025-09-07T06:55:56.8329773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_ops.h 2025-09-07T06:55:56.8334602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8338367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_native.h 2025-09-07T06:55:56.8342318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_ops.h 2025-09-07T06:55:56.8346308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable.h 2025-09-07T06:55:56.8350317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8354269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_native.h 2025-09-07T06:55:56.8358027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_ops.h 2025-09-07T06:55:56.8361755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d.h 2025-09-07T06:55:56.8365464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8369054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h 2025-09-07T06:55:56.8372792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_native.h 2025-09-07T06:55:56.8376386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_ops.h 2025-09-07T06:55:56.8380071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc.h 2025-09-07T06:55:56.8383511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward.h 2025-09-07T06:55:56.8388074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8392230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_native.h 2025-09-07T06:55:56.8396119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_ops.h 2025-09-07T06:55:56.8400002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8403774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_native.h 2025-09-07T06:55:56.8407327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_ops.h 2025-09-07T06:55:56.8411028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d.h 2025-09-07T06:55:56.8414922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8419083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_native.h 2025-09-07T06:55:56.8423762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_ops.h 2025-09-07T06:55:56.8427562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d.h 2025-09-07T06:55:56.8431638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8435315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_native.h 2025-09-07T06:55:56.8439950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_ops.h 2025-09-07T06:55:56.8443786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d.h 2025-09-07T06:55:56.8448105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8452677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_native.h 2025-09-07T06:55:56.8457296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_ops.h 2025-09-07T06:55:56.8461861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy.h 2025-09-07T06:55:56.8465794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign.h 2025-09-07T06:55:56.8469969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.8474042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8477815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cpu_dispatch.h 2025-09-07T06:55:56.8482214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cuda_dispatch.h 2025-09-07T06:55:56.8486739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta.h 2025-09-07T06:55:56.8490607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta_dispatch.h 2025-09-07T06:55:56.8494542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_native.h 2025-09-07T06:55:56.8498151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_ops.h 2025-09-07T06:55:56.8502821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.8507164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8510738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_meta_dispatch.h 2025-09-07T06:55:56.8514753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_native.h 2025-09-07T06:55:56.8518539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_ops.h 2025-09-07T06:55:56.8521947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse.h 2025-09-07T06:55:56.8526401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8530215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h 2025-09-07T06:55:56.8533949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_native.h 2025-09-07T06:55:56.8537851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h 2025-09-07T06:55:56.8542422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef.h 2025-09-07T06:55:56.8546094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8549880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_native.h 2025-09-07T06:55:56.8553590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_ops.h 2025-09-07T06:55:56.8557193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos.h 2025-09-07T06:55:56.8560737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh.h 2025-09-07T06:55:56.8564175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.8567722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cpu_dispatch.h 2025-09-07T06:55:56.8571450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cuda_dispatch.h 2025-09-07T06:55:56.8575167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta.h 2025-09-07T06:55:56.8578728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta_dispatch.h 2025-09-07T06:55:56.8582597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_native.h 2025-09-07T06:55:56.8586208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_ops.h 2025-09-07T06:55:56.8591346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss.h 2025-09-07T06:55:56.8595380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8599319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_native.h 2025-09-07T06:55:56.8603439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_ops.h 2025-09-07T06:55:56.8607493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity.h 2025-09-07T06:55:56.8611749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8615980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_native.h 2025-09-07T06:55:56.8619993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_ops.h 2025-09-07T06:55:56.8624052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.8628104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cpu_dispatch.h 2025-09-07T06:55:56.8631906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cuda_dispatch.h 2025-09-07T06:55:56.8635580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta.h 2025-09-07T06:55:56.8639273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta_dispatch.h 2025-09-07T06:55:56.8643142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_native.h 2025-09-07T06:55:56.8646629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_ops.h 2025-09-07T06:55:56.8650275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero.h 2025-09-07T06:55:56.8654192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8658204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h 2025-09-07T06:55:56.8661891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h 2025-09-07T06:55:56.8665774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_native.h 2025-09-07T06:55:56.8669526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_ops.h 2025-09-07T06:55:56.8673241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov.h 2025-09-07T06:55:56.8676790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8680601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_native.h 2025-09-07T06:55:56.8684232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_ops.h 2025-09-07T06:55:56.8687711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross.h 2025-09-07T06:55:56.8691388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8695097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss.h 2025-09-07T06:55:56.8699326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8703242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_native.h 2025-09-07T06:55:56.8707411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_ops.h 2025-09-07T06:55:56.8711138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_native.h 2025-09-07T06:55:56.8715365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_ops.h 2025-09-07T06:55:56.8719188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices.h 2025-09-07T06:55:56.8723045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8726708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy.h 2025-09-07T06:55:56.8730805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.8734784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8738800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_native.h 2025-09-07T06:55:56.8742560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_ops.h 2025-09-07T06:55:56.8746431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_native.h 2025-09-07T06:55:56.8750168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_ops.h 2025-09-07T06:55:56.8754580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss.h 2025-09-07T06:55:56.8759377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8763646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_native.h 2025-09-07T06:55:56.8767969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_ops.h 2025-09-07T06:55:56.8772081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator.h 2025-09-07T06:55:56.8792399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h 2025-09-07T06:55:56.8796714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8801081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h 2025-09-07T06:55:56.8805536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h 2025-09-07T06:55:56.8810174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h 2025-09-07T06:55:56.8814552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8818495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h 2025-09-07T06:55:56.8822697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h 2025-09-07T06:55:56.8827023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h 2025-09-07T06:55:56.8831326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm.h 2025-09-07T06:55:56.8835514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward.h 2025-09-07T06:55:56.8839465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8843490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h 2025-09-07T06:55:56.8847634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h 2025-09-07T06:55:56.8851713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h 2025-09-07T06:55:56.8855576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h 2025-09-07T06:55:56.8859526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_native.h 2025-09-07T06:55:56.8863532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_ops.h 2025-09-07T06:55:56.8867422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution.h 2025-09-07T06:55:56.8871224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu.h 2025-09-07T06:55:56.8875415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8879440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h 2025-09-07T06:55:56.8883299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h 2025-09-07T06:55:56.8887085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h 2025-09-07T06:55:56.8890953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h 2025-09-07T06:55:56.8895025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_native.h 2025-09-07T06:55:56.8898928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_ops.h 2025-09-07T06:55:56.8902974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu.h 2025-09-07T06:55:56.8907101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8911010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h 2025-09-07T06:55:56.8915576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_native.h 2025-09-07T06:55:56.8919549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_ops.h 2025-09-07T06:55:56.8923433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose.h 2025-09-07T06:55:56.8928267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8932136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h 2025-09-07T06:55:56.8935854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_native.h 2025-09-07T06:55:56.8939620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h 2025-09-07T06:55:56.8943321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler.h 2025-09-07T06:55:56.8948225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward.h 2025-09-07T06:55:56.8952642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8956462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h 2025-09-07T06:55:56.8960374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h 2025-09-07T06:55:56.8964403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h 2025-09-07T06:55:56.8968335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.8972327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h 2025-09-07T06:55:56.8976087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_native.h 2025-09-07T06:55:56.8979920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_ops.h 2025-09-07T06:55:56.8983846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable.h 2025-09-07T06:55:56.8987719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.8991451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_native.h 2025-09-07T06:55:56.8995343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_ops.h 2025-09-07T06:55:56.8999121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax.h 2025-09-07T06:55:56.9002636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward.h 2025-09-07T06:55:56.9006494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9010203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_native.h 2025-09-07T06:55:56.9014088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_ops.h 2025-09-07T06:55:56.9018068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9022481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9026341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_native.h 2025-09-07T06:55:56.9030224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_ops.h 2025-09-07T06:55:56.9033971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin.h 2025-09-07T06:55:56.9037430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9041201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9044788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_native.h 2025-09-07T06:55:56.9049065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_ops.h 2025-09-07T06:55:56.9053438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod.h 2025-09-07T06:55:56.9056891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward.h 2025-09-07T06:55:56.9061026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9065241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_native.h 2025-09-07T06:55:56.9069612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_ops.h 2025-09-07T06:55:56.9073804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9078306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9082313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cpu_dispatch.h 2025-09-07T06:55:56.9086165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cuda_dispatch.h 2025-09-07T06:55:56.9090672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta.h 2025-09-07T06:55:56.9094806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta_dispatch.h 2025-09-07T06:55:56.9098906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_native.h 2025-09-07T06:55:56.9103270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_ops.h 2025-09-07T06:55:56.9107069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum.h 2025-09-07T06:55:56.9111113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9114817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9118580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cpu_dispatch.h 2025-09-07T06:55:56.9122520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cuda_dispatch.h 2025-09-07T06:55:56.9126330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta.h 2025-09-07T06:55:56.9130647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta_dispatch.h 2025-09-07T06:55:56.9134681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_native.h 2025-09-07T06:55:56.9138488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_ops.h 2025-09-07T06:55:56.9142238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid.h 2025-09-07T06:55:56.9146584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9150207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_native.h 2025-09-07T06:55:56.9154098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_ops.h 2025-09-07T06:55:56.9158279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data.h 2025-09-07T06:55:56.9168241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9173000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_native.h 2025-09-07T06:55:56.9176829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_ops.h 2025-09-07T06:55:56.9180154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad.h 2025-09-07T06:55:56.9184816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9188830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_native.h 2025-09-07T06:55:56.9197654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_ops.h 2025-09-07T06:55:56.9198203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim.h 2025-09-07T06:55:56.9203513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9207615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_native.h 2025-09-07T06:55:56.9211761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_ops.h 2025-09-07T06:55:56.9215827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize.h 2025-09-07T06:55:56.9219428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9223127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cpu_dispatch.h 2025-09-07T06:55:56.9227046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cuda_dispatch.h 2025-09-07T06:55:56.9230802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_native.h 2025-09-07T06:55:56.9234918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_ops.h 2025-09-07T06:55:56.9238680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det.h 2025-09-07T06:55:56.9242187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach.h 2025-09-07T06:55:56.9246667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9250562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy.h 2025-09-07T06:55:56.9254728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9258592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9262556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_native.h 2025-09-07T06:55:56.9266461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_ops.h 2025-09-07T06:55:56.9270181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_native.h 2025-09-07T06:55:56.9273921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_ops.h 2025-09-07T06:55:56.9280232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9283054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_native.h 2025-09-07T06:55:56.9286635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_ops.h 2025-09-07T06:55:56.9290527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag.h 2025-09-07T06:55:56.9293764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat.h 2025-09-07T06:55:56.9297354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9300979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_native.h 2025-09-07T06:55:56.9305203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_ops.h 2025-09-07T06:55:56.9308980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal.h 2025-09-07T06:55:56.9313608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward.h 2025-09-07T06:55:56.9317304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9321271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_native.h 2025-09-07T06:55:56.9325128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_ops.h 2025-09-07T06:55:56.9329036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9332890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9336748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy.h 2025-09-07T06:55:56.9340885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9345676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9349390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_native.h 2025-09-07T06:55:56.9512015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_ops.h 2025-09-07T06:55:56.9515398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_native.h 2025-09-07T06:55:56.9519851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_ops.h 2025-09-07T06:55:56.9523863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter.h 2025-09-07T06:55:56.9527982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9532200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9536101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_native.h 2025-09-07T06:55:56.9539996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_ops.h 2025-09-07T06:55:56.9544221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9548207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed.h 2025-09-07T06:55:56.9552427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9556401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9560402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_native.h 2025-09-07T06:55:56.9564560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_ops.h 2025-09-07T06:55:56.9568350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_native.h 2025-09-07T06:55:56.9572120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_ops.h 2025-09-07T06:55:56.9575736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff.h 2025-09-07T06:55:56.9579408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9583343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_native.h 2025-09-07T06:55:56.9587248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_ops.h 2025-09-07T06:55:56.9590876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma.h 2025-09-07T06:55:56.9594760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9598468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cpu_dispatch.h 2025-09-07T06:55:56.9602823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cuda_dispatch.h 2025-09-07T06:55:56.9606665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta.h 2025-09-07T06:55:56.9610452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta_dispatch.h 2025-09-07T06:55:56.9614344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_native.h 2025-09-07T06:55:56.9618129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_ops.h 2025-09-07T06:55:56.9622416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist.h 2025-09-07T06:55:56.9626614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9630395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_native.h 2025-09-07T06:55:56.9634410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_ops.h 2025-09-07T06:55:56.9638062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div.h 2025-09-07T06:55:56.9642031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide.h 2025-09-07T06:55:56.9646284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9650407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_native.h 2025-09-07T06:55:56.9654134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_ops.h 2025-09-07T06:55:56.9658347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9662170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9665926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cpu_dispatch.h 2025-09-07T06:55:56.9669672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cuda_dispatch.h 2025-09-07T06:55:56.9673499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta.h 2025-09-07T06:55:56.9677047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta_dispatch.h 2025-09-07T06:55:56.9681173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_native.h 2025-09-07T06:55:56.9684917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_ops.h 2025-09-07T06:55:56.9688492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot.h 2025-09-07T06:55:56.9692164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9696300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cpu_dispatch.h 2025-09-07T06:55:56.9699945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cuda_dispatch.h 2025-09-07T06:55:56.9703690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_native.h 2025-09-07T06:55:56.9707712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_ops.h 2025-09-07T06:55:56.9711324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout.h 2025-09-07T06:55:56.9715011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9718980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_native.h 2025-09-07T06:55:56.9722649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_ops.h 2025-09-07T06:55:56.9726379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit.h 2025-09-07T06:55:56.9730409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9733978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_native.h 2025-09-07T06:55:56.9738102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_ops.h 2025-09-07T06:55:56.9742155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack.h 2025-09-07T06:55:56.9746241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9749927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_native.h 2025-09-07T06:55:56.9753525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_ops.h 2025-09-07T06:55:56.9757653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum.h 2025-09-07T06:55:56.9761057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9765090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_native.h 2025-09-07T06:55:56.9768642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_ops.h 2025-09-07T06:55:56.9772188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu.h 2025-09-07T06:55:56.9775788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward.h 2025-09-07T06:55:56.9779679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9783337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cpu_dispatch.h 2025-09-07T06:55:56.9787105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cuda_dispatch.h 2025-09-07T06:55:56.9791181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta.h 2025-09-07T06:55:56.9795280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta_dispatch.h 2025-09-07T06:55:56.9799169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_native.h 2025-09-07T06:55:56.9803242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_ops.h 2025-09-07T06:55:56.9844825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:56.9845074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cpu_dispatch.h 2025-09-07T06:55:56.9845328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cuda_dispatch.h 2025-09-07T06:55:56.9846149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta.h 2025-09-07T06:55:56.9846403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta_dispatch.h 2025-09-07T06:55:56.9846619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_native.h 2025-09-07T06:55:56.9846834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_ops.h 2025-09-07T06:55:56.9847038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding.h 2025-09-07T06:55:56.9847272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward.h 2025-09-07T06:55:56.9847655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9848517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_native.h 2025-09-07T06:55:56.9852823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_ops.h 2025-09-07T06:55:56.9856883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag.h 2025-09-07T06:55:56.9864130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9868060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_native.h 2025-09-07T06:55:56.9871794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_ops.h 2025-09-07T06:55:56.9875655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9880136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward.h 2025-09-07T06:55:56.9884297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9888232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h 2025-09-07T06:55:56.9895072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h 2025-09-07T06:55:56.9899033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_native.h 2025-09-07T06:55:56.9902772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_ops.h 2025-09-07T06:55:56.9906719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_native.h 2025-09-07T06:55:56.9910495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_ops.h 2025-09-07T06:55:56.9914581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm.h 2025-09-07T06:55:56.9918472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9922176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h 2025-09-07T06:55:56.9926240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h 2025-09-07T06:55:56.9930011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h 2025-09-07T06:55:56.9933985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_native.h 2025-09-07T06:55:56.9937899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_ops.h 2025-09-07T06:55:56.9941740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward.h 2025-09-07T06:55:56.9945838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9949657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_native.h 2025-09-07T06:55:56.9953453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_ops.h 2025-09-07T06:55:56.9957731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty.h 2025-09-07T06:55:56.9961227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9965165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:56.9968832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cpu_dispatch.h 2025-09-07T06:55:56.9972798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cuda_dispatch.h 2025-09-07T06:55:56.9976477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like.h 2025-09-07T06:55:56.9980748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:56.9984419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_native.h 2025-09-07T06:55:56.9988171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_ops.h 2025-09-07T06:55:56.9991985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_meta_dispatch.h 2025-09-07T06:55:56.9995721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_native.h 2025-09-07T06:55:56.9999497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_ops.h 2025-09-07T06:55:57.0003297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted.h 2025-09-07T06:55:57.0007138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0010836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_native.h 2025-09-07T06:55:57.0014607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_ops.h 2025-09-07T06:55:57.0018597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized.h 2025-09-07T06:55:57.0022498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0026492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_native.h 2025-09-07T06:55:57.0030559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_ops.h 2025-09-07T06:55:57.0034368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided.h 2025-09-07T06:55:57.0038474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0042299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cpu_dispatch.h 2025-09-07T06:55:57.0046317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cuda_dispatch.h 2025-09-07T06:55:57.0050203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_meta_dispatch.h 2025-09-07T06:55:57.0053983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_native.h 2025-09-07T06:55:57.0057738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_ops.h 2025-09-07T06:55:57.0061362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq.h 2025-09-07T06:55:57.0065239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal.h 2025-09-07T06:55:57.0068736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cpu_dispatch.h 2025-09-07T06:55:57.0072472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cuda_dispatch.h 2025-09-07T06:55:57.0076389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_native.h 2025-09-07T06:55:57.0080199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_ops.h 2025-09-07T06:55:57.0084368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.0088293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cpu_dispatch.h 2025-09-07T06:55:57.0091976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cuda_dispatch.h 2025-09-07T06:55:57.0095782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta.h 2025-09-07T06:55:57.0099596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta_dispatch.h 2025-09-07T06:55:57.0102996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_native.h 2025-09-07T06:55:57.0107243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_ops.h 2025-09-07T06:55:57.0111062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf.h 2025-09-07T06:55:57.0114432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc.h 2025-09-07T06:55:57.0118291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.0140540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cpu_dispatch.h 2025-09-07T06:55:57.0144421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cuda_dispatch.h 2025-09-07T06:55:57.0148366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta.h 2025-09-07T06:55:57.0151955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta_dispatch.h 2025-09-07T06:55:57.0156904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_native.h 2025-09-07T06:55:57.0159596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_ops.h 2025-09-07T06:55:57.0163132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv.h 2025-09-07T06:55:57.0166953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.0170692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cpu_dispatch.h 2025-09-07T06:55:57.0174734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cuda_dispatch.h 2025-09-07T06:55:57.0179661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta.h 2025-09-07T06:55:57.0182962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta_dispatch.h 2025-09-07T06:55:57.0187717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_native.h 2025-09-07T06:55:57.0192542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_ops.h 2025-09-07T06:55:57.0197337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.0200638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cpu_dispatch.h 2025-09-07T06:55:57.0204625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cuda_dispatch.h 2025-09-07T06:55:57.0208292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta.h 2025-09-07T06:55:57.0212216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta_dispatch.h 2025-09-07T06:55:57.0215744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_native.h 2025-09-07T06:55:57.0220107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_ops.h 2025-09-07T06:55:57.0223511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp.h 2025-09-07T06:55:57.0227015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2.h 2025-09-07T06:55:57.0230788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.0234294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cpu_dispatch.h 2025-09-07T06:55:57.0238067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cuda_dispatch.h 2025-09-07T06:55:57.0242339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta.h 2025-09-07T06:55:57.0246001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta_dispatch.h 2025-09-07T06:55:57.0251378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_native.h 2025-09-07T06:55:57.0253701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_ops.h 2025-09-07T06:55:57.0257618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand.h 2025-09-07T06:55:57.0261053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as.h 2025-09-07T06:55:57.0265074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0268915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_native.h 2025-09-07T06:55:57.0272591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_ops.h 2025-09-07T06:55:57.0276450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0280231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy.h 2025-09-07T06:55:57.0284329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.0288131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0291882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_native.h 2025-09-07T06:55:57.0295765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_ops.h 2025-09-07T06:55:57.0299475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_native.h 2025-09-07T06:55:57.0303089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_ops.h 2025-09-07T06:55:57.0307033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1.h 2025-09-07T06:55:57.0311023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.0314724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cpu_dispatch.h 2025-09-07T06:55:57.0318615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cuda_dispatch.h 2025-09-07T06:55:57.0322154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta.h 2025-09-07T06:55:57.0326304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta_dispatch.h 2025-09-07T06:55:57.0330078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_native.h 2025-09-07T06:55:57.0334298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_ops.h 2025-09-07T06:55:57.0338134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential.h 2025-09-07T06:55:57.0341977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0345833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cpu_dispatch.h 2025-09-07T06:55:57.0349503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cuda_dispatch.h 2025-09-07T06:55:57.0353201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_meta_dispatch.h 2025-09-07T06:55:57.0356892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_native.h 2025-09-07T06:55:57.0361197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_ops.h 2025-09-07T06:55:57.0365243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.0368840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cpu_dispatch.h 2025-09-07T06:55:57.0372517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cuda_dispatch.h 2025-09-07T06:55:57.0376152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta.h 2025-09-07T06:55:57.0379615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta_dispatch.h 2025-09-07T06:55:57.0383480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_native.h 2025-09-07T06:55:57.0386992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_ops.h 2025-09-07T06:55:57.0390346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye.h 2025-09-07T06:55:57.0394048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0397621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cpu_dispatch.h 2025-09-07T06:55:57.0401202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cuda_dispatch.h 2025-09-07T06:55:57.0404803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_meta_dispatch.h 2025-09-07T06:55:57.0408361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_native.h 2025-09-07T06:55:57.0412050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_ops.h 2025-09-07T06:55:57.0415541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine.h 2025-09-07T06:55:57.0420046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h 2025-09-07T06:55:57.0424289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h 2025-09-07T06:55:57.0428420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0432293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h 2025-09-07T06:55:57.0436188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h 2025-09-07T06:55:57.0440391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0444243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h 2025-09-07T06:55:57.0448385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h 2025-09-07T06:55:57.0452245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h 2025-09-07T06:55:57.0456275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h 2025-09-07T06:55:57.0460277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0464108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h 2025-09-07T06:55:57.0468453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h 2025-09-07T06:55:57.0472878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h 2025-09-07T06:55:57.0476465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h 2025-09-07T06:55:57.0480858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h 2025-09-07T06:55:57.0485266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0490322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h 2025-09-07T06:55:57.0493510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h 2025-09-07T06:55:57.0498709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0503118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h 2025-09-07T06:55:57.0507636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h 2025-09-07T06:55:57.0511132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h 2025-09-07T06:55:57.0515676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h 2025-09-07T06:55:57.0519964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0524906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h 2025-09-07T06:55:57.0528590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h 2025-09-07T06:55:57.0532633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h 2025-09-07T06:55:57.0572475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0577484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h 2025-09-07T06:55:57.0582558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0585644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h 2025-09-07T06:55:57.0590085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h 2025-09-07T06:55:57.0594507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h 2025-09-07T06:55:57.0599495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h 2025-09-07T06:55:57.0602517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight.h 2025-09-07T06:55:57.0606774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0611289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h 2025-09-07T06:55:57.0614963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0619752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h 2025-09-07T06:55:57.0623943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h 2025-09-07T06:55:57.0628620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h 2025-09-07T06:55:57.0631831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h 2025-09-07T06:55:57.0636107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h 2025-09-07T06:55:57.0640629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0645894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h 2025-09-07T06:55:57.0649146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h 2025-09-07T06:55:57.0653437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h 2025-09-07T06:55:57.0657843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0663435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h 2025-09-07T06:55:57.0665964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h 2025-09-07T06:55:57.0669984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h 2025-09-07T06:55:57.0674936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0677944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h 2025-09-07T06:55:57.0682263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h 2025-09-07T06:55:57.0686550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout.h 2025-09-07T06:55:57.0690550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0694386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_native.h 2025-09-07T06:55:57.0698346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_ops.h 2025-09-07T06:55:57.0703484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout.h 2025-09-07T06:55:57.0706814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0712167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_native.h 2025-09-07T06:55:57.0717082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_ops.h 2025-09-07T06:55:57.0720866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft.h 2025-09-07T06:55:57.0724509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2.h 2025-09-07T06:55:57.0728642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0732301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_native.h 2025-09-07T06:55:57.0736136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_ops.h 2025-09-07T06:55:57.0739984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq.h 2025-09-07T06:55:57.0744198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.0748508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_native.h 2025-09-07T06:55:57.0752299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_ops.h 2025-09-07T06:55:57.0756087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn.h 2025-09-07T06:55:57.0759634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0763589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_native.h 2025-09-07T06:55:57.0767501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_ops.h 2025-09-07T06:55:57.0771418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift.h 2025-09-07T06:55:57.0775328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0779157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_native.h 2025-09-07T06:55:57.0783006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_ops.h 2025-09-07T06:55:57.0787548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0791251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_native.h 2025-09-07T06:55:57.0795067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_ops.h 2025-09-07T06:55:57.0798674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft.h 2025-09-07T06:55:57.0802250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2.h 2025-09-07T06:55:57.0806061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0809695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_native.h 2025-09-07T06:55:57.0813473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_ops.h 2025-09-07T06:55:57.0817208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn.h 2025-09-07T06:55:57.0821094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0825731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_native.h 2025-09-07T06:55:57.0829949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_ops.h 2025-09-07T06:55:57.0833865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0837534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_native.h 2025-09-07T06:55:57.0841959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_ops.h 2025-09-07T06:55:57.0845709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft.h 2025-09-07T06:55:57.0849142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2.h 2025-09-07T06:55:57.0852877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0856475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_native.h 2025-09-07T06:55:57.0860312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_ops.h 2025-09-07T06:55:57.0864190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn.h 2025-09-07T06:55:57.0868098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0871780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_native.h 2025-09-07T06:55:57.0876013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_ops.h 2025-09-07T06:55:57.0879799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift.h 2025-09-07T06:55:57.0883974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0887813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_native.h 2025-09-07T06:55:57.0891556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_ops.h 2025-09-07T06:55:57.0896080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0899838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_native.h 2025-09-07T06:55:57.0903521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_ops.h 2025-09-07T06:55:57.0907521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft.h 2025-09-07T06:55:57.0911160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2.h 2025-09-07T06:55:57.0914906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0918753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_native.h 2025-09-07T06:55:57.0922452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_ops.h 2025-09-07T06:55:57.0926598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn.h 2025-09-07T06:55:57.0930513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0934602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_native.h 2025-09-07T06:55:57.0938323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_ops.h 2025-09-07T06:55:57.0942193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0946144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_native.h 2025-09-07T06:55:57.0949870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_ops.h 2025-09-07T06:55:57.0953527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft.h 2025-09-07T06:55:57.0957130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2.h 2025-09-07T06:55:57.0960894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0965166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_native.h 2025-09-07T06:55:57.0969554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_ops.h 2025-09-07T06:55:57.0973435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn.h 2025-09-07T06:55:57.0977499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0981234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_native.h 2025-09-07T06:55:57.0985019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_ops.h 2025-09-07T06:55:57.0988895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.0992547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_native.h 2025-09-07T06:55:57.0996229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_ops.h 2025-09-07T06:55:57.0999884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft.h 2025-09-07T06:55:57.1003399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2.h 2025-09-07T06:55:57.1007487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1011148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_native.h 2025-09-07T06:55:57.1014789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_ops.h 2025-09-07T06:55:57.1018526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq.h 2025-09-07T06:55:57.1022547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1026791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_native.h 2025-09-07T06:55:57.1031395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_ops.h 2025-09-07T06:55:57.1034681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn.h 2025-09-07T06:55:57.1038955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1043394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_native.h 2025-09-07T06:55:57.1047697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_ops.h 2025-09-07T06:55:57.1051153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1054894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_native.h 2025-09-07T06:55:57.1058550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_ops.h 2025-09-07T06:55:57.1062994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill.h 2025-09-07T06:55:57.1066934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1071469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cpu_dispatch.h 2025-09-07T06:55:57.1074628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cuda_dispatch.h 2025-09-07T06:55:57.1078766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal.h 2025-09-07T06:55:57.1083155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1086643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_native.h 2025-09-07T06:55:57.1090623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_ops.h 2025-09-07T06:55:57.1094561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_meta_dispatch.h 2025-09-07T06:55:57.1098150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_native.h 2025-09-07T06:55:57.1102251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_ops.h 2025-09-07T06:55:57.1106040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix.h 2025-09-07T06:55:57.1109562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1113732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_native.h 2025-09-07T06:55:57.1117501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_ops.h 2025-09-07T06:55:57.1121788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten.h 2025-09-07T06:55:57.1125536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1129285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors.h 2025-09-07T06:55:57.1133121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1136957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_native.h 2025-09-07T06:55:57.1140806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_ops.h 2025-09-07T06:55:57.1144679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_native.h 2025-09-07T06:55:57.1149050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_ops.h 2025-09-07T06:55:57.1152896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip.h 2025-09-07T06:55:57.1157712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr.h 2025-09-07T06:55:57.1160592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1164445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_native.h 2025-09-07T06:55:57.1167968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_ops.h 2025-09-07T06:55:57.1171746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud.h 2025-09-07T06:55:57.1175691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1179262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_native.h 2025-09-07T06:55:57.1183307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_ops.h 2025-09-07T06:55:57.1187391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1191007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cpu_dispatch.h 2025-09-07T06:55:57.1195552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cuda_dispatch.h 2025-09-07T06:55:57.1199884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_native.h 2025-09-07T06:55:57.1204148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_ops.h 2025-09-07T06:55:57.1207179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power.h 2025-09-07T06:55:57.1211848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1215867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_native.h 2025-09-07T06:55:57.1219505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_ops.h 2025-09-07T06:55:57.1223367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor.h 2025-09-07T06:55:57.1227175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1230878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cpu_dispatch.h 2025-09-07T06:55:57.1234713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cuda_dispatch.h 2025-09-07T06:55:57.1238870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide.h 2025-09-07T06:55:57.1242942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1246718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cpu_dispatch.h 2025-09-07T06:55:57.1250626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cuda_dispatch.h 2025-09-07T06:55:57.1254465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_meta_dispatch.h 2025-09-07T06:55:57.1258292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_native.h 2025-09-07T06:55:57.1262169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_ops.h 2025-09-07T06:55:57.1266445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta.h 2025-09-07T06:55:57.1270284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta_dispatch.h 2025-09-07T06:55:57.1274122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_native.h 2025-09-07T06:55:57.1277992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_ops.h 2025-09-07T06:55:57.1281711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax.h 2025-09-07T06:55:57.1285571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1289894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cpu_dispatch.h 2025-09-07T06:55:57.1293582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cuda_dispatch.h 2025-09-07T06:55:57.1297439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta.h 2025-09-07T06:55:57.1301111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta_dispatch.h 2025-09-07T06:55:57.1304933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_native.h 2025-09-07T06:55:57.1309637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_ops.h 2025-09-07T06:55:57.1313054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin.h 2025-09-07T06:55:57.1316757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1320382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cpu_dispatch.h 2025-09-07T06:55:57.1324228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cuda_dispatch.h 2025-09-07T06:55:57.1328072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta.h 2025-09-07T06:55:57.1349166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta_dispatch.h 2025-09-07T06:55:57.1352900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_native.h 2025-09-07T06:55:57.1356491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_ops.h 2025-09-07T06:55:57.1359967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod.h 2025-09-07T06:55:57.1363866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1367829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1371817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cpu_dispatch.h 2025-09-07T06:55:57.1375696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cuda_dispatch.h 2025-09-07T06:55:57.1379504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta.h 2025-09-07T06:55:57.1383112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta_dispatch.h 2025-09-07T06:55:57.1387080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_native.h 2025-09-07T06:55:57.1390637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_ops.h 2025-09-07T06:55:57.1393929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac.h 2025-09-07T06:55:57.1398183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d.h 2025-09-07T06:55:57.1401764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward.h 2025-09-07T06:55:57.1405868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1409560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h 2025-09-07T06:55:57.1413337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h 2025-09-07T06:55:57.1417569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h 2025-09-07T06:55:57.1421549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h 2025-09-07T06:55:57.1425738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h 2025-09-07T06:55:57.1429565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h 2025-09-07T06:55:57.1433615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1437601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h 2025-09-07T06:55:57.1441542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h 2025-09-07T06:55:57.1445550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta.h 2025-09-07T06:55:57.1449490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h 2025-09-07T06:55:57.1453261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_native.h 2025-09-07T06:55:57.1457050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_ops.h 2025-09-07T06:55:57.1460942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d.h 2025-09-07T06:55:57.1464741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward.h 2025-09-07T06:55:57.1468614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h 2025-09-07T06:55:57.1472679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h 2025-09-07T06:55:57.1476513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h 2025-09-07T06:55:57.1480383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h 2025-09-07T06:55:57.1484914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1488953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h 2025-09-07T06:55:57.1493059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h 2025-09-07T06:55:57.1496714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta.h 2025-09-07T06:55:57.1500584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h 2025-09-07T06:55:57.1504844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_native.h 2025-09-07T06:55:57.1508975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_ops.h 2025-09-07T06:55:57.1512761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1516541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cpu_dispatch.h 2025-09-07T06:55:57.1520206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cuda_dispatch.h 2025-09-07T06:55:57.1524519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta.h 2025-09-07T06:55:57.1528311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta_dispatch.h 2025-09-07T06:55:57.1532287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_native.h 2025-09-07T06:55:57.1535978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_ops.h 2025-09-07T06:55:57.1539406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp.h 2025-09-07T06:55:57.1543612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1547741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cpu_dispatch.h 2025-09-07T06:55:57.1551476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cuda_dispatch.h 2025-09-07T06:55:57.1555253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_native.h 2025-09-07T06:55:57.1559024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_ops.h 2025-09-07T06:55:57.1562798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm.h 2025-09-07T06:55:57.1566990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1570970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_native.h 2025-09-07T06:55:57.1574622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_ops.h 2025-09-07T06:55:57.1578514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_blob.h 2025-09-07T06:55:57.1582175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file.h 2025-09-07T06:55:57.1586093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1590437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_cpu_dispatch.h 2025-09-07T06:55:57.1594340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_native.h 2025-09-07T06:55:57.1631938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_ops.h 2025-09-07T06:55:57.1636069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full.h 2025-09-07T06:55:57.1639857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1643848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like.h 2025-09-07T06:55:57.1647900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1651635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_native.h 2025-09-07T06:55:57.1655457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_ops.h 2025-09-07T06:55:57.1659134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_native.h 2025-09-07T06:55:57.1662872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_ops.h 2025-09-07T06:55:57.1666480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h 2025-09-07T06:55:57.1670583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1674454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h 2025-09-07T06:55:57.1678832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h 2025-09-07T06:55:57.1682581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather.h 2025-09-07T06:55:57.1686238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward.h 2025-09-07T06:55:57.1690083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1694387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_native.h 2025-09-07T06:55:57.1699183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_ops.h 2025-09-07T06:55:57.1703275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1707728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1711147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cpu_dispatch.h 2025-09-07T06:55:57.1715512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cuda_dispatch.h 2025-09-07T06:55:57.1719419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta.h 2025-09-07T06:55:57.1723265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta_dispatch.h 2025-09-07T06:55:57.1727097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_native.h 2025-09-07T06:55:57.1732028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_ops.h 2025-09-07T06:55:57.1736039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd.h 2025-09-07T06:55:57.1739901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1743597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cpu_dispatch.h 2025-09-07T06:55:57.1747499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cuda_dispatch.h 2025-09-07T06:55:57.1751283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta.h 2025-09-07T06:55:57.1754879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta_dispatch.h 2025-09-07T06:55:57.1758640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_native.h 2025-09-07T06:55:57.1762201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_ops.h 2025-09-07T06:55:57.1765560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge.h 2025-09-07T06:55:57.1769081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu.h 2025-09-07T06:55:57.1772663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward.h 2025-09-07T06:55:57.1776624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1780443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h 2025-09-07T06:55:57.1784261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h 2025-09-07T06:55:57.1788803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta.h 2025-09-07T06:55:57.1792899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta_dispatch.h 2025-09-07T06:55:57.1796626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_native.h 2025-09-07T06:55:57.1800349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_ops.h 2025-09-07T06:55:57.1804281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1807986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cpu_dispatch.h 2025-09-07T06:55:57.1811706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cuda_dispatch.h 2025-09-07T06:55:57.1815341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta.h 2025-09-07T06:55:57.1819512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta_dispatch.h 2025-09-07T06:55:57.1823408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_native.h 2025-09-07T06:55:57.1827108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_ops.h 2025-09-07T06:55:57.1830591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric.h 2025-09-07T06:55:57.1834419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1838270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cpu_dispatch.h 2025-09-07T06:55:57.1842333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cuda_dispatch.h 2025-09-07T06:55:57.1846101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_meta_dispatch.h 2025-09-07T06:55:57.1849882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_native.h 2025-09-07T06:55:57.1853568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_ops.h 2025-09-07T06:55:57.1857279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf.h 2025-09-07T06:55:57.1860740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cpu_dispatch.h 2025-09-07T06:55:57.1864504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cuda_dispatch.h 2025-09-07T06:55:57.1869257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_native.h 2025-09-07T06:55:57.1873021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_ops.h 2025-09-07T06:55:57.1876694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger.h 2025-09-07T06:55:57.1880306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.1883840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_native.h 2025-09-07T06:55:57.1887426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_ops.h 2025-09-07T06:55:57.1891066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1894764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cpu_dispatch.h 2025-09-07T06:55:57.1898558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cuda_dispatch.h 2025-09-07T06:55:57.1902280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta.h 2025-09-07T06:55:57.1905878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta_dispatch.h 2025-09-07T06:55:57.1909441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_native.h 2025-09-07T06:55:57.1912987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_ops.h 2025-09-07T06:55:57.1916281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu.h 2025-09-07T06:55:57.1919688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward.h 2025-09-07T06:55:57.1923364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cpu_dispatch.h 2025-09-07T06:55:57.1927133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cuda_dispatch.h 2025-09-07T06:55:57.1930924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp.h 2025-09-07T06:55:57.1934793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1938707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h 2025-09-07T06:55:57.1942513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h 2025-09-07T06:55:57.1946385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_native.h 2025-09-07T06:55:57.1950529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_ops.h 2025-09-07T06:55:57.1954981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_native.h 2025-09-07T06:55:57.1958778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_ops.h 2025-09-07T06:55:57.1962847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.1966416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cpu_dispatch.h 2025-09-07T06:55:57.1970072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cuda_dispatch.h 2025-09-07T06:55:57.1974012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp.h 2025-09-07T06:55:57.1977624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.1981547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h 2025-09-07T06:55:57.1985439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h 2025-09-07T06:55:57.1989084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_native.h 2025-09-07T06:55:57.1992777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_ops.h 2025-09-07T06:55:57.1996827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta.h 2025-09-07T06:55:57.2000125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta_dispatch.h 2025-09-07T06:55:57.2004240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_native.h 2025-09-07T06:55:57.2008119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_ops.h 2025-09-07T06:55:57.2011374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient.h 2025-09-07T06:55:57.2015922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.2020259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_native.h 2025-09-07T06:55:57.2023925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_ops.h 2025-09-07T06:55:57.2027685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater.h 2025-09-07T06:55:57.2031420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.2034963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal.h 2025-09-07T06:55:57.2039695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.2043663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_native.h 2025-09-07T06:55:57.2048443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_ops.h 2025-09-07T06:55:57.2051249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_native.h 2025-09-07T06:55:57.2055175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_ops.h 2025-09-07T06:55:57.2059761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler.h 2025-09-07T06:55:57.2063115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d.h 2025-09-07T06:55:57.2066786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward.h 2025-09-07T06:55:57.2071629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.2074713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h 2025-09-07T06:55:57.2079660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h 2025-09-07T06:55:57.2083595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_native.h 2025-09-07T06:55:57.2087974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h 2025-09-07T06:55:57.2091495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.2096459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h 2025-09-07T06:55:57.2100464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h 2025-09-07T06:55:57.2104234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_native.h 2025-09-07T06:55:57.2108439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_ops.h 2025-09-07T06:55:57.2112348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d.h 2025-09-07T06:55:57.2116198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward.h 2025-09-07T06:55:57.2120126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.2124154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h 2025-09-07T06:55:57.2128021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h 2025-09-07T06:55:57.2131911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_native.h 2025-09-07T06:55:57.2135783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h 2025-09-07T06:55:57.2139809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.2143933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h 2025-09-07T06:55:57.2148657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h 2025-09-07T06:55:57.2152819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_native.h 2025-09-07T06:55:57.2156608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_ops.h 2025-09-07T06:55:57.2161088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.2165486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_native.h 2025-09-07T06:55:57.2169545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_ops.h 2025-09-07T06:55:57.2173224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm.h 2025-09-07T06:55:57.2177620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.2181730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_native.h 2025-09-07T06:55:57.2186525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_ops.h 2025-09-07T06:55:57.2189312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru.h 2025-09-07T06:55:57.2193016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell.h 2025-09-07T06:55:57.2196473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.2200278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_native.h 2025-09-07T06:55:57.2204171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_ops.h 2025-09-07T06:55:57.2208040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.2211724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_native.h 2025-09-07T06:55:57.2215469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_ops.h 2025-09-07T06:55:57.2218840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt.h 2025-09-07T06:55:57.2222923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.2226515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cpu_dispatch.h 2025-09-07T06:55:57.2230146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cuda_dispatch.h 2025-09-07T06:55:57.2234489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta.h 2025-09-07T06:55:57.2238342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta_dispatch.h 2025-09-07T06:55:57.2242692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_native.h 2025-09-07T06:55:57.2246136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_ops.h 2025-09-07T06:55:57.2249714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window.h 2025-09-07T06:55:57.2254680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.2257571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_native.h 2025-09-07T06:55:57.2261251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_ops.h 2025-09-07T06:55:57.2265382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window.h 2025-09-07T06:55:57.2269293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.2273432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_native.h 2025-09-07T06:55:57.2277222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_ops.h 2025-09-07T06:55:57.2281432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink.h 2025-09-07T06:55:57.2284765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward.h 2025-09-07T06:55:57.2288713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.2292564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h 2025-09-07T06:55:57.2296351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h 2025-09-07T06:55:57.2300087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta.h 2025-09-07T06:55:57.2303945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h 2025-09-07T06:55:57.2307882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_native.h 2025-09-07T06:55:57.2312559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_ops.h 2025-09-07T06:55:57.2315964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.2319628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cpu_dispatch.h 2025-09-07T06:55:57.2323355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cuda_dispatch.h 2025-09-07T06:55:57.2327185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta.h 2025-09-07T06:55:57.2330906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta_dispatch.h 2025-09-07T06:55:57.2334968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_native.h 2025-09-07T06:55:57.2338715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_ops.h 2025-09-07T06:55:57.2342612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid.h 2025-09-07T06:55:57.2346415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward.h 2025-09-07T06:55:57.2350565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.2354715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h 2025-09-07T06:55:57.2358521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h 2025-09-07T06:55:57.2362238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta.h 2025-09-07T06:55:57.2366186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h 2025-09-07T06:55:57.2376497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_native.h 2025-09-07T06:55:57.2377194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_ops.h 2025-09-07T06:55:57.2379202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.2382830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h 2025-09-07T06:55:57.2386708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h 2025-09-07T06:55:57.2390551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta.h 2025-09-07T06:55:57.2394619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h 2025-09-07T06:55:57.2398423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_native.h 2025-09-07T06:55:57.2402409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_ops.h 2025-09-07T06:55:57.2406439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish.h 2025-09-07T06:55:57.2410507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward.h 2025-09-07T06:55:57.2414441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.2418113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h 2025-09-07T06:55:57.2422042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h 2025-09-07T06:55:57.2426013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_native.h 2025-09-07T06:55:57.2429869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_ops.h 2025-09-07T06:55:57.2433682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cpu_dispatch.h 2025-09-07T06:55:57.2437450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cuda_dispatch.h 2025-09-07T06:55:57.2441239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_meta_dispatch.h 2025-09-07T06:55:57.2445003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_native.h 2025-09-07T06:55:57.2448944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_ops.h 2025-09-07T06:55:57.2452659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh.h 2025-09-07T06:55:57.2456237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward.h 2025-09-07T06:55:57.2460179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h 2025-09-07T06:55:57.2464001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h 2025-09-07T06:55:57.2467724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_native.h 2025-09-07T06:55:57.2471526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_ops.h 2025-09-07T06:55:57.2475634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cpu_dispatch.h 2025-09-07T06:55:57.2479887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cuda_dispatch.h 2025-09-07T06:55:57.2484049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_meta_dispatch.h 2025-09-07T06:55:57.2487728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_native.h 2025-09-07T06:55:57.2492557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_ops.h 2025-09-07T06:55:57.2495504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor.h 2025-09-07T06:55:57.2499588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.2504180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cpu_dispatch.h 2025-09-07T06:55:57.2507591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cuda_dispatch.h 2025-09-07T06:55:57.2512120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta.h 2025-09-07T06:55:57.2516075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta_dispatch.h 2025-09-07T06:55:57.2520129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_native.h 2025-09-07T06:55:57.2523981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_ops.h 2025-09-07T06:55:57.2529350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside.h 2025-09-07T06:55:57.2533456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.2537320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cpu_dispatch.h 2025-09-07T06:55:57.2541526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cuda_dispatch.h 2025-09-07T06:55:57.3067083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta.h 2025-09-07T06:55:57.3071863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta_dispatch.h 2025-09-07T06:55:57.3074616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_native.h 2025-09-07T06:55:57.3078448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_ops.h 2025-09-07T06:55:57.3083187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss.h 2025-09-07T06:55:57.3086278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3090130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_native.h 2025-09-07T06:55:57.3094850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_ops.h 2025-09-07T06:55:57.3097590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc.h 2025-09-07T06:55:57.3101282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cpu_dispatch.h 2025-09-07T06:55:57.3106027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cuda_dispatch.h 2025-09-07T06:55:57.3108945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_native.h 2025-09-07T06:55:57.3113120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_ops.h 2025-09-07T06:55:57.3117929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram.h 2025-09-07T06:55:57.3120774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd.h 2025-09-07T06:55:57.3125252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3129066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_native.h 2025-09-07T06:55:57.3132881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_ops.h 2025-09-07T06:55:57.3136973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_cpu_dispatch.h 2025-09-07T06:55:57.3140830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_native.h 2025-09-07T06:55:57.3144761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_ops.h 2025-09-07T06:55:57.3148833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit.h 2025-09-07T06:55:57.3180026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3184006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_native.h 2025-09-07T06:55:57.3187704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_ops.h 2025-09-07T06:55:57.3191351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm.h 2025-09-07T06:55:57.3195170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_native.h 2025-09-07T06:55:57.3199528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_ops.h 2025-09-07T06:55:57.3204069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack.h 2025-09-07T06:55:57.3206935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3210655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_native.h 2025-09-07T06:55:57.3215380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_ops.h 2025-09-07T06:55:57.3218111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss.h 2025-09-07T06:55:57.3222262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward.h 2025-09-07T06:55:57.3226712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.3230829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h 2025-09-07T06:55:57.3235310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h 2025-09-07T06:55:57.3239125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_native.h 2025-09-07T06:55:57.3242880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_ops.h 2025-09-07T06:55:57.3246853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cpu_dispatch.h 2025-09-07T06:55:57.3250772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cuda_dispatch.h 2025-09-07T06:55:57.3255083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_native.h 2025-09-07T06:55:57.3259131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_ops.h 2025-09-07T06:55:57.3263073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot.h 2025-09-07T06:55:57.3266800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3270428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cpu_dispatch.h 2025-09-07T06:55:57.3274173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cuda_dispatch.h 2025-09-07T06:55:57.3277836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta.h 2025-09-07T06:55:57.3281516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta_dispatch.h 2025-09-07T06:55:57.3285429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_native.h 2025-09-07T06:55:57.3289026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_ops.h 2025-09-07T06:55:57.3292876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0.h 2025-09-07T06:55:57.3296539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3300078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cpu_dispatch.h 2025-09-07T06:55:57.3303642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cuda_dispatch.h 2025-09-07T06:55:57.3307263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta.h 2025-09-07T06:55:57.3311041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta_dispatch.h 2025-09-07T06:55:57.3314667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_native.h 2025-09-07T06:55:57.3318442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_ops.h 2025-09-07T06:55:57.3322070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma.h 2025-09-07T06:55:57.3325575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac.h 2025-09-07T06:55:57.3329227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3332771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cpu_dispatch.h 2025-09-07T06:55:57.3339404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cuda_dispatch.h 2025-09-07T06:55:57.3343162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta.h 2025-09-07T06:55:57.3346983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta_dispatch.h 2025-09-07T06:55:57.3350768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_native.h 2025-09-07T06:55:57.3355554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_ops.h 2025-09-07T06:55:57.3359623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3363418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cpu_dispatch.h 2025-09-07T06:55:57.3367655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cuda_dispatch.h 2025-09-07T06:55:57.3371325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta.h 2025-09-07T06:55:57.3375696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta_dispatch.h 2025-09-07T06:55:57.3380786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_native.h 2025-09-07T06:55:57.3385278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_ops.h 2025-09-07T06:55:57.3389084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col.h 2025-09-07T06:55:57.3392572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cpu_dispatch.h 2025-09-07T06:55:57.3396185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cuda_dispatch.h 2025-09-07T06:55:57.3399797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_native.h 2025-09-07T06:55:57.3403441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_ops.h 2025-09-07T06:55:57.3407767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag.h 2025-09-07T06:55:57.3411390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3414982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_native.h 2025-09-07T06:55:57.3418660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_ops.h 2025-09-07T06:55:57.3422393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index.h 2025-09-07T06:55:57.3426686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add.h 2025-09-07T06:55:57.3429969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3433567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3437166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cpu_dispatch.h 2025-09-07T06:55:57.3440956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cuda_dispatch.h 2025-09-07T06:55:57.3445037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta.h 2025-09-07T06:55:57.3448724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta_dispatch.h 2025-09-07T06:55:57.3452409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_native.h 2025-09-07T06:55:57.3456075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_ops.h 2025-09-07T06:55:57.3460015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3463669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy.h 2025-09-07T06:55:57.3467737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3471747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3476169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cpu_dispatch.h 2025-09-07T06:55:57.3482155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cuda_dispatch.h 2025-09-07T06:55:57.3485997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta.h 2025-09-07T06:55:57.3489714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta_dispatch.h 2025-09-07T06:55:57.3493420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_native.h 2025-09-07T06:55:57.3497113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_ops.h 2025-09-07T06:55:57.3500963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cpu_dispatch.h 2025-09-07T06:55:57.3505302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cuda_dispatch.h 2025-09-07T06:55:57.3517223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill.h 2025-09-07T06:55:57.3521191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.3525894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3529434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cpu_dispatch.h 2025-09-07T06:55:57.3533273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cuda_dispatch.h 2025-09-07T06:55:57.3537414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_meta_dispatch.h 2025-09-07T06:55:57.3540985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_native.h 2025-09-07T06:55:57.3544929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_ops.h 2025-09-07T06:55:57.3548683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta.h 2025-09-07T06:55:57.3552394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta_dispatch.h 2025-09-07T06:55:57.3556048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_native.h 2025-09-07T06:55:57.3559686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_ops.h 2025-09-07T06:55:57.3563355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put.h 2025-09-07T06:55:57.3567761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.3571378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_native.h 2025-09-07T06:55:57.3575087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_ops.h 2025-09-07T06:55:57.3578811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce.h 2025-09-07T06:55:57.3582736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3586669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cpu_dispatch.h 2025-09-07T06:55:57.3590609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cuda_dispatch.h 2025-09-07T06:55:57.3594752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta.h 2025-09-07T06:55:57.3598495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta_dispatch.h 2025-09-07T06:55:57.3602369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_native.h 2025-09-07T06:55:57.3606027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_ops.h 2025-09-07T06:55:57.3609688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select.h 2025-09-07T06:55:57.3613379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward.h 2025-09-07T06:55:57.3617253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3621206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_native.h 2025-09-07T06:55:57.3625083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_ops.h 2025-09-07T06:55:57.3629290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3634020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cpu_dispatch.h 2025-09-07T06:55:57.3638058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cuda_dispatch.h 2025-09-07T06:55:57.3641966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_native.h 2025-09-07T06:55:57.3646016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_ops.h 2025-09-07T06:55:57.3649778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices.h 2025-09-07T06:55:57.3653466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.3656997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy.h 2025-09-07T06:55:57.3660871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3665111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.3668967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_native.h 2025-09-07T06:55:57.3672769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_ops.h 2025-09-07T06:55:57.3676785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_native.h 2025-09-07T06:55:57.3680452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_ops.h 2025-09-07T06:55:57.3684610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h 2025-09-07T06:55:57.3688536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3692617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h 2025-09-07T06:55:57.3696747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h 2025-09-07T06:55:57.3700285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner.h 2025-09-07T06:55:57.3704049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3707790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_native.h 2025-09-07T06:55:57.3711436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_ops.h 2025-09-07T06:55:57.3715165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm.h 2025-09-07T06:55:57.3719165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3723927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_native.h 2025-09-07T06:55:57.3727704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_ops.h 2025-09-07T06:55:57.3731338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr.h 2025-09-07T06:55:57.3734870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.3738571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_native.h 2025-09-07T06:55:57.3742184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_ops.h 2025-09-07T06:55:57.3746146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse.h 2025-09-07T06:55:57.3750311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3754210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_native.h 2025-09-07T06:55:57.3758185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_ops.h 2025-09-07T06:55:57.3762321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose.h 2025-09-07T06:55:57.3767012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3771141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_native.h 2025-09-07T06:55:57.3775119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_ops.h 2025-09-07T06:55:57.3779099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite.h 2025-09-07T06:55:57.3783095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3787134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_native.h 2025-09-07T06:55:57.3791121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_ops.h 2025-09-07T06:55:57.3795160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin.h 2025-09-07T06:55:57.3799486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf.h 2025-09-07T06:55:57.3803535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.3807358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_native.h 2025-09-07T06:55:57.3811067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_ops.h 2025-09-07T06:55:57.3815255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3818926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cpu_dispatch.h 2025-09-07T06:55:57.3822531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cuda_dispatch.h 2025-09-07T06:55:57.3826219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta.h 2025-09-07T06:55:57.3829984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta_dispatch.h 2025-09-07T06:55:57.3834003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_native.h 2025-09-07T06:55:57.3837736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_ops.h 2025-09-07T06:55:57.3841026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan.h 2025-09-07T06:55:57.3844781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.3848355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cpu_dispatch.h 2025-09-07T06:55:57.3851966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cuda_dispatch.h 2025-09-07T06:55:57.3855539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_native.h 2025-09-07T06:55:57.3859150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_ops.h 2025-09-07T06:55:57.3862759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf.h 2025-09-07T06:55:57.3866478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3869982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cpu_dispatch.h 2025-09-07T06:55:57.3873832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cuda_dispatch.h 2025-09-07T06:55:57.3878102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta.h 2025-09-07T06:55:57.3881812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta_dispatch.h 2025-09-07T06:55:57.3885576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_native.h 2025-09-07T06:55:57.3889361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_ops.h 2025-09-07T06:55:57.3892959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf.h 2025-09-07T06:55:57.3896766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.3900481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cpu_dispatch.h 2025-09-07T06:55:57.3904137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cuda_dispatch.h 2025-09-07T06:55:57.3908532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta.h 2025-09-07T06:55:57.3912204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta_dispatch.h 2025-09-07T06:55:57.3916018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_native.h 2025-09-07T06:55:57.3919761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_ops.h 2025-09-07T06:55:57.3923511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal.h 2025-09-07T06:55:57.3927065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3930996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_native.h 2025-09-07T06:55:57.3934640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_ops.h 2025-09-07T06:55:57.3938258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft.h 2025-09-07T06:55:57.3941789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3945473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_native.h 2025-09-07T06:55:57.3949177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_ops.h 2025-09-07T06:55:57.3952823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced.h 2025-09-07T06:55:57.3956535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.3961448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_native.h 2025-09-07T06:55:57.3965120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_ops.h 2025-09-07T06:55:57.3968847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex.h 2025-09-07T06:55:57.3972504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3976116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_native.h 2025-09-07T06:55:57.3979804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_ops.h 2025-09-07T06:55:57.3983759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj.h 2025-09-07T06:55:57.3987660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.3991499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_native.h 2025-09-07T06:55:57.3995069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_ops.h 2025-09-07T06:55:57.3998829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed.h 2025-09-07T06:55:57.4002580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4006240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_native.h 2025-09-07T06:55:57.4010055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_ops.h 2025-09-07T06:55:57.4013954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point.h 2025-09-07T06:55:57.4018001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4021677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_native.h 2025-09-07T06:55:57.4025456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_ops.h 2025-09-07T06:55:57.4029359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference.h 2025-09-07T06:55:57.4033238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4037107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_native.h 2025-09-07T06:55:57.4040781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_ops.h 2025-09-07T06:55:57.4044618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf.h 2025-09-07T06:55:57.4048792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4052462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_native.h 2025-09-07T06:55:57.4056145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_ops.h 2025-09-07T06:55:57.4059963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg.h 2025-09-07T06:55:57.4063539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4067553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_native.h 2025-09-07T06:55:57.4071232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_ops.h 2025-09-07T06:55:57.4075266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero.h 2025-09-07T06:55:57.4079286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4082927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_native.h 2025-09-07T06:55:57.4086691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_ops.h 2025-09-07T06:55:57.4090502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned.h 2025-09-07T06:55:57.4094284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.4098363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_native.h 2025-09-07T06:55:57.4102294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_ops.h 2025-09-07T06:55:57.4105931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size.h 2025-09-07T06:55:57.4110057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.4113932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_native.h 2025-09-07T06:55:57.4117687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_ops.h 2025-09-07T06:55:57.4121404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to.h 2025-09-07T06:55:57.4125590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cpu_dispatch.h 2025-09-07T06:55:57.4129423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cuda_dispatch.h 2025-09-07T06:55:57.4133556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_native.h 2025-09-07T06:55:57.4137669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_ops.h 2025-09-07T06:55:57.4141378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed.h 2025-09-07T06:55:57.4145313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4149054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_native.h 2025-09-07T06:55:57.4152738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_ops.h 2025-09-07T06:55:57.4156817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available.h 2025-09-07T06:55:57.4160806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4164527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_native.h 2025-09-07T06:55:57.4168350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_ops.h 2025-09-07T06:55:57.4172126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item.h 2025-09-07T06:55:57.4175718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4206812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_native.h 2025-09-07T06:55:57.4210687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_ops.h 2025-09-07T06:55:57.4214350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window.h 2025-09-07T06:55:57.4218556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.4222415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_native.h 2025-09-07T06:55:57.4226333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_ops.h 2025-09-07T06:55:57.4229991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div.h 2025-09-07T06:55:57.4233801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4238147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_native.h 2025-09-07T06:55:57.4242096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_ops.h 2025-09-07T06:55:57.4246032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron.h 2025-09-07T06:55:57.4249882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4253741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_native.h 2025-09-07T06:55:57.4257303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_ops.h 2025-09-07T06:55:57.4261018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue.h 2025-09-07T06:55:57.4265311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.4269295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4272972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cpu_dispatch.h 2025-09-07T06:55:57.4277177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cuda_dispatch.h 2025-09-07T06:55:57.4280897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_native.h 2025-09-07T06:55:57.4284735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_ops.h 2025-09-07T06:55:57.4288550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss.h 2025-09-07T06:55:57.4292176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4295898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_native.h 2025-09-07T06:55:57.4299453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_ops.h 2025-09-07T06:55:57.4303095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm.h 2025-09-07T06:55:57.4307040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4310936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_native.h 2025-09-07T06:55:57.4314569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_ops.h 2025-09-07T06:55:57.4318488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm.h 2025-09-07T06:55:57.4322120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4325888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cpu_dispatch.h 2025-09-07T06:55:57.4329543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cuda_dispatch.h 2025-09-07T06:55:57.4333211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta.h 2025-09-07T06:55:57.4336602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta_dispatch.h 2025-09-07T06:55:57.4340220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_native.h 2025-09-07T06:55:57.4344007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_ops.h 2025-09-07T06:55:57.4347663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp.h 2025-09-07T06:55:57.4351189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4355290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_native.h 2025-09-07T06:55:57.4358847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_ops.h 2025-09-07T06:55:57.4362404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le.h 2025-09-07T06:55:57.4365826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu.h 2025-09-07T06:55:57.4369413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward.h 2025-09-07T06:55:57.4373630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4377358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h 2025-09-07T06:55:57.4381334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h 2025-09-07T06:55:57.4385256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta.h 2025-09-07T06:55:57.4389131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h 2025-09-07T06:55:57.4392891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_native.h 2025-09-07T06:55:57.4396734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_ops.h 2025-09-07T06:55:57.4400698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4404611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h 2025-09-07T06:55:57.4409112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h 2025-09-07T06:55:57.4412893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta.h 2025-09-07T06:55:57.4416718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta_dispatch.h 2025-09-07T06:55:57.4420535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_native.h 2025-09-07T06:55:57.4424252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_ops.h 2025-09-07T06:55:57.4427915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp.h 2025-09-07T06:55:57.4431598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4435379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cpu_dispatch.h 2025-09-07T06:55:57.4439017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cuda_dispatch.h 2025-09-07T06:55:57.4442708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta.h 2025-09-07T06:55:57.4446343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta_dispatch.h 2025-09-07T06:55:57.4449997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_native.h 2025-09-07T06:55:57.4453723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_ops.h 2025-09-07T06:55:57.4457002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less.h 2025-09-07T06:55:57.4460661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4464460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal.h 2025-09-07T06:55:57.4468560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4472166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_native.h 2025-09-07T06:55:57.4476460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_ops.h 2025-09-07T06:55:57.4480155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_native.h 2025-09-07T06:55:57.4483761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_ops.h 2025-09-07T06:55:57.4487277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4491585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cpu_dispatch.h 2025-09-07T06:55:57.4495199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cuda_dispatch.h 2025-09-07T06:55:57.4498759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta.h 2025-09-07T06:55:57.4502171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta_dispatch.h 2025-09-07T06:55:57.4505822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_native.h 2025-09-07T06:55:57.4509483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_ops.h 2025-09-07T06:55:57.4512779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma.h 2025-09-07T06:55:57.4516443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4520199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cpu_dispatch.h 2025-09-07T06:55:57.4523925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cuda_dispatch.h 2025-09-07T06:55:57.4527695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta.h 2025-09-07T06:55:57.4531372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta_dispatch.h 2025-09-07T06:55:57.4535052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_native.h 2025-09-07T06:55:57.4538718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_ops.h 2025-09-07T06:55:57.4542352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift.h 2025-09-07T06:55:57.4546159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.4549959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh.h 2025-09-07T06:55:57.4553718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.4557492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy.h 2025-09-07T06:55:57.4561464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4565406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.4569234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_native.h 2025-09-07T06:55:57.4573497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_ops.h 2025-09-07T06:55:57.4577601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_native.h 2025-09-07T06:55:57.4581910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_ops.h 2025-09-07T06:55:57.4586130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_native.h 2025-09-07T06:55:57.4589828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_ops.h 2025-09-07T06:55:57.4593431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky.h 2025-09-07T06:55:57.4597355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4601567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex.h 2025-09-07T06:55:57.4605653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4609437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h 2025-09-07T06:55:57.4613262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h 2025-09-07T06:55:57.4617154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta.h 2025-09-07T06:55:57.4621312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h 2025-09-07T06:55:57.4625417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_native.h 2025-09-07T06:55:57.4629690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_ops.h 2025-09-07T06:55:57.4633689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_native.h 2025-09-07T06:55:57.4637596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ops.h 2025-09-07T06:55:57.4641733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond.h 2025-09-07T06:55:57.4645729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4649680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_native.h 2025-09-07T06:55:57.4653865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_ops.h 2025-09-07T06:55:57.4657677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross.h 2025-09-07T06:55:57.4661762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4665650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h 2025-09-07T06:55:57.4669585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h 2025-09-07T06:55:57.4673495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta.h 2025-09-07T06:55:57.4677374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta_dispatch.h 2025-09-07T06:55:57.4681668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_native.h 2025-09-07T06:55:57.4685545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_ops.h 2025-09-07T06:55:57.4690434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det.h 2025-09-07T06:55:57.4694654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4698553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_native.h 2025-09-07T06:55:57.4702324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_ops.h 2025-09-07T06:55:57.4706262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal.h 2025-09-07T06:55:57.4710446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4715548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_native.h 2025-09-07T06:55:57.4719748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_ops.h 2025-09-07T06:55:57.4724160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig.h 2025-09-07T06:55:57.4728164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh.h 2025-09-07T06:55:57.4732141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4766227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_native.h 2025-09-07T06:55:57.4770438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_ops.h 2025-09-07T06:55:57.4774275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals.h 2025-09-07T06:55:57.4778141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh.h 2025-09-07T06:55:57.4782099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4786061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_native.h 2025-09-07T06:55:57.4790198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_ops.h 2025-09-07T06:55:57.4794220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4798329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h 2025-09-07T06:55:57.4802558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h 2025-09-07T06:55:57.4806325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_native.h 2025-09-07T06:55:57.4810398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_ops.h 2025-09-07T06:55:57.4814504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h 2025-09-07T06:55:57.4818247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h 2025-09-07T06:55:57.4822040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_native.h 2025-09-07T06:55:57.4826127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_ops.h 2025-09-07T06:55:57.4830544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product.h 2025-09-07T06:55:57.4834303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h 2025-09-07T06:55:57.4838097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h 2025-09-07T06:55:57.4842025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_native.h 2025-09-07T06:55:57.4845867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_ops.h 2025-09-07T06:55:57.4849731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv.h 2025-09-07T06:55:57.4853912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4857856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex.h 2025-09-07T06:55:57.4861900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4865765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h 2025-09-07T06:55:57.4869828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h 2025-09-07T06:55:57.4873765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta.h 2025-09-07T06:55:57.4878214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h 2025-09-07T06:55:57.4882867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_native.h 2025-09-07T06:55:57.4886782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_ops.h 2025-09-07T06:55:57.4891598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_native.h 2025-09-07T06:55:57.4895615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ops.h 2025-09-07T06:55:57.4899403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor.h 2025-09-07T06:55:57.4903356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.4907392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex.h 2025-09-07T06:55:57.4911689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4915551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h 2025-09-07T06:55:57.4919309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h 2025-09-07T06:55:57.4923224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h 2025-09-07T06:55:57.4927041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h 2025-09-07T06:55:57.4931573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h 2025-09-07T06:55:57.4935681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h 2025-09-07T06:55:57.4939621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_native.h 2025-09-07T06:55:57.4943884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ops.h 2025-09-07T06:55:57.4947752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve.h 2025-09-07T06:55:57.4952388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.4956412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h 2025-09-07T06:55:57.4960298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h 2025-09-07T06:55:57.4964126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta.h 2025-09-07T06:55:57.4968184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h 2025-09-07T06:55:57.4973175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_native.h 2025-09-07T06:55:57.4977438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_ops.h 2025-09-07T06:55:57.4981254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq.h 2025-09-07T06:55:57.4985509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.4989456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h 2025-09-07T06:55:57.4993240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h 2025-09-07T06:55:57.4996990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_native.h 2025-09-07T06:55:57.5001016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_ops.h 2025-09-07T06:55:57.5004905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu.h 2025-09-07T06:55:57.5009135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5013043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h 2025-09-07T06:55:57.5016870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h 2025-09-07T06:55:57.5020592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor.h 2025-09-07T06:55:57.5024784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5028568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex.h 2025-09-07T06:55:57.5033218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5037188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h 2025-09-07T06:55:57.5041302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h 2025-09-07T06:55:57.5045211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h 2025-09-07T06:55:57.5049056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h 2025-09-07T06:55:57.5052883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_native.h 2025-09-07T06:55:57.5056982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h 2025-09-07T06:55:57.5061001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_native.h 2025-09-07T06:55:57.5065330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ops.h 2025-09-07T06:55:57.5069693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta.h 2025-09-07T06:55:57.5073790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta_dispatch.h 2025-09-07T06:55:57.5077429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_native.h 2025-09-07T06:55:57.5081395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_ops.h 2025-09-07T06:55:57.5085311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve.h 2025-09-07T06:55:57.5090770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5093973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h 2025-09-07T06:55:57.5098489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h 2025-09-07T06:55:57.5102566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta.h 2025-09-07T06:55:57.5106246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h 2025-09-07T06:55:57.5110182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_native.h 2025-09-07T06:55:57.5114088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_ops.h 2025-09-07T06:55:57.5118058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul.h 2025-09-07T06:55:57.5122272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5126211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_native.h 2025-09-07T06:55:57.5129981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_ops.h 2025-09-07T06:55:57.5134052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp.h 2025-09-07T06:55:57.5138998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.5143072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h 2025-09-07T06:55:57.5147212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h 2025-09-07T06:55:57.5151379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_native.h 2025-09-07T06:55:57.5155196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_ops.h 2025-09-07T06:55:57.5159975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm.h 2025-09-07T06:55:57.5163023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5166899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_native.h 2025-09-07T06:55:57.5171798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_ops.h 2025-09-07T06:55:57.5174933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power.h 2025-09-07T06:55:57.5179346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5183382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_native.h 2025-09-07T06:55:57.5187164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_ops.h 2025-09-07T06:55:57.5191436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank.h 2025-09-07T06:55:57.5195524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5200636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_native.h 2025-09-07T06:55:57.5203531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_ops.h 2025-09-07T06:55:57.5208043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot.h 2025-09-07T06:55:57.5212313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5215913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_native.h 2025-09-07T06:55:57.5220225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_ops.h 2025-09-07T06:55:57.5224314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm.h 2025-09-07T06:55:57.5229571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5233497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_native.h 2025-09-07T06:55:57.5237406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_ops.h 2025-09-07T06:55:57.5264863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv.h 2025-09-07T06:55:57.5265296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5280259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.5284417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5288287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_native.h 2025-09-07T06:55:57.5292254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_ops.h 2025-09-07T06:55:57.5296357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr.h 2025-09-07T06:55:57.5301288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5305206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h 2025-09-07T06:55:57.5310790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h 2025-09-07T06:55:57.5314933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta.h 2025-09-07T06:55:57.5319148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta_dispatch.h 2025-09-07T06:55:57.5322924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_native.h 2025-09-07T06:55:57.5326633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_ops.h 2025-09-07T06:55:57.5330764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet.h 2025-09-07T06:55:57.5335057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5339019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_native.h 2025-09-07T06:55:57.5342861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_ops.h 2025-09-07T06:55:57.5346797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve.h 2025-09-07T06:55:57.5351272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5355033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex.h 2025-09-07T06:55:57.5358940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5362850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_native.h 2025-09-07T06:55:57.5366918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_ops.h 2025-09-07T06:55:57.5370682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_native.h 2025-09-07T06:55:57.5374440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ops.h 2025-09-07T06:55:57.5378224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular.h 2025-09-07T06:55:57.5382570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h 2025-09-07T06:55:57.5386814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h 2025-09-07T06:55:57.5391084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_native.h 2025-09-07T06:55:57.5395920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_ops.h 2025-09-07T06:55:57.5400242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd.h 2025-09-07T06:55:57.5405496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals.h 2025-09-07T06:55:57.5410385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5601633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_native.h 2025-09-07T06:55:57.5605498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_ops.h 2025-09-07T06:55:57.5609848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5614336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_native.h 2025-09-07T06:55:57.5618248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_ops.h 2025-09-07T06:55:57.5622429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv.h 2025-09-07T06:55:57.5626652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5630445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_native.h 2025-09-07T06:55:57.5634284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_ops.h 2025-09-07T06:55:57.5638196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve.h 2025-09-07T06:55:57.5642482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5646314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_native.h 2025-09-07T06:55:57.5650595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_ops.h 2025-09-07T06:55:57.5654920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander.h 2025-09-07T06:55:57.5659123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5662930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_native.h 2025-09-07T06:55:57.5667147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_ops.h 2025-09-07T06:55:57.5706850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot.h 2025-09-07T06:55:57.5710650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5715009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_native.h 2025-09-07T06:55:57.5719020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_ops.h 2025-09-07T06:55:57.5722860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm.h 2025-09-07T06:55:57.5727239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5731081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h 2025-09-07T06:55:57.5734925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h 2025-09-07T06:55:57.5739138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta.h 2025-09-07T06:55:57.5743401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h 2025-09-07T06:55:57.5747824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_native.h 2025-09-07T06:55:57.5752197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_ops.h 2025-09-07T06:55:57.5756604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear.h 2025-09-07T06:55:57.5760380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward.h 2025-09-07T06:55:57.5764588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.5768668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_native.h 2025-09-07T06:55:57.5773023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_ops.h 2025-09-07T06:55:57.5777046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.5781484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5785617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_native.h 2025-09-07T06:55:57.5789518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_ops.h 2025-09-07T06:55:57.5793381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace.h 2025-09-07T06:55:57.5796889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.5800630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cpu_dispatch.h 2025-09-07T06:55:57.5804694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cuda_dispatch.h 2025-09-07T06:55:57.5808524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_meta_dispatch.h 2025-09-07T06:55:57.5812393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_native.h 2025-09-07T06:55:57.5816120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_ops.h 2025-09-07T06:55:57.5819718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log.h 2025-09-07T06:55:57.5823528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10.h 2025-09-07T06:55:57.5827301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5830932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cpu_dispatch.h 2025-09-07T06:55:57.5834629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cuda_dispatch.h 2025-09-07T06:55:57.5838412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta.h 2025-09-07T06:55:57.5842278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta_dispatch.h 2025-09-07T06:55:57.5846133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_native.h 2025-09-07T06:55:57.5849853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_ops.h 2025-09-07T06:55:57.5853514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p.h 2025-09-07T06:55:57.5857112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5860717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cpu_dispatch.h 2025-09-07T06:55:57.5864442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cuda_dispatch.h 2025-09-07T06:55:57.5868153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta.h 2025-09-07T06:55:57.5872012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta_dispatch.h 2025-09-07T06:55:57.5875791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_native.h 2025-09-07T06:55:57.5879522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_ops.h 2025-09-07T06:55:57.5883385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2.h 2025-09-07T06:55:57.5887029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5890623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cpu_dispatch.h 2025-09-07T06:55:57.5894408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cuda_dispatch.h 2025-09-07T06:55:57.5898316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta.h 2025-09-07T06:55:57.5903058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta_dispatch.h 2025-09-07T06:55:57.5908663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_native.h 2025-09-07T06:55:57.5912761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_ops.h 2025-09-07T06:55:57.5916336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp.h 2025-09-07T06:55:57.5920043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2.h 2025-09-07T06:55:57.5924027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5927843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h 2025-09-07T06:55:57.5931926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h 2025-09-07T06:55:57.5936203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta.h 2025-09-07T06:55:57.5940106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta_dispatch.h 2025-09-07T06:55:57.5943955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_native.h 2025-09-07T06:55:57.5947833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_ops.h 2025-09-07T06:55:57.5952196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.5955899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cpu_dispatch.h 2025-09-07T06:55:57.5959779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cuda_dispatch.h 2025-09-07T06:55:57.5963887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta.h 2025-09-07T06:55:57.5967764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta_dispatch.h 2025-09-07T06:55:57.5971997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_native.h 2025-09-07T06:55:57.5975806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_ops.h 2025-09-07T06:55:57.5979704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp.h 2025-09-07T06:55:57.5983574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.5987506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.5991604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_native.h 2025-09-07T06:55:57.5995515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_ops.h 2025-09-07T06:55:57.5999284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet.h 2025-09-07T06:55:57.6002921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6006739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_native.h 2025-09-07T06:55:57.6010414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_ops.h 2025-09-07T06:55:57.6014257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and.h 2025-09-07T06:55:57.6018252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6022181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cpu_dispatch.h 2025-09-07T06:55:57.6026104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cuda_dispatch.h 2025-09-07T06:55:57.6029914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_native.h 2025-09-07T06:55:57.6033853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_ops.h 2025-09-07T06:55:57.6037653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not.h 2025-09-07T06:55:57.6042209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6046137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cpu_dispatch.h 2025-09-07T06:55:57.6050502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cuda_dispatch.h 2025-09-07T06:55:57.6054356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_native.h 2025-09-07T06:55:57.6058332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_ops.h 2025-09-07T06:55:57.6062169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or.h 2025-09-07T06:55:57.6066427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6070268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cpu_dispatch.h 2025-09-07T06:55:57.6074307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cuda_dispatch.h 2025-09-07T06:55:57.6078359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_native.h 2025-09-07T06:55:57.6081980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_ops.h 2025-09-07T06:55:57.6085875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor.h 2025-09-07T06:55:57.6089798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6093642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cpu_dispatch.h 2025-09-07T06:55:57.6097560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cuda_dispatch.h 2025-09-07T06:55:57.6101398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_native.h 2025-09-07T06:55:57.6107002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_ops.h 2025-09-07T06:55:57.6111122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit.h 2025-09-07T06:55:57.6114738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward.h 2025-09-07T06:55:57.6118684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.6122785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cpu_dispatch.h 2025-09-07T06:55:57.6126547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cuda_dispatch.h 2025-09-07T06:55:57.6130272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta.h 2025-09-07T06:55:57.6134480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta_dispatch.h 2025-09-07T06:55:57.6138347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_native.h 2025-09-07T06:55:57.6142183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_ops.h 2025-09-07T06:55:57.6146220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cpu_dispatch.h 2025-09-07T06:55:57.6150487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cuda_dispatch.h 2025-09-07T06:55:57.6154323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_meta_dispatch.h 2025-09-07T06:55:57.6158379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_native.h 2025-09-07T06:55:57.6162442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_ops.h 2025-09-07T06:55:57.6166214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace.h 2025-09-07T06:55:57.6169905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6173777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cpu_dispatch.h 2025-09-07T06:55:57.6177728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cuda_dispatch.h 2025-09-07T06:55:57.6181399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_meta_dispatch.h 2025-09-07T06:55:57.6185219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_native.h 2025-09-07T06:55:57.6189447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_ops.h 2025-09-07T06:55:57.6193472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp.h 2025-09-07T06:55:57.6197525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.6201351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6205279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6209097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_native.h 2025-09-07T06:55:57.6212960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_ops.h 2025-09-07T06:55:57.6217306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.6220817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cpu_dispatch.h 2025-09-07T06:55:57.6224708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cuda_dispatch.h 2025-09-07T06:55:57.6228436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta.h 2025-09-07T06:55:57.6232127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta_dispatch.h 2025-09-07T06:55:57.6235712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_native.h 2025-09-07T06:55:57.6239392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal.h 2025-09-07T06:55:57.6243632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6247877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cpu_dispatch.h 2025-09-07T06:55:57.6252171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cuda_dispatch.h 2025-09-07T06:55:57.6256825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_meta_dispatch.h 2025-09-07T06:55:57.6260860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_native.h 2025-09-07T06:55:57.6264762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_ops.h 2025-09-07T06:55:57.6268909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_ops.h 2025-09-07T06:55:57.6272444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid.h 2025-09-07T06:55:57.6276993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward.h 2025-09-07T06:55:57.6280910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h 2025-09-07T06:55:57.6284808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h 2025-09-07T06:55:57.6288648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_native.h 2025-09-07T06:55:57.6292702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_ops.h 2025-09-07T06:55:57.6296593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6300324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward.h 2025-09-07T06:55:57.6304718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h 2025-09-07T06:55:57.6308936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h 2025-09-07T06:55:57.6312709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_native.h 2025-09-07T06:55:57.6316366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_ops.h 2025-09-07T06:55:57.6320174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_native.h 2025-09-07T06:55:57.6323969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_ops.h 2025-09-07T06:55:57.6328208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax.h 2025-09-07T06:55:57.6332312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6336244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6340067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_native.h 2025-09-07T06:55:57.6343795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_ops.h 2025-09-07T06:55:57.6347789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift.h 2025-09-07T06:55:57.6351640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6355292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cpu_dispatch.h 2025-09-07T06:55:57.6359145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cuda_dispatch.h 2025-09-07T06:55:57.6363344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_meta_dispatch.h 2025-09-07T06:55:57.6367123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_native.h 2025-09-07T06:55:57.6370888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_ops.h 2025-09-07T06:55:57.6374566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm.h 2025-09-07T06:55:57.6378118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell.h 2025-09-07T06:55:57.6382112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6385863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_native.h 2025-09-07T06:55:57.6389875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_ops.h 2025-09-07T06:55:57.6393753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6397528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward.h 2025-09-07T06:55:57.6401420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6405151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_native.h 2025-09-07T06:55:57.6408921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_ops.h 2025-09-07T06:55:57.6412743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_native.h 2025-09-07T06:55:57.6416624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_ops.h 2025-09-07T06:55:57.6420033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt.h 2025-09-07T06:55:57.6423933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.6427583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cpu_dispatch.h 2025-09-07T06:55:57.6431164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cuda_dispatch.h 2025-09-07T06:55:57.6435825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta.h 2025-09-07T06:55:57.6439345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta_dispatch.h 2025-09-07T06:55:57.6443000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_native.h 2025-09-07T06:55:57.6446835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_ops.h 2025-09-07T06:55:57.6450729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve.h 2025-09-07T06:55:57.6453932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6457846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_native.h 2025-09-07T06:55:57.6461389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_ops.h 2025-09-07T06:55:57.6465454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack.h 2025-09-07T06:55:57.6469329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.6473610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h 2025-09-07T06:55:57.6477370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h 2025-09-07T06:55:57.6481051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta.h 2025-09-07T06:55:57.6484737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta_dispatch.h 2025-09-07T06:55:57.6488598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_native.h 2025-09-07T06:55:57.6492238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_ops.h 2025-09-07T06:55:57.6495860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss.h 2025-09-07T06:55:57.6499624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6503439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_native.h 2025-09-07T06:55:57.6507328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_ops.h 2025-09-07T06:55:57.6511000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill.h 2025-09-07T06:55:57.6514750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6550528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cpu_dispatch.h 2025-09-07T06:55:57.6554485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cuda_dispatch.h 2025-09-07T06:55:57.6558588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_meta_dispatch.h 2025-09-07T06:55:57.6562381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_native.h 2025-09-07T06:55:57.6566201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_ops.h 2025-09-07T06:55:57.6569860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter.h 2025-09-07T06:55:57.6573843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward.h 2025-09-07T06:55:57.6577964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6581793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_native.h 2025-09-07T06:55:57.6585981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_ops.h 2025-09-07T06:55:57.6590464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6594917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h 2025-09-07T06:55:57.6597934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h 2025-09-07T06:55:57.6602314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_meta_dispatch.h 2025-09-07T06:55:57.6606813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_native.h 2025-09-07T06:55:57.6612247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_ops.h 2025-09-07T06:55:57.6614988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select.h 2025-09-07T06:55:57.6618802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward.h 2025-09-07T06:55:57.6623835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6626846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_native.h 2025-09-07T06:55:57.6631153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_ops.h 2025-09-07T06:55:57.6635588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cpu_dispatch.h 2025-09-07T06:55:57.6640216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cuda_dispatch.h 2025-09-07T06:55:57.6644852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_native.h 2025-09-07T06:55:57.6649082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_ops.h 2025-09-07T06:55:57.6652960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul.h 2025-09-07T06:55:57.6656500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward.h 2025-09-07T06:55:57.6660772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6664748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_native.h 2025-09-07T06:55:57.6669713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_ops.h 2025-09-07T06:55:57.6672693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6676808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_native.h 2025-09-07T06:55:57.6681227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_ops.h 2025-09-07T06:55:57.6684450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp.h 2025-09-07T06:55:57.6688543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward.h 2025-09-07T06:55:57.6692961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6696681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_native.h 2025-09-07T06:55:57.6700951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_ops.h 2025-09-07T06:55:57.6705208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6709991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_native.h 2025-09-07T06:55:57.6713310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_ops.h 2025-09-07T06:55:57.6717713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H.h 2025-09-07T06:55:57.6721215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6725156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_native.h 2025-09-07T06:55:57.6728990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_ops.h 2025-09-07T06:55:57.6732985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power.h 2025-09-07T06:55:57.6736730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6740657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_native.h 2025-09-07T06:55:57.6744863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_ops.h 2025-09-07T06:55:57.6748992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max.h 2025-09-07T06:55:57.6753134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum.h 2025-09-07T06:55:57.6757232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.6763961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cpu_dispatch.h 2025-09-07T06:55:57.6765774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cuda_dispatch.h 2025-09-07T06:55:57.6769914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta.h 2025-09-07T06:55:57.6773938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta_dispatch.h 2025-09-07T06:55:57.6777753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_native.h 2025-09-07T06:55:57.6782103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_ops.h 2025-09-07T06:55:57.6786067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.6790113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6793802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cpu_dispatch.h 2025-09-07T06:55:57.6797548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cuda_dispatch.h 2025-09-07T06:55:57.6801317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta.h 2025-09-07T06:55:57.6804711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta_dispatch.h 2025-09-07T06:55:57.6808297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_native.h 2025-09-07T06:55:57.6811825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_ops.h 2025-09-07T06:55:57.6815556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d.h 2025-09-07T06:55:57.6819536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6823167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_native.h 2025-09-07T06:55:57.6826944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_ops.h 2025-09-07T06:55:57.6831142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices.h 2025-09-07T06:55:57.6835480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6839043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_native.h 2025-09-07T06:55:57.6842964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_ops.h 2025-09-07T06:55:57.6846717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d.h 2025-09-07T06:55:57.6850624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward.h 2025-09-07T06:55:57.6855604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.6859358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_native.h 2025-09-07T06:55:57.6863190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_ops.h 2025-09-07T06:55:57.6867406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6871213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_native.h 2025-09-07T06:55:57.6874952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_ops.h 2025-09-07T06:55:57.6878722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices.h 2025-09-07T06:55:57.6882655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward.h 2025-09-07T06:55:57.6887231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.6891037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h 2025-09-07T06:55:57.6894864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h 2025-09-07T06:55:57.6898761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h 2025-09-07T06:55:57.6902653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h 2025-09-07T06:55:57.6906595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h 2025-09-07T06:55:57.6910485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h 2025-09-07T06:55:57.6914786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.6918953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h 2025-09-07T06:55:57.6923719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h 2025-09-07T06:55:57.6927596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta.h 2025-09-07T06:55:57.6931949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h 2025-09-07T06:55:57.6936068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_native.h 2025-09-07T06:55:57.6940034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_ops.h 2025-09-07T06:55:57.6943648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d.h 2025-09-07T06:55:57.6947708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.6951431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_native.h 2025-09-07T06:55:57.6955217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_ops.h 2025-09-07T06:55:57.6958932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices.h 2025-09-07T06:55:57.6962982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward.h 2025-09-07T06:55:57.6966912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h 2025-09-07T06:55:57.6970957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h 2025-09-07T06:55:57.6974701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h 2025-09-07T06:55:57.6978574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h 2025-09-07T06:55:57.6982517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h 2025-09-07T06:55:57.6986732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h 2025-09-07T06:55:57.6991566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_native.h 2025-09-07T06:55:57.6995446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_ops.h 2025-09-07T06:55:57.6999560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d.h 2025-09-07T06:55:57.7003314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h 2025-09-07T06:55:57.7007087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h 2025-09-07T06:55:57.7011120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_native.h 2025-09-07T06:55:57.7014772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_ops.h 2025-09-07T06:55:57.7018597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d.h 2025-09-07T06:55:57.7022427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h 2025-09-07T06:55:57.7026685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h 2025-09-07T06:55:57.7030552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_native.h 2025-09-07T06:55:57.7034356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_ops.h 2025-09-07T06:55:57.7038451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean.h 2025-09-07T06:55:57.7042267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.7045918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7049590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7053322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cpu_dispatch.h 2025-09-07T06:55:57.7057774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cuda_dispatch.h 2025-09-07T06:55:57.7061875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta.h 2025-09-07T06:55:57.7065687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta_dispatch.h 2025-09-07T06:55:57.7070118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_native.h 2025-09-07T06:55:57.7074362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_ops.h 2025-09-07T06:55:57.7077985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median.h 2025-09-07T06:55:57.7082150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7086214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7091311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cpu_dispatch.h 2025-09-07T06:55:57.7094301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cuda_dispatch.h 2025-09-07T06:55:57.7098658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_native.h 2025-09-07T06:55:57.7102854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_ops.h 2025-09-07T06:55:57.7106343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid.h 2025-09-07T06:55:57.7111086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7114641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_native.h 2025-09-07T06:55:57.7118282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_ops.h 2025-09-07T06:55:57.7121820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH.h 2025-09-07T06:55:57.7125492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7129317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_native.h 2025-09-07T06:55:57.7132930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_ops.h 2025-09-07T06:55:57.7136486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min.h 2025-09-07T06:55:57.7140640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum.h 2025-09-07T06:55:57.7144258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.7149044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cpu_dispatch.h 2025-09-07T06:55:57.7151936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cuda_dispatch.h 2025-09-07T06:55:57.7155669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta.h 2025-09-07T06:55:57.7160456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta_dispatch.h 2025-09-07T06:55:57.7163591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_native.h 2025-09-07T06:55:57.7167813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_ops.h 2025-09-07T06:55:57.7172170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.7175755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7180113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cpu_dispatch.h 2025-09-07T06:55:57.7183965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cuda_dispatch.h 2025-09-07T06:55:57.7187699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta.h 2025-09-07T06:55:57.7191285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta_dispatch.h 2025-09-07T06:55:57.7195082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_native.h 2025-09-07T06:55:57.7199078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_ops.h 2025-09-07T06:55:57.7202720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm.h 2025-09-07T06:55:57.7206550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward.h 2025-09-07T06:55:57.7210394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7214250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h 2025-09-07T06:55:57.7218475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_native.h 2025-09-07T06:55:57.7222257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h 2025-09-07T06:55:57.7226452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7230314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h 2025-09-07T06:55:57.7235163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_native.h 2025-09-07T06:55:57.7238216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_ops.h 2025-09-07T06:55:57.7242644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution.h 2025-09-07T06:55:57.7258760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu.h 2025-09-07T06:55:57.7259525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h 2025-09-07T06:55:57.7260270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_native.h 2025-09-07T06:55:57.7260966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h 2025-09-07T06:55:57.7267297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7269064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h 2025-09-07T06:55:57.7273235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_native.h 2025-09-07T06:55:57.7277113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_ops.h 2025-09-07T06:55:57.7280814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu.h 2025-09-07T06:55:57.7284924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h 2025-09-07T06:55:57.7288797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_native.h 2025-09-07T06:55:57.7293198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_ops.h 2025-09-07T06:55:57.7297013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose.h 2025-09-07T06:55:57.7301433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7305574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h 2025-09-07T06:55:57.7309431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_native.h 2025-09-07T06:55:57.7313233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_ops.h 2025-09-07T06:55:57.7317357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution.h 2025-09-07T06:55:57.7321494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7325373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h 2025-09-07T06:55:57.7329250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_native.h 2025-09-07T06:55:57.7333137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h 2025-09-07T06:55:57.7337116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn.h 2025-09-07T06:55:57.7341436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward.h 2025-09-07T06:55:57.7345933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7349781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h 2025-09-07T06:55:57.7353959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_native.h 2025-09-07T06:55:57.7357754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_ops.h 2025-09-07T06:55:57.7361569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7365444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h 2025-09-07T06:55:57.7369206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_native.h 2025-09-07T06:55:57.7372966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_ops.h 2025-09-07T06:55:57.7376602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish.h 2025-09-07T06:55:57.7380072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward.h 2025-09-07T06:55:57.7383928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7387735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cpu_dispatch.h 2025-09-07T06:55:57.7391861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cuda_dispatch.h 2025-09-07T06:55:57.7395610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_native.h 2025-09-07T06:55:57.7399331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_ops.h 2025-09-07T06:55:57.7403319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.7407390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cpu_dispatch.h 2025-09-07T06:55:57.7411189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cuda_dispatch.h 2025-09-07T06:55:57.7414701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta.h 2025-09-07T06:55:57.7418493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta_dispatch.h 2025-09-07T06:55:57.7422163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_native.h 2025-09-07T06:55:57.7425887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_ops.h 2025-09-07T06:55:57.7429424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h 2025-09-07T06:55:57.7433235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h 2025-09-07T06:55:57.7437141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7440848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h 2025-09-07T06:55:57.7445196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h 2025-09-07T06:55:57.7449148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h 2025-09-07T06:55:57.7453268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h 2025-09-07T06:55:57.7457172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution.h 2025-09-07T06:55:57.7461200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7465079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_native.h 2025-09-07T06:55:57.7469057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_ops.h 2025-09-07T06:55:57.7472840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear.h 2025-09-07T06:55:57.7476603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward.h 2025-09-07T06:55:57.7480951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7484773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input.h 2025-09-07T06:55:57.7488748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7492755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h 2025-09-07T06:55:57.7496628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h 2025-09-07T06:55:57.7500470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_native.h 2025-09-07T06:55:57.7505073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_ops.h 2025-09-07T06:55:57.7508947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights.h 2025-09-07T06:55:57.7512933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7516955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h 2025-09-07T06:55:57.7520822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h 2025-09-07T06:55:57.7524714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7528438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_native.h 2025-09-07T06:55:57.7532178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_ops.h 2025-09-07T06:55:57.7536234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d.h 2025-09-07T06:55:57.7540806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h 2025-09-07T06:55:57.7544988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7548863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h 2025-09-07T06:55:57.7552771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h 2025-09-07T06:55:57.7556826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7561102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_native.h 2025-09-07T06:55:57.7565767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h 2025-09-07T06:55:57.7600092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d.h 2025-09-07T06:55:57.7604333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h 2025-09-07T06:55:57.7608341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7612241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h 2025-09-07T06:55:57.7616798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h 2025-09-07T06:55:57.7633185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7634055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_native.h 2025-09-07T06:55:57.7634702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h 2025-09-07T06:55:57.7635515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h 2025-09-07T06:55:57.7637513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7641257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h 2025-09-07T06:55:57.7645874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h 2025-09-07T06:55:57.7649786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h 2025-09-07T06:55:57.7654719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7657591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h 2025-09-07T06:55:57.7661654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h 2025-09-07T06:55:57.7666243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer.h 2025-09-07T06:55:57.7669855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h 2025-09-07T06:55:57.7675260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7679355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h 2025-09-07T06:55:57.7683605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h 2025-09-07T06:55:57.7687481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h 2025-09-07T06:55:57.7691706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7695842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h 2025-09-07T06:55:57.7700662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_native.h 2025-09-07T06:55:57.7703594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h 2025-09-07T06:55:57.7707431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm.h 2025-09-07T06:55:57.7712131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.7715063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cpu_dispatch.h 2025-09-07T06:55:57.7718759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cuda_dispatch.h 2025-09-07T06:55:57.7722340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta.h 2025-09-07T06:55:57.7725918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta_dispatch.h 2025-09-07T06:55:57.7729723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_native.h 2025-09-07T06:55:57.7733332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_ops.h 2025-09-07T06:55:57.7737361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode.h 2025-09-07T06:55:57.7741411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7745305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7749116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cpu_dispatch.h 2025-09-07T06:55:57.7772407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cuda_dispatch.h 2025-09-07T06:55:57.7772996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_native.h 2025-09-07T06:55:57.7773519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_ops.h 2025-09-07T06:55:57.7774178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis.h 2025-09-07T06:55:57.7774856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7775552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_native.h 2025-09-07T06:55:57.7778470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_ops.h 2025-09-07T06:55:57.7781587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim.h 2025-09-07T06:55:57.7785503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7790679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_native.h 2025-09-07T06:55:57.7793179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_ops.h 2025-09-07T06:55:57.7797020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward.h 2025-09-07T06:55:57.7800822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7804877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_native.h 2025-09-07T06:55:57.7808710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_ops.h 2025-09-07T06:55:57.7812507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward.h 2025-09-07T06:55:57.7816489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.7820378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h 2025-09-07T06:55:57.7824934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h 2025-09-07T06:55:57.7828683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss.h 2025-09-07T06:55:57.7832246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward.h 2025-09-07T06:55:57.7835768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h 2025-09-07T06:55:57.7839482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h 2025-09-07T06:55:57.7843184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_native.h 2025-09-07T06:55:57.7846908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_ops.h 2025-09-07T06:55:57.7851227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.7855165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cpu_dispatch.h 2025-09-07T06:55:57.7858910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cuda_dispatch.h 2025-09-07T06:55:57.7862643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta.h 2025-09-07T06:55:57.7866549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta_dispatch.h 2025-09-07T06:55:57.7870337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_native.h 2025-09-07T06:55:57.7874395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_ops.h 2025-09-07T06:55:57.7878378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort.h 2025-09-07T06:55:57.7881963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7885515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_native.h 2025-09-07T06:55:57.7889210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_ops.h 2025-09-07T06:55:57.7892957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT.h 2025-09-07T06:55:57.7896472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7900049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_native.h 2025-09-07T06:55:57.7904823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_ops.h 2025-09-07T06:55:57.7907996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul.h 2025-09-07T06:55:57.7911950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss.h 2025-09-07T06:55:57.7915681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward.h 2025-09-07T06:55:57.7919473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h 2025-09-07T06:55:57.7923300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h 2025-09-07T06:55:57.7927718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h 2025-09-07T06:55:57.7931934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h 2025-09-07T06:55:57.7936131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7939995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward.h 2025-09-07T06:55:57.7943854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h 2025-09-07T06:55:57.7948005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h 2025-09-07T06:55:57.7951841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h 2025-09-07T06:55:57.7955915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h 2025-09-07T06:55:57.7960024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_native.h 2025-09-07T06:55:57.7963724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_ops.h 2025-09-07T06:55:57.7967602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial.h 2025-09-07T06:55:57.7971223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cpu_dispatch.h 2025-09-07T06:55:57.7975220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cuda_dispatch.h 2025-09-07T06:55:57.7978991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_native.h 2025-09-07T06:55:57.7982974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_ops.h 2025-09-07T06:55:57.7986902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply.h 2025-09-07T06:55:57.7990629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.7994305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_native.h 2025-09-07T06:55:57.7997978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_ops.h 2025-09-07T06:55:57.8002051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss.h 2025-09-07T06:55:57.8005784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward.h 2025-09-07T06:55:57.8009553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h 2025-09-07T06:55:57.8013389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h 2025-09-07T06:55:57.8017159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_native.h 2025-09-07T06:55:57.8021166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_ops.h 2025-09-07T06:55:57.8025103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h 2025-09-07T06:55:57.8028933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h 2025-09-07T06:55:57.8032648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_native.h 2025-09-07T06:55:57.8036742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_ops.h 2025-09-07T06:55:57.8040764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.8044607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8048227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cpu_dispatch.h 2025-09-07T06:55:57.8052027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cuda_dispatch.h 2025-09-07T06:55:57.8065659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta.h 2025-09-07T06:55:57.8069437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta_dispatch.h 2025-09-07T06:55:57.8073349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_native.h 2025-09-07T06:55:57.8077836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_ops.h 2025-09-07T06:55:57.8081638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv.h 2025-09-07T06:55:57.8084883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma.h 2025-09-07T06:55:57.8089051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8121788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h 2025-09-07T06:55:57.8125670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h 2025-09-07T06:55:57.8129440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_native.h 2025-09-07T06:55:57.8134538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_ops.h 2025-09-07T06:55:57.8137913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8141359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_native.h 2025-09-07T06:55:57.8145211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_ops.h 2025-09-07T06:55:57.8148812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean.h 2025-09-07T06:55:57.8152434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.8156659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_native.h 2025-09-07T06:55:57.8160549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_ops.h 2025-09-07T06:55:57.8164368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian.h 2025-09-07T06:55:57.8168290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8172259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.8175954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cpu_dispatch.h 2025-09-07T06:55:57.8179881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cuda_dispatch.h 2025-09-07T06:55:57.8183785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_native.h 2025-09-07T06:55:57.8187761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_ops.h 2025-09-07T06:55:57.8191949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile.h 2025-09-07T06:55:57.8196145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.8200797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_native.h 2025-09-07T06:55:57.8203569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_ops.h 2025-09-07T06:55:57.8207278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum.h 2025-09-07T06:55:57.8210732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cpu_dispatch.h 2025-09-07T06:55:57.8214562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cuda_dispatch.h 2025-09-07T06:55:57.8218343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_native.h 2025-09-07T06:55:57.8222189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_ops.h 2025-09-07T06:55:57.8226146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num.h 2025-09-07T06:55:57.8230542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8235375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h 2025-09-07T06:55:57.8238113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h 2025-09-07T06:55:57.8242733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_native.h 2025-09-07T06:55:57.8247013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_ops.h 2025-09-07T06:55:57.8251021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow.h 2025-09-07T06:55:57.8267166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.8267834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy.h 2025-09-07T06:55:57.8268583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:57.8269385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h 2025-09-07T06:55:57.8273330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_native.h 2025-09-07T06:55:57.8276149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_ops.h 2025-09-07T06:55:57.8280155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_native.h 2025-09-07T06:55:57.8285127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_ops.h 2025-09-07T06:55:57.8287638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm.h 2025-09-07T06:55:57.8291593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward.h 2025-09-07T06:55:57.8295264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8299000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h 2025-09-07T06:55:57.8303056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h 2025-09-07T06:55:57.8307005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_native.h 2025-09-07T06:55:57.8310824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_ops.h 2025-09-07T06:55:57.8314561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h 2025-09-07T06:55:57.8318686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h 2025-09-07T06:55:57.8322419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_native.h 2025-09-07T06:55:57.8326152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_ops.h 2025-09-07T06:55:57.8330134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle.h 2025-09-07T06:55:57.8335279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:57.8339102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h 2025-09-07T06:55:57.8342967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_native.h 2025-09-07T06:55:57.8346852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_ops.h 2025-09-07T06:55:57.8350697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout.h 2025-09-07T06:55:57.8354620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward.h 2025-09-07T06:55:57.8358784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8362606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h 2025-09-07T06:55:57.8366450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h 2025-09-07T06:55:57.8370207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_native.h 2025-09-07T06:55:57.8374053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_ops.h 2025-09-07T06:55:57.8378462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8382202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cpu_dispatch.h 2025-09-07T06:55:57.8386072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cuda_dispatch.h 2025-09-07T06:55:57.8389759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_native.h 2025-09-07T06:55:57.8393549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_ops.h 2025-09-07T06:55:57.8397396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm.h 2025-09-07T06:55:57.8400981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward.h 2025-09-07T06:55:57.8405183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8410415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h 2025-09-07T06:55:57.8413392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h 2025-09-07T06:55:57.8417275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_native.h 2025-09-07T06:55:57.8421588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_ops.h 2025-09-07T06:55:57.8425759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8430685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h 2025-09-07T06:55:57.8435147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h 2025-09-07T06:55:57.8438931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_native.h 2025-09-07T06:55:57.8442758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_ops.h 2025-09-07T06:55:57.8446477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm.h 2025-09-07T06:55:57.8451299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward.h 2025-09-07T06:55:57.8455573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:57.8459412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h 2025-09-07T06:55:57.8463243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h 2025-09-07T06:55:58.1017192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_native.h 2025-09-07T06:55:58.1021474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_ops.h 2025-09-07T06:55:58.1025720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1029953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h 2025-09-07T06:55:58.1033921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h 2025-09-07T06:55:58.1037840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_native.h 2025-09-07T06:55:58.1041691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_ops.h 2025-09-07T06:55:58.1045892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm.h 2025-09-07T06:55:58.1050061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1054141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_native.h 2025-09-07T06:55:58.1057978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_ops.h 2025-09-07T06:55:58.1061816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne.h 2025-09-07T06:55:58.1065346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg.h 2025-09-07T06:55:58.1069635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative.h 2025-09-07T06:55:58.1074001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1077787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_native.h 2025-09-07T06:55:58.1082077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_ops.h 2025-09-07T06:55:58.1086789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1090495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cpu_dispatch.h 2025-09-07T06:55:58.1094087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cuda_dispatch.h 2025-09-07T06:55:58.1098538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta.h 2025-09-07T06:55:58.1102226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta_dispatch.h 2025-09-07T06:55:58.1105964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_native.h 2025-09-07T06:55:58.1109723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_ops.h 2025-09-07T06:55:58.1113461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor.h 2025-09-07T06:55:58.1117412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1121322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_native.h 2025-09-07T06:55:58.1125251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_ops.h 2025-09-07T06:55:58.1128687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty.h 2025-09-07T06:55:58.1132895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1136831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_native.h 2025-09-07T06:55:58.1140460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_ops.h 2025-09-07T06:55:58.1144316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided.h 2025-09-07T06:55:58.1148620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1152371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1156528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_native.h 2025-09-07T06:55:58.1160638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_ops.h 2025-09-07T06:55:58.1164395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full.h 2025-09-07T06:55:58.1168285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1172116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_native.h 2025-09-07T06:55:58.1176645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_ops.h 2025-09-07T06:55:58.1179747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones.h 2025-09-07T06:55:58.1183416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1187186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_native.h 2025-09-07T06:55:58.1191438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_ops.h 2025-09-07T06:55:58.1195492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros.h 2025-09-07T06:55:58.1234299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1238097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_native.h 2025-09-07T06:55:58.1241803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_ops.h 2025-09-07T06:55:58.1246268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter.h 2025-09-07T06:55:58.1250118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1253713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cpu_dispatch.h 2025-09-07T06:55:58.1257672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cuda_dispatch.h 2025-09-07T06:55:58.1261493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta.h 2025-09-07T06:55:58.1265466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta_dispatch.h 2025-09-07T06:55:58.1269300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_native.h 2025-09-07T06:55:58.1273629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_ops.h 2025-09-07T06:55:58.1277588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1281265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cpu_dispatch.h 2025-09-07T06:55:58.1285030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cuda_dispatch.h 2025-09-07T06:55:58.1288761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta.h 2025-09-07T06:55:58.1292289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta_dispatch.h 2025-09-07T06:55:58.1296187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_native.h 2025-09-07T06:55:58.1300452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_ops.h 2025-09-07T06:55:58.1304449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss.h 2025-09-07T06:55:58.1308496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d.h 2025-09-07T06:55:58.1313109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward.h 2025-09-07T06:55:58.1317578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h 2025-09-07T06:55:58.1322232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h 2025-09-07T06:55:58.1326932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_native.h 2025-09-07T06:55:58.1331402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_ops.h 2025-09-07T06:55:58.1335923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1340402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward.h 2025-09-07T06:55:58.1344287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h 2025-09-07T06:55:58.1348257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h 2025-09-07T06:55:58.1352456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_native.h 2025-09-07T06:55:58.1356263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_ops.h 2025-09-07T06:55:58.1360121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_native.h 2025-09-07T06:55:58.1363839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_ops.h 2025-09-07T06:55:58.1367541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward.h 2025-09-07T06:55:58.1371433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1375369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h 2025-09-07T06:55:58.1379182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h 2025-09-07T06:55:58.1383997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta.h 2025-09-07T06:55:58.1387666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h 2025-09-07T06:55:58.1394475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_native.h 2025-09-07T06:55:58.1398244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_ops.h 2025-09-07T06:55:58.1402167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1406142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward.h 2025-09-07T06:55:58.1410182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1414203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h 2025-09-07T06:55:58.1417955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h 2025-09-07T06:55:58.1421655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta.h 2025-09-07T06:55:58.1425580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h 2025-09-07T06:55:58.1429532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_native.h 2025-09-07T06:55:58.1433339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_ops.h 2025-09-07T06:55:58.1437200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_native.h 2025-09-07T06:55:58.1440969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd.h 2025-09-07T06:55:58.1445343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1449120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_native.h 2025-09-07T06:55:58.1452895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_ops.h 2025-09-07T06:55:58.1456805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_ops.h 2025-09-07T06:55:58.1460532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero.h 2025-09-07T06:55:58.1464083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cpu_dispatch.h 2025-09-07T06:55:58.1467912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cuda_dispatch.h 2025-09-07T06:55:58.1471535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_native.h 2025-09-07T06:55:58.1475240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy.h 2025-09-07T06:55:58.1479126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1482812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_native.h 2025-09-07T06:55:58.1487073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_ops.h 2025-09-07T06:55:58.1490858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_ops.h 2025-09-07T06:55:58.1494668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static.h 2025-09-07T06:55:58.1498490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h 2025-09-07T06:55:58.1502597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h 2025-09-07T06:55:58.1506561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_native.h 2025-09-07T06:55:58.1510340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_ops.h 2025-09-07T06:55:58.1514221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm.h 2025-09-07T06:55:58.1517621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal.h 2025-09-07T06:55:58.1521243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1524906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cpu_dispatch.h 2025-09-07T06:55:58.1528413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cuda_dispatch.h 2025-09-07T06:55:58.1532991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_meta_dispatch.h 2025-09-07T06:55:58.1537219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_native.h 2025-09-07T06:55:58.1541020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_ops.h 2025-09-07T06:55:58.1545248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1549041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1553070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1556745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cpu_dispatch.h 2025-09-07T06:55:58.1560414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cuda_dispatch.h 2025-09-07T06:55:58.1564214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim.h 2025-09-07T06:55:58.1568075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1571894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_native.h 2025-09-07T06:55:58.1575618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_ops.h 2025-09-07T06:55:58.1579338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta.h 2025-09-07T06:55:58.1583232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta_dispatch.h 2025-09-07T06:55:58.1586982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_native.h 2025-09-07T06:55:58.1590691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_ops.h 2025-09-07T06:55:58.1594159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal.h 2025-09-07T06:55:58.1598095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1602301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_native.h 2025-09-07T06:55:58.1606214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_ops.h 2025-09-07T06:55:58.1609902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm.h 2025-09-07T06:55:58.1613838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1617684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_native.h 2025-09-07T06:55:58.1621350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_ops.h 2025-09-07T06:55:58.1625303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T.h 2025-09-07T06:55:58.1629194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1632851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_native.h 2025-09-07T06:55:58.1636888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_ops.h 2025-09-07T06:55:58.1640939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones.h 2025-09-07T06:55:58.1644597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1648338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like.h 2025-09-07T06:55:58.1652240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1656220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_native.h 2025-09-07T06:55:58.1660249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_ops.h 2025-09-07T06:55:58.1663845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_native.h 2025-09-07T06:55:58.1667555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_ops.h 2025-09-07T06:55:58.1671481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot.h 2025-09-07T06:55:58.1675152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1678689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_native.h 2025-09-07T06:55:58.1682379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_ops.h 2025-09-07T06:55:58.1686237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or.h 2025-09-07T06:55:58.1690030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr.h 2025-09-07T06:55:58.1693722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1697431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_native.h 2025-09-07T06:55:58.1701010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_ops.h 2025-09-07T06:55:58.1704790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr.h 2025-09-07T06:55:58.1708256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cpu_dispatch.h 2025-09-07T06:55:58.1711941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cuda_dispatch.h 2025-09-07T06:55:58.1715654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_native.h 2025-09-07T06:55:58.1719468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_ops.h 2025-09-07T06:55:58.1723465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1727112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_native.h 2025-09-07T06:55:58.1731159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_ops.h 2025-09-07T06:55:58.1734837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer.h 2025-09-07T06:55:58.1738176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1741883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_native.h 2025-09-07T06:55:58.1745695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_ops.h 2025-09-07T06:55:58.1749538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr.h 2025-09-07T06:55:58.1753686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1757754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_native.h 2025-09-07T06:55:58.1761268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_ops.h 2025-09-07T06:55:58.1765614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad.h 2025-09-07T06:55:58.1769363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1793112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_native.h 2025-09-07T06:55:58.1793348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_ops.h 2025-09-07T06:55:58.1793563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence.h 2025-09-07T06:55:58.1793938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1794184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_native.h 2025-09-07T06:55:58.1794717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_ops.h 2025-09-07T06:55:58.1798539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance.h 2025-09-07T06:55:58.1802335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1805953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_native.h 2025-09-07T06:55:58.1811333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_ops.h 2025-09-07T06:55:58.1814176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist.h 2025-09-07T06:55:58.1817923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1821469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_native.h 2025-09-07T06:55:58.1825269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_ops.h 2025-09-07T06:55:58.1829087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute.h 2025-09-07T06:55:58.1832594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1836148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy.h 2025-09-07T06:55:58.1840330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1844696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1848205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_native.h 2025-09-07T06:55:58.1852032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_ops.h 2025-09-07T06:55:58.1855751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_native.h 2025-09-07T06:55:58.1859460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_ops.h 2025-09-07T06:55:58.1863152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse.h 2025-09-07T06:55:58.1866993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1870664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_native.h 2025-09-07T06:55:58.1875312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_ops.h 2025-09-07T06:55:58.1878122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory.h 2025-09-07T06:55:58.1882432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1886120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_native.h 2025-09-07T06:55:58.1889807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_ops.h 2025-09-07T06:55:58.1893722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle.h 2025-09-07T06:55:58.1897588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1901374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1905234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h 2025-09-07T06:55:58.1908973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_native.h 2025-09-07T06:55:58.1912920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_ops.h 2025-09-07T06:55:58.1916563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle.h 2025-09-07T06:55:58.1920763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.1924536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1928332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h 2025-09-07T06:55:58.1932836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_native.h 2025-09-07T06:55:58.1936939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_ops.h 2025-09-07T06:55:58.1940461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson.h 2025-09-07T06:55:58.1944774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1949297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cpu_dispatch.h 2025-09-07T06:55:58.1953968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cuda_dispatch.h 2025-09-07T06:55:58.1956798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_native.h 2025-09-07T06:55:58.1960667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss.h 2025-09-07T06:55:58.1965550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.1968417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_native.h 2025-09-07T06:55:58.1972782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_ops.h 2025-09-07T06:55:58.1977104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_ops.h 2025-09-07T06:55:58.1980340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar.h 2025-09-07T06:55:58.1984289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.1988647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cpu_dispatch.h 2025-09-07T06:55:58.1991753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cuda_dispatch.h 2025-09-07T06:55:58.1996048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_native.h 2025-09-07T06:55:58.2000232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_ops.h 2025-09-07T06:55:58.2003649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma.h 2025-09-07T06:55:58.2007742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.2012149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2015251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cpu_dispatch.h 2025-09-07T06:55:58.2019394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cuda_dispatch.h 2025-09-07T06:55:58.2023882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta.h 2025-09-07T06:55:58.2027292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta_dispatch.h 2025-09-07T06:55:58.2031683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_native.h 2025-09-07T06:55:58.2035544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_ops.h 2025-09-07T06:55:58.2039324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive.h 2025-09-07T06:55:58.2043316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2046990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_native.h 2025-09-07T06:55:58.2050573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_ops.h 2025-09-07T06:55:58.2054649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow.h 2025-09-07T06:55:58.2058529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.2062341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cpu_dispatch.h 2025-09-07T06:55:58.2066348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cuda_dispatch.h 2025-09-07T06:55:58.2069890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta.h 2025-09-07T06:55:58.2073341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta_dispatch.h 2025-09-07T06:55:58.2077091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_native.h 2025-09-07T06:55:58.2081026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_ops.h 2025-09-07T06:55:58.2084279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu.h 2025-09-07T06:55:58.2089025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2093416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_native.h 2025-09-07T06:55:58.2097122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_ops.h 2025-09-07T06:55:58.2100880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod.h 2025-09-07T06:55:58.2105086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.2109076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2113561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2117394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cpu_dispatch.h 2025-09-07T06:55:58.2121613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cuda_dispatch.h 2025-09-07T06:55:58.2125158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta.h 2025-09-07T06:55:58.2129277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta_dispatch.h 2025-09-07T06:55:58.2133218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_native.h 2025-09-07T06:55:58.2136690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_ops.h 2025-09-07T06:55:58.2140895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types.h 2025-09-07T06:55:58.2144858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2148539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_native.h 2025-09-07T06:55:58.2152764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_ops.h 2025-09-07T06:55:58.2156688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put.h 2025-09-07T06:55:58.2160285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2164117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cpu_dispatch.h 2025-09-07T06:55:58.2167972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cuda_dispatch.h 2025-09-07T06:55:58.2171667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_meta_dispatch.h 2025-09-07T06:55:58.2175571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_native.h 2025-09-07T06:55:58.2179440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_ops.h 2025-09-07T06:55:58.2182871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr.h 2025-09-07T06:55:58.2186687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2190331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_native.h 2025-09-07T06:55:58.2193976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_ops.h 2025-09-07T06:55:58.2198224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme.h 2025-09-07T06:55:58.2202164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_native.h 2025-09-07T06:55:58.2205848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_ops.h 2025-09-07T06:55:58.2210261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile.h 2025-09-07T06:55:58.2214295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2217814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_native.h 2025-09-07T06:55:58.2221628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_ops.h 2025-09-07T06:55:58.2225533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm.h 2025-09-07T06:55:58.2229513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2262834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_native.h 2025-09-07T06:55:58.2267176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_ops.h 2025-09-07T06:55:58.2271331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell.h 2025-09-07T06:55:58.2275347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2279247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_native.h 2025-09-07T06:55:58.2283038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_ops.h 2025-09-07T06:55:58.2286823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell.h 2025-09-07T06:55:58.2291333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2295397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_native.h 2025-09-07T06:55:58.2299361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_ops.h 2025-09-07T06:55:58.2303303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d.h 2025-09-07T06:55:58.2307368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2311219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_native.h 2025-09-07T06:55:58.2315092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_ops.h 2025-09-07T06:55:58.2319220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d.h 2025-09-07T06:55:58.2324030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2327960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_native.h 2025-09-07T06:55:58.2333550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_ops.h 2025-09-07T06:55:58.2337504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d.h 2025-09-07T06:55:58.2342041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2346062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_native.h 2025-09-07T06:55:58.2349841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_ops.h 2025-09-07T06:55:58.2353632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell.h 2025-09-07T06:55:58.2357552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2362949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h 2025-09-07T06:55:58.2366950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h 2025-09-07T06:55:58.2370607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell.h 2025-09-07T06:55:58.2374823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2378632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h 2025-09-07T06:55:58.2382875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h 2025-09-07T06:55:58.2386885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel.h 2025-09-07T06:55:58.2390811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2394673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h 2025-09-07T06:55:58.2398433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h 2025-09-07T06:55:58.2402523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_native.h 2025-09-07T06:55:58.2406343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_ops.h 2025-09-07T06:55:58.2410199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor.h 2025-09-07T06:55:58.2414172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2419302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h 2025-09-07T06:55:58.2423312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h 2025-09-07T06:55:58.2427281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic.h 2025-09-07T06:55:58.2431305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2436547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h 2025-09-07T06:55:58.2440716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h 2025-09-07T06:55:58.2444596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h 2025-09-07T06:55:58.2448377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h 2025-09-07T06:55:58.2452140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_native.h 2025-09-07T06:55:58.2456214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_ops.h 2025-09-07T06:55:58.2459931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis.h 2025-09-07T06:55:58.2463713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_native.h 2025-09-07T06:55:58.2467301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_ops.h 2025-09-07T06:55:58.2471172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales.h 2025-09-07T06:55:58.2475075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2478771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_native.h 2025-09-07T06:55:58.2482452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_ops.h 2025-09-07T06:55:58.2486195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points.h 2025-09-07T06:55:58.2490303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2494370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_native.h 2025-09-07T06:55:58.2498007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_ops.h 2025-09-07T06:55:58.2501716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale.h 2025-09-07T06:55:58.2505222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_native.h 2025-09-07T06:55:58.2508801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_ops.h 2025-09-07T06:55:58.2512417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point.h 2025-09-07T06:55:58.2516030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_native.h 2025-09-07T06:55:58.2519896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_ops.h 2025-09-07T06:55:58.2523552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg.h 2025-09-07T06:55:58.2527388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2530914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_native.h 2025-09-07T06:55:58.2534488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_ops.h 2025-09-07T06:55:58.2538522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand.h 2025-09-07T06:55:58.2542473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint.h 2025-09-07T06:55:58.2546306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2550130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like.h 2025-09-07T06:55:58.2554014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2557578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_native.h 2025-09-07T06:55:58.2561404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_ops.h 2025-09-07T06:55:58.2566104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_native.h 2025-09-07T06:55:58.2569750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_ops.h 2025-09-07T06:55:58.2573319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn.h 2025-09-07T06:55:58.2577070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2580884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2584751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like.h 2025-09-07T06:55:58.2588386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2593667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-09-07T06:55:58.2598712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_native.h 2025-09-07T06:55:58.2603750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_ops.h 2025-09-07T06:55:58.2609518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_native.h 2025-09-07T06:55:58.2615041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_ops.h 2025-09-07T06:55:58.2618770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random.h 2025-09-07T06:55:58.2623696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2628631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cpu_dispatch.h 2025-09-07T06:55:58.2633521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cuda_dispatch.h 2025-09-07T06:55:58.2638741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_meta_dispatch.h 2025-09-07T06:55:58.2642633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_native.h 2025-09-07T06:55:58.2647653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_ops.h 2025-09-07T06:55:58.2652628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm.h 2025-09-07T06:55:58.2657485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2662453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cpu_dispatch.h 2025-09-07T06:55:58.2668102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cuda_dispatch.h 2025-09-07T06:55:58.2672078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_native.h 2025-09-07T06:55:58.2677106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_ops.h 2025-09-07T06:55:58.2682332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2687413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2692281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like.h 2025-09-07T06:55:58.2696969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2701162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_native.h 2025-09-07T06:55:58.2706841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_ops.h 2025-09-07T06:55:58.2711756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_native.h 2025-09-07T06:55:58.2716556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_ops.h 2025-09-07T06:55:58.2721299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range.h 2025-09-07T06:55:58.2725001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.2729885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cpu_dispatch.h 2025-09-07T06:55:58.2734881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cuda_dispatch.h 2025-09-07T06:55:58.2739849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_meta_dispatch.h 2025-09-07T06:55:58.2744923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_native.h 2025-09-07T06:55:58.2748809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_ops.h 2025-09-07T06:55:58.2753840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel.h 2025-09-07T06:55:58.2758949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2763850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_native.h 2025-09-07T06:55:58.2768909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_ops.h 2025-09-07T06:55:58.2773977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real.h 2025-09-07T06:55:58.2777668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2791734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_native.h 2025-09-07T06:55:58.2813168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_ops.h 2025-09-07T06:55:58.2818257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal.h 2025-09-07T06:55:58.2824141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.2828043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cpu_dispatch.h 2025-09-07T06:55:58.2834234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cuda_dispatch.h 2025-09-07T06:55:58.2839967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta.h 2025-09-07T06:55:58.2843632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta_dispatch.h 2025-09-07T06:55:58.2849033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_native.h 2025-09-07T06:55:58.2852827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_ops.h 2025-09-07T06:55:58.2856720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream.h 2025-09-07T06:55:58.2860679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_cuda_dispatch.h 2025-09-07T06:55:58.2865923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_native.h 2025-09-07T06:55:58.2869680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_ops.h 2025-09-07T06:55:58.2873361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names.h 2025-09-07T06:55:58.2877282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.2880847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_native.h 2025-09-07T06:55:58.2885431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_ops.h 2025-09-07T06:55:58.2889370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d.h 2025-09-07T06:55:58.2893023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward.h 2025-09-07T06:55:58.2898435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.2902228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h 2025-09-07T06:55:58.2906171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h 2025-09-07T06:55:58.2910066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta.h 2025-09-07T06:55:58.2914112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h 2025-09-07T06:55:58.2917940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_native.h 2025-09-07T06:55:58.2921771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_ops.h 2025-09-07T06:55:58.2925688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.2929398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h 2025-09-07T06:55:58.2933343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h 2025-09-07T06:55:58.2938138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta.h 2025-09-07T06:55:58.2942450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h 2025-09-07T06:55:58.2946407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_native.h 2025-09-07T06:55:58.2950257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_ops.h 2025-09-07T06:55:58.2954084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d.h 2025-09-07T06:55:58.2957943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward.h 2025-09-07T06:55:58.2961992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h 2025-09-07T06:55:58.2965969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h 2025-09-07T06:55:58.2969889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_native.h 2025-09-07T06:55:58.2974713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_ops.h 2025-09-07T06:55:58.2978680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h 2025-09-07T06:55:58.2982506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h 2025-09-07T06:55:58.2986731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_native.h 2025-09-07T06:55:58.2990619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_ops.h 2025-09-07T06:55:58.2994747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d.h 2025-09-07T06:55:58.2998712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward.h 2025-09-07T06:55:58.3002785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3006653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h 2025-09-07T06:55:58.3010683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h 2025-09-07T06:55:58.3014523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta.h 2025-09-07T06:55:58.3018467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h 2025-09-07T06:55:58.3022385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_native.h 2025-09-07T06:55:58.3026317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_ops.h 2025-09-07T06:55:58.3030488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3034473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h 2025-09-07T06:55:58.3038632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h 2025-09-07T06:55:58.3043118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta.h 2025-09-07T06:55:58.3047155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h 2025-09-07T06:55:58.3051064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_native.h 2025-09-07T06:55:58.3054933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_ops.h 2025-09-07T06:55:58.3058717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu.h 2025-09-07T06:55:58.3062354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6.h 2025-09-07T06:55:58.3066111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3069819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_native.h 2025-09-07T06:55:58.3073500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_ops.h 2025-09-07T06:55:58.3077428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3081067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cpu_dispatch.h 2025-09-07T06:55:58.3085391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cuda_dispatch.h 2025-09-07T06:55:58.3089008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_meta_dispatch.h 2025-09-07T06:55:58.3093678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_native.h 2025-09-07T06:55:58.3097323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_ops.h 2025-09-07T06:55:58.3100744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder.h 2025-09-07T06:55:58.3104857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3108538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3139032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cpu_dispatch.h 2025-09-07T06:55:58.3142735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cuda_dispatch.h 2025-09-07T06:55:58.3146790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta.h 2025-09-07T06:55:58.3150590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta_dispatch.h 2025-09-07T06:55:58.3154362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_native.h 2025-09-07T06:55:58.3158085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_ops.h 2025-09-07T06:55:58.3219340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename.h 2025-09-07T06:55:58.3222778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3226541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_native.h 2025-09-07T06:55:58.3230652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_ops.h 2025-09-07T06:55:58.3234613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm.h 2025-09-07T06:55:58.3238645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3242520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cpu_dispatch.h 2025-09-07T06:55:58.3246280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cuda_dispatch.h 2025-09-07T06:55:58.3249848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta.h 2025-09-07T06:55:58.3253731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta_dispatch.h 2025-09-07T06:55:58.3257412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_native.h 2025-09-07T06:55:58.3261285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_ops.h 2025-09-07T06:55:58.3265169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat.h 2025-09-07T06:55:58.3268770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3272714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave.h 2025-09-07T06:55:58.3276231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3280143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3283766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h 2025-09-07T06:55:58.3287780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h 2025-09-07T06:55:58.3291554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_native.h 2025-09-07T06:55:58.3295313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_ops.h 2025-09-07T06:55:58.3299026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_native.h 2025-09-07T06:55:58.3302737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_ops.h 2025-09-07T06:55:58.3306565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d.h 2025-09-07T06:55:58.3310249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward.h 2025-09-07T06:55:58.3315979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3318564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h 2025-09-07T06:55:58.3322379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h 2025-09-07T06:55:58.3326293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta.h 2025-09-07T06:55:58.3330801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h 2025-09-07T06:55:58.3334805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_native.h 2025-09-07T06:55:58.3338573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_ops.h 2025-09-07T06:55:58.3342587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3346494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h 2025-09-07T06:55:58.3350390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h 2025-09-07T06:55:58.3354158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta.h 2025-09-07T06:55:58.3358338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h 2025-09-07T06:55:58.3362203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_native.h 2025-09-07T06:55:58.3366086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_ops.h 2025-09-07T06:55:58.3369865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d.h 2025-09-07T06:55:58.3373758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward.h 2025-09-07T06:55:58.3377921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h 2025-09-07T06:55:58.3381648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h 2025-09-07T06:55:58.3385705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_native.h 2025-09-07T06:55:58.3389516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_ops.h 2025-09-07T06:55:58.3394470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3398315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h 2025-09-07T06:55:58.3402258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h 2025-09-07T06:55:58.3406230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta.h 2025-09-07T06:55:58.3410167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h 2025-09-07T06:55:58.3414074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_native.h 2025-09-07T06:55:58.3418013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_ops.h 2025-09-07T06:55:58.3421896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d.h 2025-09-07T06:55:58.3426015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward.h 2025-09-07T06:55:58.3459679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h 2025-09-07T06:55:58.3464253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h 2025-09-07T06:55:58.3468665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_native.h 2025-09-07T06:55:58.3472970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_ops.h 2025-09-07T06:55:58.3477602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3481488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h 2025-09-07T06:55:58.3485472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h 2025-09-07T06:55:58.3489832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta.h 2025-09-07T06:55:58.3493774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h 2025-09-07T06:55:58.3498490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_native.h 2025-09-07T06:55:58.3502328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_ops.h 2025-09-07T06:55:58.3506259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad.h 2025-09-07T06:55:58.3510087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3514172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_native.h 2025-09-07T06:55:58.3517765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_ops.h 2025-09-07T06:55:58.3521350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape.h 2025-09-07T06:55:58.3524736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as.h 2025-09-07T06:55:58.3528563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h 2025-09-07T06:55:58.3532461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3536291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_native.h 2025-09-07T06:55:58.3540247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_ops.h 2025-09-07T06:55:58.3544295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h 2025-09-07T06:55:58.3548322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3552013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_native.h 2025-09-07T06:55:58.3555772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_ops.h 2025-09-07T06:55:58.3560029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize.h 2025-09-07T06:55:58.3563682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as.h 2025-09-07T06:55:58.3567326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3571265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_native.h 2025-09-07T06:55:58.3574982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_ops.h 2025-09-07T06:55:58.3578718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse.h 2025-09-07T06:55:58.3582916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3586839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h 2025-09-07T06:55:58.3590629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_native.h 2025-09-07T06:55:58.3594726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_ops.h 2025-09-07T06:55:58.3598719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3602530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cpu_dispatch.h 2025-09-07T06:55:58.3606434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cuda_dispatch.h 2025-09-07T06:55:58.3610110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_meta_dispatch.h 2025-09-07T06:55:58.3613904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_native.h 2025-09-07T06:55:58.3618116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_ops.h 2025-09-07T06:55:58.3621895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj.h 2025-09-07T06:55:58.3626030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3629710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_native.h 2025-09-07T06:55:58.3633503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_ops.h 2025-09-07T06:55:58.3637241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg.h 2025-09-07T06:55:58.3641346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3645169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_native.h 2025-09-07T06:55:58.3648975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_ops.h 2025-09-07T06:55:58.3652876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type.h 2025-09-07T06:55:58.3656998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3660521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_native.h 2025-09-07T06:55:58.3664385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_ops.h 2025-09-07T06:55:58.3668486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad.h 2025-09-07T06:55:58.3672293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3676017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_native.h 2025-09-07T06:55:58.3679885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_ops.h 2025-09-07T06:55:58.3683705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad.h 2025-09-07T06:55:58.3687556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3691262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_native.h 2025-09-07T06:55:58.3695077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_ops.h 2025-09-07T06:55:58.3698957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm.h 2025-09-07T06:55:58.3702572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3706457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_native.h 2025-09-07T06:55:58.3710295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_ops.h 2025-09-07T06:55:58.3713978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu.h 2025-09-07T06:55:58.3717501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell.h 2025-09-07T06:55:58.3721368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3725133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_native.h 2025-09-07T06:55:58.3728949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_ops.h 2025-09-07T06:55:58.3732818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3737060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_native.h 2025-09-07T06:55:58.3741869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_ops.h 2025-09-07T06:55:58.3745639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh.h 2025-09-07T06:55:58.3749107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell.h 2025-09-07T06:55:58.3752896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3756565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_native.h 2025-09-07T06:55:58.3760398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_ops.h 2025-09-07T06:55:58.3764246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3768050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_native.h 2025-09-07T06:55:58.3771797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_ops.h 2025-09-07T06:55:58.3775986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll.h 2025-09-07T06:55:58.3779587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3783256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cpu_dispatch.h 2025-09-07T06:55:58.3787045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cuda_dispatch.h 2025-09-07T06:55:58.3790777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_native.h 2025-09-07T06:55:58.3794626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_ops.h 2025-09-07T06:55:58.3798040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90.h 2025-09-07T06:55:58.3801630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3805489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_native.h 2025-09-07T06:55:58.3809096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_ops.h 2025-09-07T06:55:58.3812819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round.h 2025-09-07T06:55:58.3816416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3820022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cpu_dispatch.h 2025-09-07T06:55:58.3824179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cuda_dispatch.h 2025-09-07T06:55:58.3828144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta.h 2025-09-07T06:55:58.3832044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta_dispatch.h 2025-09-07T06:55:58.3835975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_native.h 2025-09-07T06:55:58.3839892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_ops.h 2025-09-07T06:55:58.3843877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices.h 2025-09-07T06:55:58.3847771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3851495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy.h 2025-09-07T06:55:58.3855624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3859501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3863286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_native.h 2025-09-07T06:55:58.3867228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_ops.h 2025-09-07T06:55:58.3871312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_native.h 2025-09-07T06:55:58.3875190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_ops.h 2025-09-07T06:55:58.3878841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack.h 2025-09-07T06:55:58.3884078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3887492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_native.h 2025-09-07T06:55:58.3891621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_ops.h 2025-09-07T06:55:58.3895528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu.h 2025-09-07T06:55:58.3899182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.3902771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_native.h 2025-09-07T06:55:58.3906544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_ops.h 2025-09-07T06:55:58.3910686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise.h 2025-09-07T06:55:58.3914596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward.h 2025-09-07T06:55:58.3918635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3922521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_native.h 2025-09-07T06:55:58.3926284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h 2025-09-07T06:55:58.3937871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3938644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h 2025-09-07T06:55:58.3939330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h 2025-09-07T06:55:58.3941887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h 2025-09-07T06:55:58.3945804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_native.h 2025-09-07T06:55:58.3949716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_ops.h 2025-09-07T06:55:58.3953500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift.h 2025-09-07T06:55:58.3957102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.3960908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cpu_dispatch.h 2025-09-07T06:55:58.3964555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cuda_dispatch.h 2025-09-07T06:55:58.3968247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_meta_dispatch.h 2025-09-07T06:55:58.3972014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_native.h 2025-09-07T06:55:58.3975723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_ops.h 2025-09-07T06:55:58.3979328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt.h 2025-09-07T06:55:58.3983990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.3988293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cpu_dispatch.h 2025-09-07T06:55:58.3992203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cuda_dispatch.h 2025-09-07T06:55:58.3995833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta.h 2025-09-07T06:55:58.3999705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta_dispatch.h 2025-09-07T06:55:58.4003495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_native.h 2025-09-07T06:55:58.4007152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_ops.h 2025-09-07T06:55:58.4010980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub.h 2025-09-07T06:55:58.4014427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4018175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cpu_dispatch.h 2025-09-07T06:55:58.4021887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cuda_dispatch.h 2025-09-07T06:55:58.4025624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_native.h 2025-09-07T06:55:58.4029747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_ops.h 2025-09-07T06:55:58.4033284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor.h 2025-09-07T06:55:58.4037328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4040980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_native.h 2025-09-07T06:55:58.4045015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_ops.h 2025-09-07T06:55:58.4049011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention.h 2025-09-07T06:55:58.4052878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4056542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_native.h 2025-09-07T06:55:58.4060386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_ops.h 2025-09-07T06:55:58.4064331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter.h 2025-09-07T06:55:58.4067707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add.h 2025-09-07T06:55:58.4071470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4075470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4079187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cpu_dispatch.h 2025-09-07T06:55:58.4082916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cuda_dispatch.h 2025-09-07T06:55:58.4086704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta.h 2025-09-07T06:55:58.4091007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta_dispatch.h 2025-09-07T06:55:58.4094904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_native.h 2025-09-07T06:55:58.4099063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_ops.h 2025-09-07T06:55:58.4103198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4107176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4110857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cpu_dispatch.h 2025-09-07T06:55:58.4114902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cuda_dispatch.h 2025-09-07T06:55:58.4118356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta.h 2025-09-07T06:55:58.4122192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta_dispatch.h 2025-09-07T06:55:58.4126297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_native.h 2025-09-07T06:55:58.4129902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_ops.h 2025-09-07T06:55:58.4133658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce.h 2025-09-07T06:55:58.4137801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4141445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h 2025-09-07T06:55:58.4145375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h 2025-09-07T06:55:58.4149204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta.h 2025-09-07T06:55:58.4153121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h 2025-09-07T06:55:58.4156899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_native.h 2025-09-07T06:55:58.4160576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_ops.h 2025-09-07T06:55:58.4164319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted.h 2025-09-07T06:55:58.4167975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cpu_dispatch.h 2025-09-07T06:55:58.4171679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cuda_dispatch.h 2025-09-07T06:55:58.4175510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_native.h 2025-09-07T06:55:58.4180664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_ops.h 2025-09-07T06:55:58.4184443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce.h 2025-09-07T06:55:58.4188269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4191924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h 2025-09-07T06:55:58.4196077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h 2025-09-07T06:55:58.4200294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_native.h 2025-09-07T06:55:58.4204131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_ops.h 2025-09-07T06:55:58.4208082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select.h 2025-09-07T06:55:58.4211578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward.h 2025-09-07T06:55:58.4215521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4219262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4222972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_native.h 2025-09-07T06:55:58.4227655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_ops.h 2025-09-07T06:55:58.4231792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4235601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4239321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy.h 2025-09-07T06:55:58.4243303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4247268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4250957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_native.h 2025-09-07T06:55:58.4254845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_ops.h 2025-09-07T06:55:58.4258593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_native.h 2025-09-07T06:55:58.4262378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_ops.h 2025-09-07T06:55:58.4266226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter.h 2025-09-07T06:55:58.4270236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4274027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4277832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_native.h 2025-09-07T06:55:58.4281679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_ops.h 2025-09-07T06:55:58.4285500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu.h 2025-09-07T06:55:58.4289491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4293260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_native.h 2025-09-07T06:55:58.4297458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_ops.h 2025-09-07T06:55:58.4301236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set.h 2025-09-07T06:55:58.4305284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4309175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4313387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cpu_dispatch.h 2025-09-07T06:55:58.4317659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cuda_dispatch.h 2025-09-07T06:55:58.4321673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data.h 2025-09-07T06:55:58.4325708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4329403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_native.h 2025-09-07T06:55:58.4333258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_ops.h 2025-09-07T06:55:58.4337102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_meta_dispatch.h 2025-09-07T06:55:58.4341291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_native.h 2025-09-07T06:55:58.4345183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_ops.h 2025-09-07T06:55:58.4349153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn.h 2025-09-07T06:55:58.4352738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4356821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cpu_dispatch.h 2025-09-07T06:55:58.4360526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cuda_dispatch.h 2025-09-07T06:55:58.4364195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta.h 2025-09-07T06:55:58.4367632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta_dispatch.h 2025-09-07T06:55:58.4371505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_native.h 2025-09-07T06:55:58.4375253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_ops.h 2025-09-07T06:55:58.4378687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid.h 2025-09-07T06:55:58.4382090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward.h 2025-09-07T06:55:58.4387690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4391356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h 2025-09-07T06:55:58.4395046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h 2025-09-07T06:55:58.4398871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta.h 2025-09-07T06:55:58.4402806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h 2025-09-07T06:55:58.4406842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_native.h 2025-09-07T06:55:58.4410899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_ops.h 2025-09-07T06:55:58.4414936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4418944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cpu_dispatch.h 2025-09-07T06:55:58.4422438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cuda_dispatch.h 2025-09-07T06:55:58.4426501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta.h 2025-09-07T06:55:58.4430229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta_dispatch.h 2025-09-07T06:55:58.4434090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_native.h 2025-09-07T06:55:58.4438012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_ops.h 2025-09-07T06:55:58.4441729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign.h 2025-09-07T06:55:58.4445271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit.h 2025-09-07T06:55:58.4449264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4482564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cpu_dispatch.h 2025-09-07T06:55:58.4486691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cuda_dispatch.h 2025-09-07T06:55:58.4490359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta.h 2025-09-07T06:55:58.4494054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta_dispatch.h 2025-09-07T06:55:58.4497863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_native.h 2025-09-07T06:55:58.4502550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_ops.h 2025-09-07T06:55:58.4506690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4510144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cpu_dispatch.h 2025-09-07T06:55:58.4514265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cuda_dispatch.h 2025-09-07T06:55:58.4517741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta.h 2025-09-07T06:55:58.4521405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta_dispatch.h 2025-09-07T06:55:58.4525174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_native.h 2025-09-07T06:55:58.4528708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_ops.h 2025-09-07T06:55:58.4532108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu.h 2025-09-07T06:55:58.4535583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward.h 2025-09-07T06:55:58.4539760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4543653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4547823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cpu_dispatch.h 2025-09-07T06:55:58.4551644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cuda_dispatch.h 2025-09-07T06:55:58.4555447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta.h 2025-09-07T06:55:58.4559285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta_dispatch.h 2025-09-07T06:55:58.4563315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_native.h 2025-09-07T06:55:58.4567117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_ops.h 2025-09-07T06:55:58.4571457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4574927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cpu_dispatch.h 2025-09-07T06:55:58.4578615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cuda_dispatch.h 2025-09-07T06:55:58.4582255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta.h 2025-09-07T06:55:58.4586110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta_dispatch.h 2025-09-07T06:55:58.4589848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_native.h 2025-09-07T06:55:58.4594456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_ops.h 2025-09-07T06:55:58.4598687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin.h 2025-09-07T06:55:58.4601936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc.h 2025-09-07T06:55:58.4605752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4609545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cpu_dispatch.h 2025-09-07T06:55:58.4613263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cuda_dispatch.h 2025-09-07T06:55:58.4617091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta.h 2025-09-07T06:55:58.4620737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta_dispatch.h 2025-09-07T06:55:58.4624674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_native.h 2025-09-07T06:55:58.4628689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_ops.h 2025-09-07T06:55:58.4632169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh.h 2025-09-07T06:55:58.4635958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4639595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cpu_dispatch.h 2025-09-07T06:55:58.4643326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cuda_dispatch.h 2025-09-07T06:55:58.4647125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta.h 2025-09-07T06:55:58.4650753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta_dispatch.h 2025-09-07T06:55:58.4654565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_native.h 2025-09-07T06:55:58.4658814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_ops.h 2025-09-07T06:55:58.4662535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4666308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cpu_dispatch.h 2025-09-07T06:55:58.4670003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cuda_dispatch.h 2025-09-07T06:55:58.4673658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta.h 2025-09-07T06:55:58.4677215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta_dispatch.h 2025-09-07T06:55:58.4680862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_native.h 2025-09-07T06:55:58.4684853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_ops.h 2025-09-07T06:55:58.4688372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size.h 2025-09-07T06:55:58.4692417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4696634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_native.h 2025-09-07T06:55:58.4700928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_ops.h 2025-09-07T06:55:58.4704531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice.h 2025-09-07T06:55:58.4708282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward.h 2025-09-07T06:55:58.4712090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4716132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_native.h 2025-09-07T06:55:58.4719907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_ops.h 2025-09-07T06:55:58.4723873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4727665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy.h 2025-09-07T06:55:58.4731618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4735435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4739399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_native.h 2025-09-07T06:55:58.4744647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_ops.h 2025-09-07T06:55:58.4749054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse.h 2025-09-07T06:55:58.4753232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4756967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_native.h 2025-09-07T06:55:58.4761220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_ops.h 2025-09-07T06:55:58.4765133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_native.h 2025-09-07T06:55:58.4769981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_ops.h 2025-09-07T06:55:58.4773866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter.h 2025-09-07T06:55:58.4778560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4782562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4786488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_native.h 2025-09-07T06:55:58.4790369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_ops.h 2025-09-07T06:55:58.4794505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet.h 2025-09-07T06:55:58.4798289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4802037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_native.h 2025-09-07T06:55:58.4806118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_ops.h 2025-09-07T06:55:58.4809910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d.h 2025-09-07T06:55:58.4813851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4817591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward.h 2025-09-07T06:55:58.4821527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h 2025-09-07T06:55:58.4825536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_native.h 2025-09-07T06:55:58.4829363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_ops.h 2025-09-07T06:55:58.4833817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_native.h 2025-09-07T06:55:58.4837400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_ops.h 2025-09-07T06:55:58.4842040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d.h 2025-09-07T06:55:58.4845532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4849277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h 2025-09-07T06:55:58.4853441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h 2025-09-07T06:55:58.4858160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_native.h 2025-09-07T06:55:58.4861631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_ops.h 2025-09-07T06:55:58.4866349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d.h 2025-09-07T06:55:58.4870631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4874926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h 2025-09-07T06:55:58.4878789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h 2025-09-07T06:55:58.4882846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_native.h 2025-09-07T06:55:58.4886969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_ops.h 2025-09-07T06:55:58.4890938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d.h 2025-09-07T06:55:58.4895297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4899070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h 2025-09-07T06:55:58.4902985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h 2025-09-07T06:55:58.4907117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta.h 2025-09-07T06:55:58.4911081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h 2025-09-07T06:55:58.4915014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_native.h 2025-09-07T06:55:58.4918831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_ops.h 2025-09-07T06:55:58.4922883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d.h 2025-09-07T06:55:58.4926664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h 2025-09-07T06:55:58.4930505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h 2025-09-07T06:55:58.4934561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_native.h 2025-09-07T06:55:58.4938468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_ops.h 2025-09-07T06:55:58.4942220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm.h 2025-09-07T06:55:58.4945911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.4949721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_native.h 2025-09-07T06:55:58.4953431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_ops.h 2025-09-07T06:55:58.4956932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss.h 2025-09-07T06:55:58.4960836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward.h 2025-09-07T06:55:58.4964999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.4968690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h 2025-09-07T06:55:58.4973061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h 2025-09-07T06:55:58.4976777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_native.h 2025-09-07T06:55:58.4980655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h 2025-09-07T06:55:58.4985044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.4988699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h 2025-09-07T06:55:58.4992493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h 2025-09-07T06:55:58.4997766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta.h 2025-09-07T06:55:58.5001570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h 2025-09-07T06:55:58.5005287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_native.h 2025-09-07T06:55:58.5009030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_ops.h 2025-09-07T06:55:58.5013337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax.h 2025-09-07T06:55:58.5017106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5020801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5024499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_native.h 2025-09-07T06:55:58.5028222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_ops.h 2025-09-07T06:55:58.5031957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus.h 2025-09-07T06:55:58.5035390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward.h 2025-09-07T06:55:58.5039492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5043249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h 2025-09-07T06:55:58.5046983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h 2025-09-07T06:55:58.5050820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta.h 2025-09-07T06:55:58.5054626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta_dispatch.h 2025-09-07T06:55:58.5058445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_native.h 2025-09-07T06:55:58.5062437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_ops.h 2025-09-07T06:55:58.5066534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5070213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cpu_dispatch.h 2025-09-07T06:55:58.5074675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cuda_dispatch.h 2025-09-07T06:55:58.5078485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta.h 2025-09-07T06:55:58.5082534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta_dispatch.h 2025-09-07T06:55:58.5086052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_native.h 2025-09-07T06:55:58.5090067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_ops.h 2025-09-07T06:55:58.5093736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink.h 2025-09-07T06:55:58.5097403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward.h 2025-09-07T06:55:58.5101343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5105228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h 2025-09-07T06:55:58.5108964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h 2025-09-07T06:55:58.5112690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta.h 2025-09-07T06:55:58.5116803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h 2025-09-07T06:55:58.5120755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_native.h 2025-09-07T06:55:58.5124510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_ops.h 2025-09-07T06:55:58.5128429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5132045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cpu_dispatch.h 2025-09-07T06:55:58.5136066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cuda_dispatch.h 2025-09-07T06:55:58.5140067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta.h 2025-09-07T06:55:58.5143800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta_dispatch.h 2025-09-07T06:55:58.5147668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_native.h 2025-09-07T06:55:58.5151682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_ops.h 2025-09-07T06:55:58.5155339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss.h 2025-09-07T06:55:58.5159099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward.h 2025-09-07T06:55:58.5163118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5167414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_native.h 2025-09-07T06:55:58.5171553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_ops.h 2025-09-07T06:55:58.5176438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5180316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_native.h 2025-09-07T06:55:58.5184605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_ops.h 2025-09-07T06:55:58.5188352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort.h 2025-09-07T06:55:58.5191970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5195982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5199858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5203542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cpu_dispatch.h 2025-09-07T06:55:58.5207402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cuda_dispatch.h 2025-09-07T06:55:58.5211324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta.h 2025-09-07T06:55:58.5214922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta_dispatch.h 2025-09-07T06:55:58.5218666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_native.h 2025-09-07T06:55:58.5222437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_ops.h 2025-09-07T06:55:58.5226066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor.h 2025-09-07T06:55:58.5229930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5234264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_native.h 2025-09-07T06:55:58.5237639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_ops.h 2025-09-07T06:55:58.5242309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor.h 2025-09-07T06:55:58.5246455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5250616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_native.h 2025-09-07T06:55:58.5254507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_ops.h 2025-09-07T06:55:58.5258281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor.h 2025-09-07T06:55:58.5262409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5266967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_native.h 2025-09-07T06:55:58.5271163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_ops.h 2025-09-07T06:55:58.5275192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor.h 2025-09-07T06:55:58.5279664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5283776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5287528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_native.h 2025-09-07T06:55:58.5291361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_ops.h 2025-09-07T06:55:58.5296948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor.h 2025-09-07T06:55:58.5299459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5303273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_native.h 2025-09-07T06:55:58.5329620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_ops.h 2025-09-07T06:55:58.5329863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor.h 2025-09-07T06:55:58.5330243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5330502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_native.h 2025-09-07T06:55:58.5330762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_ops.h 2025-09-07T06:55:58.5330982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim.h 2025-09-07T06:55:58.5333750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5337834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_native.h 2025-09-07T06:55:58.5341810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_ops.h 2025-09-07T06:55:58.5345606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask.h 2025-09-07T06:55:58.5349672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5353450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_native.h 2025-09-07T06:55:58.5357460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_ops.h 2025-09-07T06:55:58.5361182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize.h 2025-09-07T06:55:58.5365064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear.h 2025-09-07T06:55:58.5369227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5373011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h 2025-09-07T06:55:58.5376987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_native.h 2025-09-07T06:55:58.5381779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_ops.h 2025-09-07T06:55:58.5385858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5389657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_meta_dispatch.h 2025-09-07T06:55:58.5393403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_native.h 2025-09-07T06:55:58.5397174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_ops.h 2025-09-07T06:55:58.5400961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm.h 2025-09-07T06:55:58.5405007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_native.h 2025-09-07T06:55:58.5409028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_ops.h 2025-09-07T06:55:58.5413905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai.h 2025-09-07T06:55:58.5417895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5421766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h 2025-09-07T06:55:58.5425544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h 2025-09-07T06:55:58.5429213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta.h 2025-09-07T06:55:58.5433117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h 2025-09-07T06:55:58.5437344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_native.h 2025-09-07T06:55:58.5440862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_ops.h 2025-09-07T06:55:58.5444617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0.h 2025-09-07T06:55:58.5448646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5452470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h 2025-09-07T06:55:58.5456355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h 2025-09-07T06:55:58.5460394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta.h 2025-09-07T06:55:58.5464296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h 2025-09-07T06:55:58.5468448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_native.h 2025-09-07T06:55:58.5472412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_ops.h 2025-09-07T06:55:58.5476060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1.h 2025-09-07T06:55:58.5480800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5484852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h 2025-09-07T06:55:58.5489098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h 2025-09-07T06:55:58.5522506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta.h 2025-09-07T06:55:58.5527801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h 2025-09-07T06:55:58.5531740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_native.h 2025-09-07T06:55:58.5535593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_ops.h 2025-09-07T06:55:58.5568412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0.h 2025-09-07T06:55:58.5572794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5576632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h 2025-09-07T06:55:58.5580400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h 2025-09-07T06:55:58.5584321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta.h 2025-09-07T06:55:58.5588353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h 2025-09-07T06:55:58.5592110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_native.h 2025-09-07T06:55:58.5596528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_ops.h 2025-09-07T06:55:58.5600176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1.h 2025-09-07T06:55:58.5604311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5608183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h 2025-09-07T06:55:58.5612120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h 2025-09-07T06:55:58.5615993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta.h 2025-09-07T06:55:58.5620043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h 2025-09-07T06:55:58.5624027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_native.h 2025-09-07T06:55:58.5628681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_ops.h 2025-09-07T06:55:58.5632811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t.h 2025-09-07T06:55:58.5637559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5641611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5645637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h 2025-09-07T06:55:58.5649578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h 2025-09-07T06:55:58.5653527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h 2025-09-07T06:55:58.5657809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h 2025-09-07T06:55:58.5661613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h 2025-09-07T06:55:58.5665950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h 2025-09-07T06:55:58.5669708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u.h 2025-09-07T06:55:58.5673976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5678078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5682205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h 2025-09-07T06:55:58.5686046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h 2025-09-07T06:55:58.5690052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h 2025-09-07T06:55:58.5694165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h 2025-09-07T06:55:58.5698177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h 2025-09-07T06:55:58.5702118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h 2025-09-07T06:55:58.5706254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v.h 2025-09-07T06:55:58.5710729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5714702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5718974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h 2025-09-07T06:55:58.5723046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h 2025-09-07T06:55:58.5727186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h 2025-09-07T06:55:58.5731032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h 2025-09-07T06:55:58.5734991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h 2025-09-07T06:55:58.5739084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h 2025-09-07T06:55:58.5742896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w.h 2025-09-07T06:55:58.5747364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5751552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.5755486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h 2025-09-07T06:55:58.5759419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h 2025-09-07T06:55:58.5763378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h 2025-09-07T06:55:58.5767400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h 2025-09-07T06:55:58.5771365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h 2025-09-07T06:55:58.5775219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h 2025-09-07T06:55:58.5778923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma.h 2025-09-07T06:55:58.5783034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5787054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_native.h 2025-09-07T06:55:58.5791063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_ops.h 2025-09-07T06:55:58.5794946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr.h 2025-09-07T06:55:58.5799112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5803217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cpu_dispatch.h 2025-09-07T06:55:58.5807088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cuda_dispatch.h 2025-09-07T06:55:58.5812586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta.h 2025-09-07T06:55:58.5816849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta_dispatch.h 2025-09-07T06:55:58.5820969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_native.h 2025-09-07T06:55:58.5825059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_ops.h 2025-09-07T06:55:58.5828965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf.h 2025-09-07T06:55:58.5832679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc.h 2025-09-07T06:55:58.5836408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx.h 2025-09-07T06:55:58.5840525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.5844266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h 2025-09-07T06:55:58.5848496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h 2025-09-07T06:55:58.5852140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta.h 2025-09-07T06:55:58.5856093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta_dispatch.h 2025-09-07T06:55:58.5860069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_native.h 2025-09-07T06:55:58.5863990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_ops.h 2025-09-07T06:55:58.5868112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5872425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_native.h 2025-09-07T06:55:58.5876452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_ops.h 2025-09-07T06:55:58.5880275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv.h 2025-09-07T06:55:58.5884085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5887926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_native.h 2025-09-07T06:55:58.5891602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_ops.h 2025-09-07T06:55:58.5895516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5899362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_native.h 2025-09-07T06:55:58.5903155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_ops.h 2025-09-07T06:55:58.5907377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2.h 2025-09-07T06:55:58.5911337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5915108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_native.h 2025-09-07T06:55:58.5919485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_ops.h 2025-09-07T06:55:58.5923249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit.h 2025-09-07T06:55:58.5927111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5931005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_native.h 2025-09-07T06:55:58.5934898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_ops.h 2025-09-07T06:55:58.5938506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1.h 2025-09-07T06:55:58.5942495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5946211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_native.h 2025-09-07T06:55:58.5950012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_ops.h 2025-09-07T06:55:58.5953896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc.h 2025-09-07T06:55:58.5957751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc.h 2025-09-07T06:55:58.5961651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5965500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_native.h 2025-09-07T06:55:58.5969195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_ops.h 2025-09-07T06:55:58.5973186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5976965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_native.h 2025-09-07T06:55:58.5980858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_ops.h 2025-09-07T06:55:58.5984662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln.h 2025-09-07T06:55:58.5988615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.5992506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_native.h 2025-09-07T06:55:58.5996185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_ops.h 2025-09-07T06:55:58.6000026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h.h 2025-09-07T06:55:58.6003880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he.h 2025-09-07T06:55:58.6008075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6011969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6016400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h 2025-09-07T06:55:58.6020413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h 2025-09-07T06:55:58.6024642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h 2025-09-07T06:55:58.6028744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h 2025-09-07T06:55:58.6032494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_native.h 2025-09-07T06:55:58.6036286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h 2025-09-07T06:55:58.6040299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6044122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6048905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h 2025-09-07T06:55:58.6053382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h 2025-09-07T06:55:58.6057318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h 2025-09-07T06:55:58.6062251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h 2025-09-07T06:55:58.6066440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_native.h 2025-09-07T06:55:58.6070390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h 2025-09-07T06:55:58.6074297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0.h 2025-09-07T06:55:58.6078184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e.h 2025-09-07T06:55:58.6082180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6085822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cpu_dispatch.h 2025-09-07T06:55:58.6089646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cuda_dispatch.h 2025-09-07T06:55:58.6093586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta.h 2025-09-07T06:55:58.6097405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta_dispatch.h 2025-09-07T06:55:58.6101188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_native.h 2025-09-07T06:55:58.6105345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_ops.h 2025-09-07T06:55:58.6109492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6113231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_native.h 2025-09-07T06:55:58.6117065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_ops.h 2025-09-07T06:55:58.6120885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1.h 2025-09-07T06:55:58.6124811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e.h 2025-09-07T06:55:58.6128897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6132696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cpu_dispatch.h 2025-09-07T06:55:58.6136616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cuda_dispatch.h 2025-09-07T06:55:58.6140462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta.h 2025-09-07T06:55:58.6144357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta_dispatch.h 2025-09-07T06:55:58.6148205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_native.h 2025-09-07T06:55:58.6152235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_ops.h 2025-09-07T06:55:58.6156346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6160053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cpu_dispatch.h 2025-09-07T06:55:58.6164269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cuda_dispatch.h 2025-09-07T06:55:58.6167975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta.h 2025-09-07T06:55:58.6171758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta_dispatch.h 2025-09-07T06:55:58.6175558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_native.h 2025-09-07T06:55:58.6179632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_ops.h 2025-09-07T06:55:58.6183523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l.h 2025-09-07T06:55:58.6187999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6191917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6195866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h 2025-09-07T06:55:58.6199755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h 2025-09-07T06:55:58.6203820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h 2025-09-07T06:55:58.6208218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h 2025-09-07T06:55:58.6212113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h 2025-09-07T06:55:58.6216186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h 2025-09-07T06:55:58.6219974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p.h 2025-09-07T06:55:58.6224354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6228444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6232325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h 2025-09-07T06:55:58.6236225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h 2025-09-07T06:55:58.6240252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h 2025-09-07T06:55:58.6244175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h 2025-09-07T06:55:58.6248081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_native.h 2025-09-07T06:55:58.6251887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h 2025-09-07T06:55:58.6255647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p.h 2025-09-07T06:55:58.6259699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6263660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_native.h 2025-09-07T06:55:58.6267684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_ops.h 2025-09-07T06:55:58.6271621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit.h 2025-09-07T06:55:58.6275631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6279517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_native.h 2025-09-07T06:55:58.6283483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_ops.h 2025-09-07T06:55:58.6287274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp.h 2025-09-07T06:55:58.6291449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6295441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_native.h 2025-09-07T06:55:58.6299256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_ops.h 2025-09-07T06:55:58.6303550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr.h 2025-09-07T06:55:58.6307739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6312507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h 2025-09-07T06:55:58.6317017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h 2025-09-07T06:55:58.6321213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta.h 2025-09-07T06:55:58.6325570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h 2025-09-07T06:55:58.6330079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_native.h 2025-09-07T06:55:58.6334613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_ops.h 2025-09-07T06:55:58.6339019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax.h 2025-09-07T06:55:58.6343793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6348527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_native.h 2025-09-07T06:55:58.6353283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_ops.h 2025-09-07T06:55:58.6357674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0.h 2025-09-07T06:55:58.6362583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6366368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h 2025-09-07T06:55:58.6370292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h 2025-09-07T06:55:58.6374509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta.h 2025-09-07T06:55:58.6378527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h 2025-09-07T06:55:58.6382507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_native.h 2025-09-07T06:55:58.6386642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_ops.h 2025-09-07T06:55:58.6396181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1.h 2025-09-07T06:55:58.6397065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6403583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h 2025-09-07T06:55:58.6407882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h 2025-09-07T06:55:58.6411859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta.h 2025-09-07T06:55:58.6416777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h 2025-09-07T06:55:58.6420056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_native.h 2025-09-07T06:55:58.6424307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_ops.h 2025-09-07T06:55:58.6428303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0.h 2025-09-07T06:55:58.6432542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6436452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h 2025-09-07T06:55:58.6440720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h 2025-09-07T06:55:58.6444640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta.h 2025-09-07T06:55:58.6448925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h 2025-09-07T06:55:58.6453008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_native.h 2025-09-07T06:55:58.6457062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_ops.h 2025-09-07T06:55:58.6460919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1.h 2025-09-07T06:55:58.6465775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6469961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h 2025-09-07T06:55:58.6473963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h 2025-09-07T06:55:58.6478636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta.h 2025-09-07T06:55:58.6482027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h 2025-09-07T06:55:58.6486023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_native.h 2025-09-07T06:55:58.6490013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_ops.h 2025-09-07T06:55:58.6494173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln.h 2025-09-07T06:55:58.6498378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6502915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_native.h 2025-09-07T06:55:58.6506983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_ops.h 2025-09-07T06:55:58.6510905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr.h 2025-09-07T06:55:58.6514819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri.h 2025-09-07T06:55:58.6518945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6523329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h 2025-09-07T06:55:58.6527242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h 2025-09-07T06:55:58.6531357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta.h 2025-09-07T06:55:58.6535339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta_dispatch.h 2025-09-07T06:55:58.6539068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_native.h 2025-09-07T06:55:58.6542940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_ops.h 2025-09-07T06:55:58.6547226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6551215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_native.h 2025-09-07T06:55:58.6555184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_ops.h 2025-09-07T06:55:58.6559177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma.h 2025-09-07T06:55:58.6563191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6566986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_native.h 2025-09-07T06:55:58.6570860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_ops.h 2025-09-07T06:55:58.6574926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi.h 2025-09-07T06:55:58.6579959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6583960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_native.h 2025-09-07T06:55:58.6587902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_ops.h 2025-09-07T06:55:58.6621811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round.h 2025-09-07T06:55:58.6626330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6631176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_native.h 2025-09-07T06:55:58.6635260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_ops.h 2025-09-07T06:55:58.6640051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h 2025-09-07T06:55:58.6644645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6648769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h 2025-09-07T06:55:58.6653122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h 2025-09-07T06:55:58.6657346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h 2025-09-07T06:55:58.6661309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h 2025-09-07T06:55:58.6665522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h 2025-09-07T06:55:58.6669665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h 2025-09-07T06:55:58.6673582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h 2025-09-07T06:55:58.6678018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6682120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h 2025-09-07T06:55:58.6686223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h 2025-09-07T06:55:58.6690171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h 2025-09-07T06:55:58.6694162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h 2025-09-07T06:55:58.6698573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h 2025-09-07T06:55:58.6702461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h 2025-09-07T06:55:58.6706415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h 2025-09-07T06:55:58.6711185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6715527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6719957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h 2025-09-07T06:55:58.6724447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h 2025-09-07T06:55:58.6728403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h 2025-09-07T06:55:58.6732564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h 2025-09-07T06:55:58.6736752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h 2025-09-07T06:55:58.6740812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h 2025-09-07T06:55:58.6744900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h 2025-09-07T06:55:58.6749348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6753450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6757577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h 2025-09-07T06:55:58.6761451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h 2025-09-07T06:55:58.6765398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h 2025-09-07T06:55:58.6769402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h 2025-09-07T06:55:58.6773475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h 2025-09-07T06:55:58.6777590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h 2025-09-07T06:55:58.6781545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h 2025-09-07T06:55:58.6785898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6789995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6794130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h 2025-09-07T06:55:58.6798549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h 2025-09-07T06:55:58.6802954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h 2025-09-07T06:55:58.6806992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h 2025-09-07T06:55:58.6810946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h 2025-09-07T06:55:58.6815319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h 2025-09-07T06:55:58.6819300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h 2025-09-07T06:55:58.6823544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6827778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6832009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h 2025-09-07T06:55:58.6836221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h 2025-09-07T06:55:58.6840146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h 2025-09-07T06:55:58.6844110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h 2025-09-07T06:55:58.6848053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h 2025-09-07T06:55:58.6852209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h 2025-09-07T06:55:58.6856165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc.h 2025-09-07T06:55:58.6860506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6864151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_native.h 2025-09-07T06:55:58.6868398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_ops.h 2025-09-07T06:55:58.6873307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax.h 2025-09-07T06:55:58.6877380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6881431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_native.h 2025-09-07T06:55:58.6885704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_ops.h 2025-09-07T06:55:58.6889878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0.h 2025-09-07T06:55:58.6894559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6898815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h 2025-09-07T06:55:58.6902705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h 2025-09-07T06:55:58.6906940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h 2025-09-07T06:55:58.6911304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h 2025-09-07T06:55:58.6915267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_native.h 2025-09-07T06:55:58.6919406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h 2025-09-07T06:55:58.6923515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py.h 2025-09-07T06:55:58.6928030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6932284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6936553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h 2025-09-07T06:55:58.6941004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h 2025-09-07T06:55:58.6945169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta.h 2025-09-07T06:55:58.6949420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h 2025-09-07T06:55:58.6953655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_native.h 2025-09-07T06:55:58.6957562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_ops.h 2025-09-07T06:55:58.6961376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy.h 2025-09-07T06:55:58.6965537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.6969723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_native.h 2025-09-07T06:55:58.6973744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_ops.h 2025-09-07T06:55:58.6977575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta.h 2025-09-07T06:55:58.6981753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.6986464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.6990483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cpu_dispatch.h 2025-09-07T06:55:58.6995085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cuda_dispatch.h 2025-09-07T06:55:58.6999242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta.h 2025-09-07T06:55:58.7003435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta_dispatch.h 2025-09-07T06:55:58.7007403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_native.h 2025-09-07T06:55:58.7011865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_ops.h 2025-09-07T06:55:58.7015509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split.h 2025-09-07T06:55:58.7019155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7022903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7026816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy.h 2025-09-07T06:55:58.7031054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7035105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7038941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_native.h 2025-09-07T06:55:58.7042737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_ops.h 2025-09-07T06:55:58.7046518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_native.h 2025-09-07T06:55:58.7050569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_ops.h 2025-09-07T06:55:58.7054424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes.h 2025-09-07T06:55:58.7058451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7062416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy.h 2025-09-07T06:55:58.7066719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7070802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7074621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h 2025-09-07T06:55:58.7078566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_native.h 2025-09-07T06:55:58.7082392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_ops.h 2025-09-07T06:55:58.7086609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_native.h 2025-09-07T06:55:58.7090499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_ops.h 2025-09-07T06:55:58.7094683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt.h 2025-09-07T06:55:58.7098848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7102599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cpu_dispatch.h 2025-09-07T06:55:58.7106475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cuda_dispatch.h 2025-09-07T06:55:58.7110248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta.h 2025-09-07T06:55:58.7114238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta_dispatch.h 2025-09-07T06:55:58.7117919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_native.h 2025-09-07T06:55:58.7121648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_ops.h 2025-09-07T06:55:58.7125138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square.h 2025-09-07T06:55:58.7129913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7133633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_native.h 2025-09-07T06:55:58.7137393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_ops.h 2025-09-07T06:55:58.7141115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze.h 2025-09-07T06:55:58.7144835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7149110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7152950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy.h 2025-09-07T06:55:58.7156921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7160864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7164643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_native.h 2025-09-07T06:55:58.7168588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_ops.h 2025-09-07T06:55:58.7172456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_native.h 2025-09-07T06:55:58.7176274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_ops.h 2025-09-07T06:55:58.7179951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm.h 2025-09-07T06:55:58.7183601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7187693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h 2025-09-07T06:55:58.7191344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h 2025-09-07T06:55:58.7195613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_native.h 2025-09-07T06:55:58.7199828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_ops.h 2025-09-07T06:55:58.7204108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack.h 2025-09-07T06:55:58.7208014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7212030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_native.h 2025-09-07T06:55:58.7215854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_ops.h 2025-09-07T06:55:58.7219530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std.h 2025-09-07T06:55:58.7223649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7227569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cpu_dispatch.h 2025-09-07T06:55:58.7231360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cuda_dispatch.h 2025-09-07T06:55:58.7235423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean.h 2025-09-07T06:55:58.7239291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7242973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7246801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cpu_dispatch.h 2025-09-07T06:55:58.7250543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cuda_dispatch.h 2025-09-07T06:55:58.7254300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_native.h 2025-09-07T06:55:58.7258395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_ops.h 2025-09-07T06:55:58.7262485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_native.h 2025-09-07T06:55:58.7266753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_ops.h 2025-09-07T06:55:58.7269629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft.h 2025-09-07T06:55:58.7273340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7277115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_native.h 2025-09-07T06:55:58.7280836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_ops.h 2025-09-07T06:55:58.7284393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride.h 2025-09-07T06:55:58.7287977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7292097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_native.h 2025-09-07T06:55:58.7296007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_ops.h 2025-09-07T06:55:58.7299659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub.h 2025-09-07T06:55:58.7303186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract.h 2025-09-07T06:55:58.7307099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7310784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_native.h 2025-09-07T06:55:58.7314728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_ops.h 2025-09-07T06:55:58.7319063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7323062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7327176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cpu_dispatch.h 2025-09-07T06:55:58.7330672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cuda_dispatch.h 2025-09-07T06:55:58.7334410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta.h 2025-09-07T06:55:58.7337936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta_dispatch.h 2025-09-07T06:55:58.7341664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_native.h 2025-09-07T06:55:58.7345577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_ops.h 2025-09-07T06:55:58.7349143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum.h 2025-09-07T06:55:58.7353197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7357138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7362354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7366244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cpu_dispatch.h 2025-09-07T06:55:58.7370074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cuda_dispatch.h 2025-09-07T06:55:58.7374790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta.h 2025-09-07T06:55:58.7378448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta_dispatch.h 2025-09-07T06:55:58.7382045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_native.h 2025-09-07T06:55:58.7385953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_ops.h 2025-09-07T06:55:58.7389324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size.h 2025-09-07T06:55:58.7393348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7397489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_native.h 2025-09-07T06:55:58.7400635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_ops.h 2025-09-07T06:55:58.7404428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd.h 2025-09-07T06:55:58.7408068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7411850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_native.h 2025-09-07T06:55:58.7415500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_ops.h 2025-09-07T06:55:58.7418880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes.h 2025-09-07T06:55:58.7422487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7426215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_native.h 2025-09-07T06:55:58.7430249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_ops.h 2025-09-07T06:55:58.7434091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims.h 2025-09-07T06:55:58.7437707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7441479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_native.h 2025-09-07T06:55:58.7445146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_ops.h 2025-09-07T06:55:58.7448854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range.h 2025-09-07T06:55:58.7452767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7456563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size.h 2025-09-07T06:55:58.7460523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7464722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_native.h 2025-09-07T06:55:58.7468646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h 2025-09-07T06:55:58.7472443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_native.h 2025-09-07T06:55:58.7476249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_ops.h 2025-09-07T06:55:58.7480067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel.h 2025-09-07T06:55:58.7484005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7487813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_native.h 2025-09-07T06:55:58.7491665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_ops.h 2025-09-07T06:55:58.7495475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size.h 2025-09-07T06:55:58.7499154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7502802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_native.h 2025-09-07T06:55:58.7506533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_ops.h 2025-09-07T06:55:58.7510443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset.h 2025-09-07T06:55:58.7514403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7518220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_native.h 2025-09-07T06:55:58.7522190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_ops.h 2025-09-07T06:55:58.7526039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride.h 2025-09-07T06:55:58.7530445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7534162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_native.h 2025-09-07T06:55:58.7537818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_ops.h 2025-09-07T06:55:58.7541674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t.h 2025-09-07T06:55:58.7545160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take.h 2025-09-07T06:55:58.7548647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim.h 2025-09-07T06:55:58.7552426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7556048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_native.h 2025-09-07T06:55:58.7559842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_ops.h 2025-09-07T06:55:58.7563613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cpu_dispatch.h 2025-09-07T06:55:58.7567289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cuda_dispatch.h 2025-09-07T06:55:58.7571132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_native.h 2025-09-07T06:55:58.7574844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_ops.h 2025-09-07T06:55:58.7578201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan.h 2025-09-07T06:55:58.7581543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh.h 2025-09-07T06:55:58.7585036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward.h 2025-09-07T06:55:58.7588901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7592825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h 2025-09-07T06:55:58.7596548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h 2025-09-07T06:55:58.7600850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta.h 2025-09-07T06:55:58.7604727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta_dispatch.h 2025-09-07T06:55:58.7608662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_native.h 2025-09-07T06:55:58.7613600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_ops.h 2025-09-07T06:55:58.7617628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7622071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cpu_dispatch.h 2025-09-07T06:55:58.7626229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cuda_dispatch.h 2025-09-07T06:55:58.7630302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta.h 2025-09-07T06:55:58.7634129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta_dispatch.h 2025-09-07T06:55:58.7638206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_native.h 2025-09-07T06:55:58.7673259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_ops.h 2025-09-07T06:55:58.7677181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7681080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cpu_dispatch.h 2025-09-07T06:55:58.7685106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cuda_dispatch.h 2025-09-07T06:55:58.7688833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta.h 2025-09-07T06:55:58.7692495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta_dispatch.h 2025-09-07T06:55:58.7696986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_native.h 2025-09-07T06:55:58.7700598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_ops.h 2025-09-07T06:55:58.7704262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor.h 2025-09-07T06:55:58.7707911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot.h 2025-09-07T06:55:58.7711933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7715581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_native.h 2025-09-07T06:55:58.7719423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_ops.h 2025-09-07T06:55:58.7723473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split.h 2025-09-07T06:55:58.7727635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7731711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_native.h 2025-09-07T06:55:58.7735897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_ops.h 2025-09-07T06:55:58.7739942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d.h 2025-09-07T06:55:58.7743780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7747724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_native.h 2025-09-07T06:55:58.7751775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_ops.h 2025-09-07T06:55:58.7755961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold.h 2025-09-07T06:55:58.7759985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward.h 2025-09-07T06:55:58.7764250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7768062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h 2025-09-07T06:55:58.7771971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h 2025-09-07T06:55:58.7775817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta.h 2025-09-07T06:55:58.7780118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta_dispatch.h 2025-09-07T06:55:58.7784530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_native.h 2025-09-07T06:55:58.7788576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_ops.h 2025-09-07T06:55:58.7822718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7826777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cpu_dispatch.h 2025-09-07T06:55:58.7830760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cuda_dispatch.h 2025-09-07T06:55:58.7834723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta.h 2025-09-07T06:55:58.7838405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta_dispatch.h 2025-09-07T06:55:58.7842214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_native.h 2025-09-07T06:55:58.7846054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_ops.h 2025-09-07T06:55:58.7849871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile.h 2025-09-07T06:55:58.7853507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7857086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_native.h 2025-09-07T06:55:58.7860691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_ops.h 2025-09-07T06:55:58.7864296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to.h 2025-09-07T06:55:58.7867891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk.h 2025-09-07T06:55:58.7871526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.7875299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cpu_dispatch.h 2025-09-07T06:55:58.7878879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cuda_dispatch.h 2025-09-07T06:55:58.7882624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta.h 2025-09-07T06:55:58.7886526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta_dispatch.h 2025-09-07T06:55:58.7890211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_native.h 2025-09-07T06:55:58.7893894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_ops.h 2025-09-07T06:55:58.7897612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7901152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense.h 2025-09-07T06:55:58.7904763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward.h 2025-09-07T06:55:58.7908599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7912392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_native.h 2025-09-07T06:55:58.7916017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_ops.h 2025-09-07T06:55:58.7921191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7925049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_native.h 2025-09-07T06:55:58.7928841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_ops.h 2025-09-07T06:55:58.7932629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn.h 2025-09-07T06:55:58.7936352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward.h 2025-09-07T06:55:58.7940218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.7944044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_native.h 2025-09-07T06:55:58.7947815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_ops.h 2025-09-07T06:55:58.7952010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7955708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h 2025-09-07T06:55:58.7960217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_native.h 2025-09-07T06:55:58.7964177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_ops.h 2025-09-07T06:55:58.7968032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_native.h 2025-09-07T06:55:58.7971657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_ops.h 2025-09-07T06:55:58.7975144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor.h 2025-09-07T06:55:58.7978860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.7982745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_native.h 2025-09-07T06:55:58.7986630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_ops.h 2025-09-07T06:55:58.7990290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse.h 2025-09-07T06:55:58.7993970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc.h 2025-09-07T06:55:58.7997859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8001352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_native.h 2025-09-07T06:55:58.8005123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_ops.h 2025-09-07T06:55:58.8008811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr.h 2025-09-07T06:55:58.8012677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8016364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_native.h 2025-09-07T06:55:58.8020019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_ops.h 2025-09-07T06:55:58.8024490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8028288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc.h 2025-09-07T06:55:58.8032509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8036283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_native.h 2025-09-07T06:55:58.8040423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_ops.h 2025-09-07T06:55:58.8044154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr.h 2025-09-07T06:55:58.8047942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8052358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_native.h 2025-09-07T06:55:58.8056265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_ops.h 2025-09-07T06:55:58.8060191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_native.h 2025-09-07T06:55:58.8063878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_ops.h 2025-09-07T06:55:58.8067615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace.h 2025-09-07T06:55:58.8071072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward.h 2025-09-07T06:55:58.8074973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8078589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_native.h 2025-09-07T06:55:58.8082221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_ops.h 2025-09-07T06:55:58.8086268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8090259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cpu_dispatch.h 2025-09-07T06:55:58.8093931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cuda_dispatch.h 2025-09-07T06:55:58.8097557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_native.h 2025-09-07T06:55:58.8101215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_ops.h 2025-09-07T06:55:58.8104972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose.h 2025-09-07T06:55:58.8108673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8112602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8116383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy.h 2025-09-07T06:55:58.8120359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8125241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8129146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_native.h 2025-09-07T06:55:58.8133053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_ops.h 2025-09-07T06:55:58.8136984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_native.h 2025-09-07T06:55:58.8140860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_ops.h 2025-09-07T06:55:58.8144750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid.h 2025-09-07T06:55:58.8148585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8152515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_native.h 2025-09-07T06:55:58.8156344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_ops.h 2025-09-07T06:55:58.8160136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz.h 2025-09-07T06:55:58.8165052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8168562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_native.h 2025-09-07T06:55:58.8172609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_ops.h 2025-09-07T06:55:58.8176826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve.h 2025-09-07T06:55:58.8180426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8185006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h 2025-09-07T06:55:58.8189691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h 2025-09-07T06:55:58.8193685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta.h 2025-09-07T06:55:58.8197841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta_dispatch.h 2025-09-07T06:55:58.8201857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_native.h 2025-09-07T06:55:58.8205909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_ops.h 2025-09-07T06:55:58.8209599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril.h 2025-09-07T06:55:58.8214112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8217823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cpu_dispatch.h 2025-09-07T06:55:58.8221527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cuda_dispatch.h 2025-09-07T06:55:58.8225599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices.h 2025-09-07T06:55:58.8229694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8233764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cpu_dispatch.h 2025-09-07T06:55:58.8237537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cuda_dispatch.h 2025-09-07T06:55:58.8241887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_native.h 2025-09-07T06:55:58.8245924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_ops.h 2025-09-07T06:55:58.8249665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta.h 2025-09-07T06:55:58.8253713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta_dispatch.h 2025-09-07T06:55:58.8257765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_native.h 2025-09-07T06:55:58.8261405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_ops.h 2025-09-07T06:55:58.8265349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss.h 2025-09-07T06:55:58.8269293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8272949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_native.h 2025-09-07T06:55:58.8276908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_ops.h 2025-09-07T06:55:58.8280758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu.h 2025-09-07T06:55:58.8284738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8288667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cpu_dispatch.h 2025-09-07T06:55:58.8292382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cuda_dispatch.h 2025-09-07T06:55:58.8296007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices.h 2025-09-07T06:55:58.8299984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8303711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cpu_dispatch.h 2025-09-07T06:55:58.8307478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cuda_dispatch.h 2025-09-07T06:55:58.8311584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_native.h 2025-09-07T06:55:58.8315491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_ops.h 2025-09-07T06:55:58.8319329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta.h 2025-09-07T06:55:58.8323404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta_dispatch.h 2025-09-07T06:55:58.8327373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_native.h 2025-09-07T06:55:58.8331362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_ops.h 2025-09-07T06:55:58.8334948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide.h 2025-09-07T06:55:58.8338922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8343425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_native.h 2025-09-07T06:55:58.8347463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_ops.h 2025-09-07T06:55:58.8351266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc.h 2025-09-07T06:55:58.8355399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8359153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cpu_dispatch.h 2025-09-07T06:55:58.8362908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cuda_dispatch.h 2025-09-07T06:55:58.8366587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta.h 2025-09-07T06:55:58.8370467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta_dispatch.h 2025-09-07T06:55:58.8374387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_native.h 2025-09-07T06:55:58.8378211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_ops.h 2025-09-07T06:55:58.8381849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as.h 2025-09-07T06:55:58.8385476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8390112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_native.h 2025-09-07T06:55:58.8392985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_ops.h 2025-09-07T06:55:58.8396799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8400775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy.h 2025-09-07T06:55:58.8404336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8408028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8412549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_native.h 2025-09-07T06:55:58.8416304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_ops.h 2025-09-07T06:55:58.8420783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_native.h 2025-09-07T06:55:58.8423550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_ops.h 2025-09-07T06:55:58.8427063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind.h 2025-09-07T06:55:58.8430900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8434694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8438527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy.h 2025-09-07T06:55:58.8442380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8446122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8450291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_native.h 2025-09-07T06:55:58.8454328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_ops.h 2025-09-07T06:55:58.8458021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_native.h 2025-09-07T06:55:58.8461729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_ops.h 2025-09-07T06:55:58.8465568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten.h 2025-09-07T06:55:58.8469360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8473078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors.h 2025-09-07T06:55:58.8477105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8480988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_native.h 2025-09-07T06:55:58.8484874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_ops.h 2025-09-07T06:55:58.8489330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_native.h 2025-09-07T06:55:58.8493556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_ops.h 2025-09-07T06:55:58.8497076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold.h 2025-09-07T06:55:58.8500646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward.h 2025-09-07T06:55:58.8504556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8508889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h 2025-09-07T06:55:58.8513512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h 2025-09-07T06:55:58.8517393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_native.h 2025-09-07T06:55:58.8521150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_ops.h 2025-09-07T06:55:58.8525656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy.h 2025-09-07T06:55:58.8530202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8534470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8538113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_native.h 2025-09-07T06:55:58.8542252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_ops.h 2025-09-07T06:55:58.8546280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cpu_dispatch.h 2025-09-07T06:55:58.8550067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cuda_dispatch.h 2025-09-07T06:55:58.8553962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_meta_dispatch.h 2025-09-07T06:55:58.8558896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_native.h 2025-09-07T06:55:58.8563205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_ops.h 2025-09-07T06:55:58.8567341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform.h 2025-09-07T06:55:58.8570999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8575236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cpu_dispatch.h 2025-09-07T06:55:58.8578853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cuda_dispatch.h 2025-09-07T06:55:58.8582675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_meta_dispatch.h 2025-09-07T06:55:58.8586757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_native.h 2025-09-07T06:55:58.8590713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_ops.h 2025-09-07T06:55:58.8594939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive.h 2025-09-07T06:55:58.8599431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8603537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h 2025-09-07T06:55:58.8607457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h 2025-09-07T06:55:58.8611484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_native.h 2025-09-07T06:55:58.8615708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_ops.h 2025-09-07T06:55:58.8620250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim.h 2025-09-07T06:55:58.8624307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8628387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive.h 2025-09-07T06:55:58.8632539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8637558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h 2025-09-07T06:55:58.8641304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h 2025-09-07T06:55:58.8645683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_native.h 2025-09-07T06:55:58.8650133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_ops.h 2025-09-07T06:55:58.8654843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cpu_dispatch.h 2025-09-07T06:55:58.8658382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cuda_dispatch.h 2025-09-07T06:55:58.8663188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_native.h 2025-09-07T06:55:58.8668261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_ops.h 2025-09-07T06:55:58.8673252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk.h 2025-09-07T06:55:58.8677438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8681634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_native.h 2025-09-07T06:55:58.8685605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_ops.h 2025-09-07T06:55:58.8689631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split.h 2025-09-07T06:55:58.8693562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8697321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_native.h 2025-09-07T06:55:58.8701546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_ops.h 2025-09-07T06:55:58.8705505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes.h 2025-09-07T06:55:58.8709988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8744999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_native.h 2025-09-07T06:55:58.8749197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h 2025-09-07T06:55:58.8753102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze.h 2025-09-07T06:55:58.8757247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8761219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy.h 2025-09-07T06:55:58.8765557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8769530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8789862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_native.h 2025-09-07T06:55:58.8790547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_ops.h 2025-09-07T06:55:58.8791147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_native.h 2025-09-07T06:55:58.8791713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_ops.h 2025-09-07T06:55:58.8792297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d.h 2025-09-07T06:55:58.8794337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward.h 2025-09-07T06:55:58.8798420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8802249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h 2025-09-07T06:55:58.8806980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h 2025-09-07T06:55:58.8811089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h 2025-09-07T06:55:58.8815521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h 2025-09-07T06:55:58.8819997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h 2025-09-07T06:55:58.8823824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h 2025-09-07T06:55:58.8828420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8832509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8836749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h 2025-09-07T06:55:58.8841061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h 2025-09-07T06:55:58.8844731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta.h 2025-09-07T06:55:58.8848998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h 2025-09-07T06:55:58.8852990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_native.h 2025-09-07T06:55:58.8856986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_ops.h 2025-09-07T06:55:58.8861158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d.h 2025-09-07T06:55:58.8865398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward.h 2025-09-07T06:55:58.8869687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8873519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h 2025-09-07T06:55:58.8877574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h 2025-09-07T06:55:58.8881842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h 2025-09-07T06:55:58.8886366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h 2025-09-07T06:55:58.8890264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h 2025-09-07T06:55:58.8894474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h 2025-09-07T06:55:58.8898779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8903207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.8907296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8911604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h 2025-09-07T06:55:58.8915955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h 2025-09-07T06:55:58.8919802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta.h 2025-09-07T06:55:58.8923942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h 2025-09-07T06:55:58.8927859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_native.h 2025-09-07T06:55:58.8932337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_ops.h 2025-09-07T06:55:58.8936617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d.h 2025-09-07T06:55:58.8940570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward.h 2025-09-07T06:55:58.8944794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8948589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h 2025-09-07T06:55:58.8952536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h 2025-09-07T06:55:58.8956913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta.h 2025-09-07T06:55:58.8962135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h 2025-09-07T06:55:58.8966619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_native.h 2025-09-07T06:55:58.8971317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_ops.h 2025-09-07T06:55:58.8975573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.8980058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.8984292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h 2025-09-07T06:55:58.8988409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h 2025-09-07T06:55:58.8992366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta.h 2025-09-07T06:55:58.8996251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h 2025-09-07T06:55:58.9000998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_native.h 2025-09-07T06:55:58.9005021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_ops.h 2025-09-07T06:55:58.9009162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d.h 2025-09-07T06:55:58.9013300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward.h 2025-09-07T06:55:58.9017491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9021588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h 2025-09-07T06:55:58.9025952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h 2025-09-07T06:55:58.9030043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h 2025-09-07T06:55:58.9034142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h 2025-09-07T06:55:58.9038196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_native.h 2025-09-07T06:55:58.9042343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h 2025-09-07T06:55:58.9046885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9050948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9055126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h 2025-09-07T06:55:58.9059369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h 2025-09-07T06:55:58.9063264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta.h 2025-09-07T06:55:58.9068776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h 2025-09-07T06:55:58.9071956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_native.h 2025-09-07T06:55:58.9076085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_ops.h 2025-09-07T06:55:58.9080258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d.h 2025-09-07T06:55:58.9084643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward.h 2025-09-07T06:55:58.9088885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9093054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h 2025-09-07T06:55:58.9097680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h 2025-09-07T06:55:58.9102175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h 2025-09-07T06:55:58.9106625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h 2025-09-07T06:55:58.9110736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_native.h 2025-09-07T06:55:58.9115113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h 2025-09-07T06:55:58.9120512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9125596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9130402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9135080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h 2025-09-07T06:55:58.9139228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h 2025-09-07T06:55:58.9143588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta.h 2025-09-07T06:55:58.9147838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h 2025-09-07T06:55:58.9152470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_native.h 2025-09-07T06:55:58.9156601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_ops.h 2025-09-07T06:55:58.9161487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d.h 2025-09-07T06:55:58.9165958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward.h 2025-09-07T06:55:58.9170482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9174829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h 2025-09-07T06:55:58.9179162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h 2025-09-07T06:55:58.9184097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h 2025-09-07T06:55:58.9188652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h 2025-09-07T06:55:58.9193148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_native.h 2025-09-07T06:55:58.9197448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h 2025-09-07T06:55:58.9202825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9207732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9212816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h 2025-09-07T06:55:58.9218142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h 2025-09-07T06:55:58.9222847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta.h 2025-09-07T06:55:58.9227892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h 2025-09-07T06:55:58.9232381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_native.h 2025-09-07T06:55:58.9237161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_ops.h 2025-09-07T06:55:58.9242706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d.h 2025-09-07T06:55:58.9247170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward.h 2025-09-07T06:55:58.9251443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9255522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h 2025-09-07T06:55:58.9259650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h 2025-09-07T06:55:58.9264436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h 2025-09-07T06:55:58.9269139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h 2025-09-07T06:55:58.9273132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h 2025-09-07T06:55:58.9277139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h 2025-09-07T06:55:58.9281910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9286228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9290103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h 2025-09-07T06:55:58.9294977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h 2025-09-07T06:55:58.9299435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta.h 2025-09-07T06:55:58.9303873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h 2025-09-07T06:55:58.9308523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_native.h 2025-09-07T06:55:58.9312484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_ops.h 2025-09-07T06:55:58.9316200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values.h 2025-09-07T06:55:58.9320286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9323511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy.h 2025-09-07T06:55:58.9327935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9331532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9335554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_native.h 2025-09-07T06:55:58.9339482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_ops.h 2025-09-07T06:55:58.9343348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_native.h 2025-09-07T06:55:58.9347447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_ops.h 2025-09-07T06:55:58.9351327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward.h 2025-09-07T06:55:58.9355268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9359005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_native.h 2025-09-07T06:55:58.9364391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h 2025-09-07T06:55:58.9366866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander.h 2025-09-07T06:55:58.9370521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9374286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_native.h 2025-09-07T06:55:58.9377833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_ops.h 2025-09-07T06:55:58.9381596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var.h 2025-09-07T06:55:58.9385231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9389042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cpu_dispatch.h 2025-09-07T06:55:58.9392735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cuda_dispatch.h 2025-09-07T06:55:58.9396303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean.h 2025-09-07T06:55:58.9399990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9404128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9408144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cpu_dispatch.h 2025-09-07T06:55:58.9412381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cuda_dispatch.h 2025-09-07T06:55:58.9416479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_native.h 2025-09-07T06:55:58.9420161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_ops.h 2025-09-07T06:55:58.9423748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_native.h 2025-09-07T06:55:58.9427459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_ops.h 2025-09-07T06:55:58.9430810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot.h 2025-09-07T06:55:58.9434441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9438953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cpu_dispatch.h 2025-09-07T06:55:58.9442706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cuda_dispatch.h 2025-09-07T06:55:58.9446678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_native.h 2025-09-07T06:55:58.9450340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_ops.h 2025-09-07T06:55:58.9453756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view.h 2025-09-07T06:55:58.9457188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as.h 2025-09-07T06:55:58.9460612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex.h 2025-09-07T06:55:58.9464476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy.h 2025-09-07T06:55:58.9469829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9473683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9478831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_native.h 2025-09-07T06:55:58.9482761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_ops.h 2025-09-07T06:55:58.9486625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h 2025-09-07T06:55:58.9490428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h 2025-09-07T06:55:58.9494805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_meta_dispatch.h 2025-09-07T06:55:58.9499100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_native.h 2025-09-07T06:55:58.9503028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_ops.h 2025-09-07T06:55:58.9508381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9512236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_native.h 2025-09-07T06:55:58.9516328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_ops.h 2025-09-07T06:55:58.9520132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real.h 2025-09-07T06:55:58.9523907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy.h 2025-09-07T06:55:58.9527986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9532079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9535853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_native.h 2025-09-07T06:55:58.9539697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_ops.h 2025-09-07T06:55:58.9543621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cpu_dispatch.h 2025-09-07T06:55:58.9547613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cuda_dispatch.h 2025-09-07T06:55:58.9551525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_meta_dispatch.h 2025-09-07T06:55:58.9556129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_native.h 2025-09-07T06:55:58.9560038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_ops.h 2025-09-07T06:55:58.9563993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9567629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy.h 2025-09-07T06:55:58.9571756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9575614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9579420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_native.h 2025-09-07T06:55:58.9583610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_ops.h 2025-09-07T06:55:58.9587959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cpu_dispatch.h 2025-09-07T06:55:58.9591925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cuda_dispatch.h 2025-09-07T06:55:58.9595811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_meta_dispatch.h 2025-09-07T06:55:58.9599727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_native.h 2025-09-07T06:55:58.9603463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_ops.h 2025-09-07T06:55:58.9606859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit.h 2025-09-07T06:55:58.9610948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9614956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_native.h 2025-09-07T06:55:58.9618674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_ops.h 2025-09-07T06:55:58.9623098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack.h 2025-09-07T06:55:58.9627045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9630734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_native.h 2025-09-07T06:55:58.9634710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_ops.h 2025-09-07T06:55:58.9638684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where.h 2025-09-07T06:55:58.9642279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9646754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cpu_dispatch.h 2025-09-07T06:55:58.9649979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cuda_dispatch.h 2025-09-07T06:55:58.9653744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_native.h 2025-09-07T06:55:58.9657457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_ops.h 2025-09-07T06:55:58.9661263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy.h 2025-09-07T06:55:58.9665098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9669195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9673620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cpu_dispatch.h 2025-09-07T06:55:58.9677494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cuda_dispatch.h 2025-09-07T06:55:58.9681466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta.h 2025-09-07T06:55:58.9685588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta_dispatch.h 2025-09-07T06:55:58.9689755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_native.h 2025-09-07T06:55:58.9693233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_ops.h 2025-09-07T06:55:58.9697715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor.h 2025-09-07T06:55:58.9701526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9705440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_native.h 2025-09-07T06:55:58.9709149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_ops.h 2025-09-07T06:55:58.9714478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero.h 2025-09-07T06:55:58.9718485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros.h 2025-09-07T06:55:58.9722457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9726350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like.h 2025-09-07T06:55:58.9730656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9734678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-09-07T06:55:58.9739105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_native.h 2025-09-07T06:55:58.9743054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_ops.h 2025-09-07T06:55:58.9746918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_native.h 2025-09-07T06:55:58.9750595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_ops.h 2025-09-07T06:55:58.9754602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9758341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cpu_dispatch.h 2025-09-07T06:55:58.9762594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cuda_dispatch.h 2025-09-07T06:55:58.9766617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_meta_dispatch.h 2025-09-07T06:55:58.9776335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_native.h 2025-09-07T06:55:58.9780696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_ops.h 2025-09-07T06:55:58.9783581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d.h 2025-09-07T06:55:58.9787395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h 2025-09-07T06:55:58.9791436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9795457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h 2025-09-07T06:55:58.9799414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h 2025-09-07T06:55:58.9803322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h 2025-09-07T06:55:58.9807195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h 2025-09-07T06:55:58.9827230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9831413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h 2025-09-07T06:55:58.9835595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h 2025-09-07T06:55:58.9839692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h 2025-09-07T06:55:58.9843858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h 2025-09-07T06:55:58.9847753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d.h 2025-09-07T06:55:58.9851660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h 2025-09-07T06:55:58.9856038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9860741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-09-07T06:55:58.9864902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-09-07T06:55:58.9868861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h 2025-09-07T06:55:58.9872867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h 2025-09-07T06:55:58.9877182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9881345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h 2025-09-07T06:55:58.9885298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h 2025-09-07T06:55:58.9889148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h 2025-09-07T06:55:58.9893102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h 2025-09-07T06:55:58.9896954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation.h 2025-09-07T06:55:58.9900888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:58.9904865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h 2025-09-07T06:55:58.9908727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h 2025-09-07T06:55:58.9912693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta.h 2025-09-07T06:55:58.9916713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h 2025-09-07T06:55:58.9920601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_native.h 2025-09-07T06:55:58.9924449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_ops.h 2025-09-07T06:55:58.9928483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim.h 2025-09-07T06:55:58.9932540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:58.9936530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_native.h 2025-09-07T06:55:58.9940177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_ops.h 2025-09-07T06:55:58.9944080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu.h 2025-09-07T06:55:58.9947985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9951612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_cpu_dispatch.h 2025-09-07T06:55:58.9955410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_meta_dispatch.h 2025-09-07T06:55:58.9959718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_native.h 2025-09-07T06:55:58.9963677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_ops.h 2025-09-07T06:55:58.9967514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax.h 2025-09-07T06:55:58.9971146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9975124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cpu_dispatch.h 2025-09-07T06:55:58.9979256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cuda_dispatch.h 2025-09-07T06:55:58.9983076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_native.h 2025-09-07T06:55:58.9986847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_ops.h 2025-09-07T06:55:58.9990964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h 2025-09-07T06:55:58.9995473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:58.9999236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h 2025-09-07T06:55:59.0003140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h 2025-09-07T06:55:59.0007077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h 2025-09-07T06:55:59.0011162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h 2025-09-07T06:55:59.0014994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale.h 2025-09-07T06:55:59.0018845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0022597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h 2025-09-07T06:55:59.0026492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h 2025-09-07T06:55:59.0030541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h 2025-09-07T06:55:59.0034555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_native.h 2025-09-07T06:55:59.0038411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_ops.h 2025-09-07T06:55:59.0042241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async.h 2025-09-07T06:55:59.0046029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cpu_dispatch.h 2025-09-07T06:55:59.0049715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cuda_dispatch.h 2025-09-07T06:55:59.0054482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_native.h 2025-09-07T06:55:59.0058958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_ops.h 2025-09-07T06:55:59.0062777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar.h 2025-09-07T06:55:59.0067122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0070945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_native.h 2025-09-07T06:55:59.0074722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_ops.h 2025-09-07T06:55:59.0078902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata.h 2025-09-07T06:55:59.0083062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0087196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h 2025-09-07T06:55:59.0091109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_native.h 2025-09-07T06:55:59.0095673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_ops.h 2025-09-07T06:55:59.0099878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision.h 2025-09-07T06:55:59.0104433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0108435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_native.h 2025-09-07T06:55:59.0112824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_ops.h 2025-09-07T06:55:59.0116934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision.h 2025-09-07T06:55:59.0120957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0125444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h 2025-09-07T06:55:59.0129454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h 2025-09-07T06:55:59.0133523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward.h 2025-09-07T06:55:59.0137956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0141798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_native.h 2025-09-07T06:55:59.0145740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_ops.h 2025-09-07T06:55:59.0149535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index.h 2025-09-07T06:55:59.0153671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward.h 2025-09-07T06:55:59.0158381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0162594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h 2025-09-07T06:55:59.0166557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h 2025-09-07T06:55:59.0184122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0188039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_native.h 2025-09-07T06:55:59.0191918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_ops.h 2025-09-07T06:55:59.0195863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update.h 2025-09-07T06:55:59.0199899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0203713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_native.h 2025-09-07T06:55:59.0207653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_ops.h 2025-09-07T06:55:59.0211394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update.h 2025-09-07T06:55:59.0216027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0220192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h 2025-09-07T06:55:59.0224208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h 2025-09-07T06:55:59.0228102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_native.h 2025-09-07T06:55:59.0231974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_ops.h 2025-09-07T06:55:59.0235630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte.h 2025-09-07T06:55:59.0239554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0243295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_native.h 2025-09-07T06:55:59.0247154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_ops.h 2025-09-07T06:55:59.0251013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char.h 2025-09-07T06:55:59.0256949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0262125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_native.h 2025-09-07T06:55:59.0267428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_ops.h 2025-09-07T06:55:59.0272350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double.h 2025-09-07T06:55:59.0276927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0282231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_native.h 2025-09-07T06:55:59.0287308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_ops.h 2025-09-07T06:55:59.0292394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float.h 2025-09-07T06:55:59.0297994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0303045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_native.h 2025-09-07T06:55:59.0308186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_ops.h 2025-09-07T06:55:59.0312147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half.h 2025-09-07T06:55:59.0317564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0322616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_native.h 2025-09-07T06:55:59.0336555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_ops.h 2025-09-07T06:55:59.0341886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int.h 2025-09-07T06:55:59.0347839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0351520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_native.h 2025-09-07T06:55:59.0356909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_ops.h 2025-09-07T06:55:59.0362456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long.h 2025-09-07T06:55:59.0367421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0373101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_native.h 2025-09-07T06:55:59.0377059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_ops.h 2025-09-07T06:55:59.0380579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short.h 2025-09-07T06:55:59.0384495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0389858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_native.h 2025-09-07T06:55:59.0393561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_ops.h 2025-09-07T06:55:59.0397699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward.h 2025-09-07T06:55:59.0401366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0404982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h 2025-09-07T06:55:59.0408732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h 2025-09-07T06:55:59.0412768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_native.h 2025-09-07T06:55:59.0416558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_ops.h 2025-09-07T06:55:59.0422215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward.h 2025-09-07T06:55:59.0426420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0430138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h 2025-09-07T06:55:59.0433919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h 2025-09-07T06:55:59.0437701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_native.h 2025-09-07T06:55:59.0441380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_ops.h 2025-09-07T06:55:59.0445163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper.h 2025-09-07T06:55:59.0449132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0452807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h 2025-09-07T06:55:59.0456541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h 2025-09-07T06:55:59.0460909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_native.h 2025-09-07T06:55:59.0464828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_ops.h 2025-09-07T06:55:59.0468581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor.h 2025-09-07T06:55:59.0472619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0477787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h 2025-09-07T06:55:59.0482872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h 2025-09-07T06:55:59.0486621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat.h 2025-09-07T06:55:59.0490423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0494033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h 2025-09-07T06:55:59.0498005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_native.h 2025-09-07T06:55:59.0501698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_ops.h 2025-09-07T06:55:59.0505507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce.h 2025-09-07T06:55:59.0509142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced.h 2025-09-07T06:55:59.0513248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0517232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_meta_dispatch.h 2025-09-07T06:55:59.0520981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_native.h 2025-09-07T06:55:59.0524692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_ops.h 2025-09-07T06:55:59.0528748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0532534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_native.h 2025-09-07T06:55:59.0536269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_ops.h 2025-09-07T06:55:59.0540261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination.h 2025-09-07T06:55:59.0544181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h 2025-09-07T06:55:59.0547945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h 2025-09-07T06:55:59.0551805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_native.h 2025-09-07T06:55:59.0555572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_ops.h 2025-09-07T06:55:59.0559220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj.h 2025-09-07T06:55:59.0562803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0566389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy.h 2025-09-07T06:55:59.0570286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.0574037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0579543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_native.h 2025-09-07T06:55:59.0584666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_ops.h 2025-09-07T06:55:59.0589833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_native.h 2025-09-07T06:55:59.0594728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_ops.h 2025-09-07T06:55:59.0598649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical.h 2025-09-07T06:55:59.0604248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0609295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_native.h 2025-09-07T06:55:59.0614614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_ops.h 2025-09-07T06:55:59.0619850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h 2025-09-07T06:55:59.0625186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.0630704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h 2025-09-07T06:55:59.0636053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h 2025-09-07T06:55:59.0640241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h 2025-09-07T06:55:59.0647686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h 2025-09-07T06:55:59.0651699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h 2025-09-07T06:55:59.0657081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h 2025-09-07T06:55:59.0662210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h 2025-09-07T06:55:59.0667786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.0673254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h 2025-09-07T06:55:59.0678644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h 2025-09-07T06:55:59.0683804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h 2025-09-07T06:55:59.0689176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h 2025-09-07T06:55:59.0693415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h 2025-09-07T06:55:59.0698640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h 2025-09-07T06:55:59.0703823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack.h 2025-09-07T06:55:59.0709138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h 2025-09-07T06:55:59.0714297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h 2025-09-07T06:55:59.0719582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h 2025-09-07T06:55:59.0725014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h 2025-09-07T06:55:59.0729062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h 2025-09-07T06:55:59.0734306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h 2025-09-07T06:55:59.0739475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h 2025-09-07T06:55:59.0745114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution.h 2025-09-07T06:55:59.0750419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0755866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0761013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward.h 2025-09-07T06:55:59.0766411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0770691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_native.h 2025-09-07T06:55:59.0775615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_ops.h 2025-09-07T06:55:59.0780839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode.h 2025-09-07T06:55:59.0786863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.0792013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_native.h 2025-09-07T06:55:59.0797261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_ops.h 2025-09-07T06:55:59.0802594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_native.h 2025-09-07T06:55:59.0808077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_ops.h 2025-09-07T06:55:59.0812761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d.h 2025-09-07T06:55:59.0817389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h 2025-09-07T06:55:59.0822720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_native.h 2025-09-07T06:55:59.0828368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_ops.h 2025-09-07T06:55:59.0841093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from.h 2025-09-07T06:55:59.0846259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize.h 2025-09-07T06:55:59.0851873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0857385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_native.h 2025-09-07T06:55:59.0861473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_ops.h 2025-09-07T06:55:59.0867385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0871420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_native.h 2025-09-07T06:55:59.0876833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_ops.h 2025-09-07T06:55:59.0881154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress.h 2025-09-07T06:55:59.0884997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h 2025-09-07T06:55:59.0888661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_native.h 2025-09-07T06:55:59.0894275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_ops.h 2025-09-07T06:55:59.0898043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm.h 2025-09-07T06:55:59.0901991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h 2025-09-07T06:55:59.0905848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_native.h 2025-09-07T06:55:59.0910177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_ops.h 2025-09-07T06:55:59.0914144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search.h 2025-09-07T06:55:59.0918010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h 2025-09-07T06:55:59.0923768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h 2025-09-07T06:55:59.0927599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h 2025-09-07T06:55:59.0931296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss.h 2025-09-07T06:55:59.0934922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward.h 2025-09-07T06:55:59.0938776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0942536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h 2025-09-07T06:55:59.0946443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h 2025-09-07T06:55:59.0950740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_native.h 2025-09-07T06:55:59.0954522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_ops.h 2025-09-07T06:55:59.0958379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.0962121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h 2025-09-07T06:55:59.0966043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h 2025-09-07T06:55:59.0970797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h 2025-09-07T06:55:59.0988888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_native.h 2025-09-07T06:55:59.0992594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_ops.h 2025-09-07T06:55:59.0996322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward.h 2025-09-07T06:55:59.1000133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h 2025-09-07T06:55:59.1004430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_native.h 2025-09-07T06:55:59.1008221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_ops.h 2025-09-07T06:55:59.1011978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward.h 2025-09-07T06:55:59.1016023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h 2025-09-07T06:55:59.1019878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_native.h 2025-09-07T06:55:59.1023727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_ops.h 2025-09-07T06:55:59.1028229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss.h 2025-09-07T06:55:59.1032459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1035975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h 2025-09-07T06:55:59.1039862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_native.h 2025-09-07T06:55:59.1043668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h 2025-09-07T06:55:59.1047446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state.h 2025-09-07T06:55:59.1051453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1055244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h 2025-09-07T06:55:59.1059122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h 2025-09-07T06:55:59.1062979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h 2025-09-07T06:55:59.1067090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn.h 2025-09-07T06:55:59.1070925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward.h 2025-09-07T06:55:59.1074952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1078889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h 2025-09-07T06:55:59.1082702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_native.h 2025-09-07T06:55:59.1086899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h 2025-09-07T06:55:59.1090604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1094327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h 2025-09-07T06:55:59.1098142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h 2025-09-07T06:55:59.1102473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1106803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h 2025-09-07T06:55:59.1110617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h 2025-09-07T06:55:59.1115125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h 2025-09-07T06:55:59.1118564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_native.h 2025-09-07T06:55:59.1122303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_ops.h 2025-09-07T06:55:59.1126099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache.h 2025-09-07T06:55:59.1130073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.1133716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h 2025-09-07T06:55:59.1137554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h 2025-09-07T06:55:59.1141361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h 2025-09-07T06:55:59.1145655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.1149468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h 2025-09-07T06:55:59.1153372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h 2025-09-07T06:55:59.1157543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size.h 2025-09-07T06:55:59.1161899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.1165833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h 2025-09-07T06:55:59.1169882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h 2025-09-07T06:55:59.1173704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h 2025-09-07T06:55:59.1177832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.1181854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h 2025-09-07T06:55:59.1185779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h 2025-09-07T06:55:59.1190087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper.h 2025-09-07T06:55:59.1194255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h 2025-09-07T06:55:59.1198150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h 2025-09-07T06:55:59.1201879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_native.h 2025-09-07T06:55:59.1205810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_ops.h 2025-09-07T06:55:59.1210216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper.h 2025-09-07T06:55:59.1213922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h 2025-09-07T06:55:59.1217640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h 2025-09-07T06:55:59.1221434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_native.h 2025-09-07T06:55:59.1225266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_ops.h 2025-09-07T06:55:59.1229170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap.h 2025-09-07T06:55:59.1233097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.1237919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_native.h 2025-09-07T06:55:59.1241948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h 2025-09-07T06:55:59.1247791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI.h 2025-09-07T06:55:59.1251431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_native.h 2025-09-07T06:55:59.1255630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_ops.h 2025-09-07T06:55:59.1259512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV.h 2025-09-07T06:55:59.1263086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_native.h 2025-09-07T06:55:59.1266827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_ops.h 2025-09-07T06:55:59.1270875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange.h 2025-09-07T06:55:59.1274810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.1278552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_native.h 2025-09-07T06:55:59.1282339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_ops.h 2025-09-07T06:55:59.1286175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad.h 2025-09-07T06:55:59.1290159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1294339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h 2025-09-07T06:55:59.1298400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h 2025-09-07T06:55:59.1303304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_native.h 2025-09-07T06:55:59.1306700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_ops.h 2025-09-07T06:55:59.1311030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h 2025-09-07T06:55:59.1314976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h 2025-09-07T06:55:59.1318703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h 2025-09-07T06:55:59.1323165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h 2025-09-07T06:55:59.1327182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h 2025-09-07T06:55:59.1347427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h 2025-09-07T06:55:59.1347739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h 2025-09-07T06:55:59.1348038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h 2025-09-07T06:55:59.1348299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor.h 2025-09-07T06:55:59.1348706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1353501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h 2025-09-07T06:55:59.1356427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h 2025-09-07T06:55:59.1360848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h 2025-09-07T06:55:59.1365601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_native.h 2025-09-07T06:55:59.1368951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_ops.h 2025-09-07T06:55:59.1372804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward.h 2025-09-07T06:55:59.1376957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h 2025-09-07T06:55:59.1380710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_native.h 2025-09-07T06:55:59.1384896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_ops.h 2025-09-07T06:55:59.1389149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward.h 2025-09-07T06:55:59.1393050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h 2025-09-07T06:55:59.1398499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_native.h 2025-09-07T06:55:59.1401270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_ops.h 2025-09-07T06:55:59.1405794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag.h 2025-09-07T06:55:59.1409591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward.h 2025-09-07T06:55:59.1413369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h 2025-09-07T06:55:59.1417173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h 2025-09-07T06:55:59.1420970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_native.h 2025-09-07T06:55:59.1425145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_ops.h 2025-09-07T06:55:59.1429716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1433106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h 2025-09-07T06:55:59.1436978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h 2025-09-07T06:55:59.1440960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward.h 2025-09-07T06:55:59.1444956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1448992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h 2025-09-07T06:55:59.1452891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h 2025-09-07T06:55:59.1456706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h 2025-09-07T06:55:59.1460545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h 2025-09-07T06:55:59.1464454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only.h 2025-09-07T06:55:59.1468473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1472561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h 2025-09-07T06:55:59.1476625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h 2025-09-07T06:55:59.1480280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_native.h 2025-09-07T06:55:59.1484208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h 2025-09-07T06:55:59.1488539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_native.h 2025-09-07T06:55:59.1493279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_ops.h 2025-09-07T06:55:59.1497398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h 2025-09-07T06:55:59.1501952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1506116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h 2025-09-07T06:55:59.1510023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h 2025-09-07T06:55:59.1515289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h 2025-09-07T06:55:59.1519477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h 2025-09-07T06:55:59.1523384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward.h 2025-09-07T06:55:59.1527834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.1532510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h 2025-09-07T06:55:59.1536762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h 2025-09-07T06:55:59.1540949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized.h 2025-09-07T06:55:59.1544943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1548899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h 2025-09-07T06:55:59.1552719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_native.h 2025-09-07T06:55:59.1556627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_ops.h 2025-09-07T06:55:59.1560849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h 2025-09-07T06:55:59.1564981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1568979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h 2025-09-07T06:55:59.1572973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h 2025-09-07T06:55:59.1576870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h 2025-09-07T06:55:59.1581004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist.h 2025-09-07T06:55:59.1585733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1589638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_native.h 2025-09-07T06:55:59.1594155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_ops.h 2025-09-07T06:55:59.1598249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h 2025-09-07T06:55:59.1602798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h 2025-09-07T06:55:59.1607452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h 2025-09-07T06:55:59.1611589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h 2025-09-07T06:55:59.1615698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h 2025-09-07T06:55:59.1620192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h 2025-09-07T06:55:59.1624778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1628914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h 2025-09-07T06:55:59.1632881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h 2025-09-07T06:55:59.1637279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h 2025-09-07T06:55:59.1641566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h 2025-09-07T06:55:59.1646039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h 2025-09-07T06:55:59.1650050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h 2025-09-07T06:55:59.1654307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h 2025-09-07T06:55:59.1658463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h 2025-09-07T06:55:59.1663567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h 2025-09-07T06:55:59.1667223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h 2025-09-07T06:55:59.1672345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1677236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h 2025-09-07T06:55:59.1681377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h 2025-09-07T06:55:59.1686194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h 2025-09-07T06:55:59.1690301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h 2025-09-07T06:55:59.1694901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h 2025-09-07T06:55:59.1699267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1704453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h 2025-09-07T06:55:59.1708268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h 2025-09-07T06:55:59.1712525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h 2025-09-07T06:55:59.1716606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h 2025-09-07T06:55:59.1721428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c.h 2025-09-07T06:55:59.1724242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h 2025-09-07T06:55:59.1728081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h 2025-09-07T06:55:59.1732922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_native.h 2025-09-07T06:55:59.1735765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_ops.h 2025-09-07T06:55:59.1739578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r.h 2025-09-07T06:55:59.1743711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h 2025-09-07T06:55:59.1747569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h 2025-09-07T06:55:59.1751892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_native.h 2025-09-07T06:55:59.1756038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_ops.h 2025-09-07T06:55:59.1760004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c.h 2025-09-07T06:55:59.1764059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h 2025-09-07T06:55:59.1767989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h 2025-09-07T06:55:59.1773166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_native.h 2025-09-07T06:55:59.1775964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_ops.h 2025-09-07T06:55:59.1779866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h 2025-09-07T06:55:59.1784906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h 2025-09-07T06:55:59.1787924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h 2025-09-07T06:55:59.1793100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h 2025-09-07T06:55:59.1797211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h 2025-09-07T06:55:59.1802073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward.h 2025-09-07T06:55:59.1805283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h 2025-09-07T06:55:59.1809816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_native.h 2025-09-07T06:55:59.1813755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_ops.h 2025-09-07T06:55:59.1817514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward.h 2025-09-07T06:55:59.1821876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h 2025-09-07T06:55:59.1826439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_native.h 2025-09-07T06:55:59.1831045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_ops.h 2025-09-07T06:55:59.1834541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar.h 2025-09-07T06:55:59.1838859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1842268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_cpu_dispatch.h 2025-09-07T06:55:59.1846063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_native.h 2025-09-07T06:55:59.1849968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_ops.h 2025-09-07T06:55:59.1853790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs.h 2025-09-07T06:55:59.1858461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1861680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h 2025-09-07T06:55:59.1865562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_native.h 2025-09-07T06:55:59.1869409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_ops.h 2025-09-07T06:55:59.1873298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos.h 2025-09-07T06:55:59.1878505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1882420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h 2025-09-07T06:55:59.1886895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_native.h 2025-09-07T06:55:59.1891728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_ops.h 2025-09-07T06:55:59.1894208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add.h 2025-09-07T06:55:59.1897907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv.h 2025-09-07T06:55:59.1901767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1905662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h 2025-09-07T06:55:59.1910167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_native.h 2025-09-07T06:55:59.1914088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_ops.h 2025-09-07T06:55:59.1918182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul.h 2025-09-07T06:55:59.1922911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1926359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h 2025-09-07T06:55:59.1930099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_native.h 2025-09-07T06:55:59.1933895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_ops.h 2025-09-07T06:55:59.1937790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1941716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h 2025-09-07T06:55:59.1946066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_native.h 2025-09-07T06:55:59.1949872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_ops.h 2025-09-07T06:55:59.1953598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin.h 2025-09-07T06:55:59.1957521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1961301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h 2025-09-07T06:55:59.1965875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_native.h 2025-09-07T06:55:59.1970159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_ops.h 2025-09-07T06:55:59.1974058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan.h 2025-09-07T06:55:59.1982329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.1988099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h 2025-09-07T06:55:59.1993363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_native.h 2025-09-07T06:55:59.1997467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_ops.h 2025-09-07T06:55:59.2002603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil.h 2025-09-07T06:55:59.2008039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2013316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h 2025-09-07T06:55:59.2018400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_native.h 2025-09-07T06:55:59.2023523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_ops.h 2025-09-07T06:55:59.2028728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max.h 2025-09-07T06:55:59.2032911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2038151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h 2025-09-07T06:55:59.2043405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_native.h 2025-09-07T06:55:59.2067114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_ops.h 2025-09-07T06:55:59.2072320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min.h 2025-09-07T06:55:59.2077812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2083298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h 2025-09-07T06:55:59.2088562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_native.h 2025-09-07T06:55:59.2093926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_ops.h 2025-09-07T06:55:59.2097856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy.h 2025-09-07T06:55:59.2105398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2109350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h 2025-09-07T06:55:59.2114948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_native.h 2025-09-07T06:55:59.2120193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_ops.h 2025-09-07T06:55:59.2125296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos.h 2025-09-07T06:55:59.2130434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh.h 2025-09-07T06:55:59.2136042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2142118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h 2025-09-07T06:55:59.2147398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_native.h 2025-09-07T06:55:59.2152575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_ops.h 2025-09-07T06:55:59.2156742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2162099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h 2025-09-07T06:55:59.2167573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_native.h 2025-09-07T06:55:59.2172765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_ops.h 2025-09-07T06:55:59.2177891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div.h 2025-09-07T06:55:59.2183039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2188234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h 2025-09-07T06:55:59.2192188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_native.h 2025-09-07T06:55:59.2197878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_ops.h 2025-09-07T06:55:59.2203089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf.h 2025-09-07T06:55:59.2208245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc.h 2025-09-07T06:55:59.2213546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2218702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h 2025-09-07T06:55:59.2223883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_native.h 2025-09-07T06:55:59.2228077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_ops.h 2025-09-07T06:55:59.2233337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2238624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h 2025-09-07T06:55:59.2243798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_native.h 2025-09-07T06:55:59.2249111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_ops.h 2025-09-07T06:55:59.2254145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp.h 2025-09-07T06:55:59.2259234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1.h 2025-09-07T06:55:59.2263304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2268562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h 2025-09-07T06:55:59.2274000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_native.h 2025-09-07T06:55:59.2279757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_ops.h 2025-09-07T06:55:59.2285276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2290433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h 2025-09-07T06:55:59.2295641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_native.h 2025-09-07T06:55:59.2300803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_ops.h 2025-09-07T06:55:59.2304848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor.h 2025-09-07T06:55:59.2311050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2316486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h 2025-09-07T06:55:59.2320878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_native.h 2025-09-07T06:55:59.2326078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_ops.h 2025-09-07T06:55:59.2329950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac.h 2025-09-07T06:55:59.2333886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2339584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h 2025-09-07T06:55:59.2343841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_native.h 2025-09-07T06:55:59.2347773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_ops.h 2025-09-07T06:55:59.2351662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp.h 2025-09-07T06:55:59.2355560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2359398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h 2025-09-07T06:55:59.2363232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_native.h 2025-09-07T06:55:59.2367117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_ops.h 2025-09-07T06:55:59.2372799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma.h 2025-09-07T06:55:59.2376848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2380713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h 2025-09-07T06:55:59.2384723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_native.h 2025-09-07T06:55:59.2388720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_ops.h 2025-09-07T06:55:59.2392355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log.h 2025-09-07T06:55:59.2396128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10.h 2025-09-07T06:55:59.2400793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2404632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h 2025-09-07T06:55:59.2408463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_native.h 2025-09-07T06:55:59.2412288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_ops.h 2025-09-07T06:55:59.2416094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p.h 2025-09-07T06:55:59.2421018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2425049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h 2025-09-07T06:55:59.2430518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_native.h 2025-09-07T06:55:59.2434666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_ops.h 2025-09-07T06:55:59.2438490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2.h 2025-09-07T06:55:59.2442473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2446371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h 2025-09-07T06:55:59.2450210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_native.h 2025-09-07T06:55:59.2454027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_ops.h 2025-09-07T06:55:59.2458204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2462790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h 2025-09-07T06:55:59.2466726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_native.h 2025-09-07T06:55:59.2470487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_ops.h 2025-09-07T06:55:59.2474348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max.h 2025-09-07T06:55:59.2478105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum.h 2025-09-07T06:55:59.2482082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2486169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h 2025-09-07T06:55:59.2489982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_native.h 2025-09-07T06:55:59.2494779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_ops.h 2025-09-07T06:55:59.2498751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2502529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h 2025-09-07T06:55:59.2507021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_native.h 2025-09-07T06:55:59.2510962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_ops.h 2025-09-07T06:55:59.2515319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum.h 2025-09-07T06:55:59.2519361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2523175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h 2025-09-07T06:55:59.2527127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_native.h 2025-09-07T06:55:59.2530786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_ops.h 2025-09-07T06:55:59.2534451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul.h 2025-09-07T06:55:59.2538414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2542192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h 2025-09-07T06:55:59.2546067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_native.h 2025-09-07T06:55:59.2549897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_ops.h 2025-09-07T06:55:59.2553617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg.h 2025-09-07T06:55:59.2557564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2561317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h 2025-09-07T06:55:59.2565372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_native.h 2025-09-07T06:55:59.2569127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_ops.h 2025-09-07T06:55:59.2572885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm.h 2025-09-07T06:55:59.2576783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2580527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h 2025-09-07T06:55:59.2584336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_native.h 2025-09-07T06:55:59.2588138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_ops.h 2025-09-07T06:55:59.2591995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow.h 2025-09-07T06:55:59.2595833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2599699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h 2025-09-07T06:55:59.2603810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_native.h 2025-09-07T06:55:59.2607650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_ops.h 2025-09-07T06:55:59.2611949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal.h 2025-09-07T06:55:59.2615993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2619912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h 2025-09-07T06:55:59.2638508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_native.h 2025-09-07T06:55:59.2642238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_ops.h 2025-09-07T06:55:59.2645978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round.h 2025-09-07T06:55:59.2651311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2655509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h 2025-09-07T06:55:59.2659451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_native.h 2025-09-07T06:55:59.2663237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_ops.h 2025-09-07T06:55:59.2667125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt.h 2025-09-07T06:55:59.2671130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2674834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h 2025-09-07T06:55:59.2678576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_native.h 2025-09-07T06:55:59.2682307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_ops.h 2025-09-07T06:55:59.2686440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid.h 2025-09-07T06:55:59.2690491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2694249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h 2025-09-07T06:55:59.2699076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_native.h 2025-09-07T06:55:59.2702842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_ops.h 2025-09-07T06:55:59.2706662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign.h 2025-09-07T06:55:59.2710793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2714773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h 2025-09-07T06:55:59.2718519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_native.h 2025-09-07T06:55:59.2722264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_ops.h 2025-09-07T06:55:59.2725924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin.h 2025-09-07T06:55:59.2730160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh.h 2025-09-07T06:55:59.2734101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2737848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h 2025-09-07T06:55:59.2741817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_native.h 2025-09-07T06:55:59.2745697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_ops.h 2025-09-07T06:55:59.2750958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2754847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h 2025-09-07T06:55:59.2760417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_native.h 2025-09-07T06:55:59.2765501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_ops.h 2025-09-07T06:55:59.2770588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt.h 2025-09-07T06:55:59.2775982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2781089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h 2025-09-07T06:55:59.2786320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_native.h 2025-09-07T06:55:59.2790256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_ops.h 2025-09-07T06:55:59.2795322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub.h 2025-09-07T06:55:59.2800625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2805789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h 2025-09-07T06:55:59.2811106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_native.h 2025-09-07T06:55:59.2816315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_ops.h 2025-09-07T06:55:59.2820305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan.h 2025-09-07T06:55:59.2825412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh.h 2025-09-07T06:55:59.2830712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2836223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h 2025-09-07T06:55:59.2842715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_native.h 2025-09-07T06:55:59.2886408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_ops.h 2025-09-07T06:55:59.2892043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2898008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h 2025-09-07T06:55:59.2903584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_native.h 2025-09-07T06:55:59.2907584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_ops.h 2025-09-07T06:55:59.2913078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc.h 2025-09-07T06:55:59.2927678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2934069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h 2025-09-07T06:55:59.2940311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_native.h 2025-09-07T06:55:59.2946605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_ops.h 2025-09-07T06:55:59.2952625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero.h 2025-09-07T06:55:59.2958924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.2965050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h 2025-09-07T06:55:59.2971266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_native.h 2025-09-07T06:55:59.2977745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_ops.h 2025-09-07T06:55:59.2983881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async.h 2025-09-07T06:55:59.2989939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h 2025-09-07T06:55:59.2995940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_native.h 2025-09-07T06:55:59.3001849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_ops.h 2025-09-07T06:55:59.3008412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar.h 2025-09-07T06:55:59.3015599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3020996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_native.h 2025-09-07T06:55:59.3025076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_ops.h 2025-09-07T06:55:59.3029040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range.h 2025-09-07T06:55:59.3033454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3037486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h 2025-09-07T06:55:59.3042314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3046321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h 2025-09-07T06:55:59.3050186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h 2025-09-07T06:55:59.3054138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_native.h 2025-09-07T06:55:59.3058011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h 2025-09-07T06:55:59.3062059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad.h 2025-09-07T06:55:59.3066034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3069752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h 2025-09-07T06:55:59.3074589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h 2025-09-07T06:55:59.3078519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_native.h 2025-09-07T06:55:59.3082471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_ops.h 2025-09-07T06:55:59.3086426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam.h 2025-09-07T06:55:59.3090181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw.h 2025-09-07T06:55:59.3094424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3098282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h 2025-09-07T06:55:59.3102133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h 2025-09-07T06:55:59.3106058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_native.h 2025-09-07T06:55:59.3109882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_ops.h 2025-09-07T06:55:59.3113884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3117939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h 2025-09-07T06:55:59.3121783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h 2025-09-07T06:55:59.3125568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_native.h 2025-09-07T06:55:59.3129371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_ops.h 2025-09-07T06:55:59.3133142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout.h 2025-09-07T06:55:59.3137233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3141807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h 2025-09-07T06:55:59.3145782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_native.h 2025-09-07T06:55:59.3149956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_ops.h 2025-09-07T06:55:59.3154004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h 2025-09-07T06:55:59.3158036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3161988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h 2025-09-07T06:55:59.3166529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h 2025-09-07T06:55:59.3170328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h 2025-09-07T06:55:59.3175267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h 2025-09-07T06:55:59.3178283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm.h 2025-09-07T06:55:59.3182106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward.h 2025-09-07T06:55:59.3186963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h 2025-09-07T06:55:59.3190441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_native.h 2025-09-07T06:55:59.3194544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_ops.h 2025-09-07T06:55:59.3198636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.3202424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h 2025-09-07T06:55:59.3206379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_native.h 2025-09-07T06:55:59.3210341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_ops.h 2025-09-07T06:55:59.3215463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice.h 2025-09-07T06:55:59.3218478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h 2025-09-07T06:55:59.3222441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h 2025-09-07T06:55:59.3227233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h 2025-09-07T06:55:59.3230334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_native.h 2025-09-07T06:55:59.3234674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_ops.h 2025-09-07T06:55:59.3238743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd.h 2025-09-07T06:55:59.3244178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3247241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h 2025-09-07T06:55:59.3251141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h 2025-09-07T06:55:59.3255945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_native.h 2025-09-07T06:55:59.3258781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_ops.h 2025-09-07T06:55:59.3263349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal.h 2025-09-07T06:55:59.3267684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3271309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy.h 2025-09-07T06:55:59.3275352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.3292996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3296955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_native.h 2025-09-07T06:55:59.3302102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_ops.h 2025-09-07T06:55:59.3305255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_native.h 2025-09-07T06:55:59.3309791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_ops.h 2025-09-07T06:55:59.3313807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward.h 2025-09-07T06:55:59.3317662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.3321384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_native.h 2025-09-07T06:55:59.3325278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_ops.h 2025-09-07T06:55:59.3329299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h 2025-09-07T06:55:59.3334679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h 2025-09-07T06:55:59.3340386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.3360999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h 2025-09-07T06:55:59.3366503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h 2025-09-07T06:55:59.3372212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3379435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h 2025-09-07T06:55:59.3385174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h 2025-09-07T06:55:59.3389030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm.h 2025-09-07T06:55:59.3394458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3398390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h 2025-09-07T06:55:59.3402274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_native.h 2025-09-07T06:55:59.3406561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_ops.h 2025-09-07T06:55:59.3412326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h 2025-09-07T06:55:59.3416252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.3420014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h 2025-09-07T06:55:59.3423951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h 2025-09-07T06:55:59.3427862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel.h 2025-09-07T06:55:59.3431746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3435733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_native.h 2025-09-07T06:55:59.3439430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_ops.h 2025-09-07T06:55:59.3444535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges.h 2025-09-07T06:55:59.3448389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3452049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h 2025-09-07T06:55:59.3455976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_native.h 2025-09-07T06:55:59.3459777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h 2025-09-07T06:55:59.3463594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts.h 2025-09-07T06:55:59.3468286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3472050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h 2025-09-07T06:55:59.3476134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h 2025-09-07T06:55:59.3480622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h 2025-09-07T06:55:59.3484395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h 2025-09-07T06:55:59.3488341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3492112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h 2025-09-07T06:55:59.3495920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h 2025-09-07T06:55:59.3501264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h 2025-09-07T06:55:59.3506727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl.h 2025-09-07T06:55:59.3512001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3517228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h 2025-09-07T06:55:59.3522337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h 2025-09-07T06:55:59.3527419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h 2025-09-07T06:55:59.3531355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_native.h 2025-09-07T06:55:59.3536701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_ops.h 2025-09-07T06:55:59.3541863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices.h 2025-09-07T06:55:59.3546711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy.h 2025-09-07T06:55:59.3551956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.3557135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3560901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_native.h 2025-09-07T06:55:59.3566133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_ops.h 2025-09-07T06:55:59.3571357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_native.h 2025-09-07T06:55:59.3576336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_ops.h 2025-09-07T06:55:59.3581360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm.h 2025-09-07T06:55:59.3585824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cpu_dispatch.h 2025-09-07T06:55:59.3590092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cuda_dispatch.h 2025-09-07T06:55:59.3595139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_native.h 2025-09-07T06:55:59.3600264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_ops.h 2025-09-07T06:55:59.3605717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true.h 2025-09-07T06:55:59.3611139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3616137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_native.h 2025-09-07T06:55:59.3619980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_ops.h 2025-09-07T06:55:59.3625142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true.h 2025-09-07T06:55:59.3630271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3635649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_native.h 2025-09-07T06:55:59.3640801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_ops.h 2025-09-07T06:55:59.3645921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor.h 2025-09-07T06:55:59.3649934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.3654934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_native.h 2025-09-07T06:55:59.3659915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_ops.h 2025-09-07T06:55:59.3665139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h 2025-09-07T06:55:59.3670194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h 2025-09-07T06:55:59.3675836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h 2025-09-07T06:55:59.3679746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h 2025-09-07T06:55:59.3686988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h 2025-09-07T06:55:59.3691026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone.h 2025-09-07T06:55:59.3696169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3701148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_native.h 2025-09-07T06:55:59.3706372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_ops.h 2025-09-07T06:55:59.3711486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors.h 2025-09-07T06:55:59.3716401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.3720334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_native.h 2025-09-07T06:55:59.3724594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_ops.h 2025-09-07T06:55:59.3728446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det.h 2025-09-07T06:55:59.3733121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.3737181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h 2025-09-07T06:55:59.3741542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h 2025-09-07T06:55:59.3745591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta.h 2025-09-07T06:55:59.3749445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta_dispatch.h 2025-09-07T06:55:59.3753385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_native.h 2025-09-07T06:55:59.3757336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_ops.h 2025-09-07T06:55:59.3761243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh.h 2025-09-07T06:55:59.3765731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.3769895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h 2025-09-07T06:55:59.3773880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h 2025-09-07T06:55:59.3777555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta.h 2025-09-07T06:55:59.3781716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h 2025-09-07T06:55:59.3785740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_native.h 2025-09-07T06:55:59.3789883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_ops.h 2025-09-07T06:55:59.3794014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals.h 2025-09-07T06:55:59.3797726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h 2025-09-07T06:55:59.3801595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h 2025-09-07T06:55:59.3805382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_native.h 2025-09-07T06:55:59.3809239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_ops.h 2025-09-07T06:55:59.3813125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet.h 2025-09-07T06:55:59.3817263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.3821580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h 2025-09-07T06:55:59.3825828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h 2025-09-07T06:55:59.3829536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta.h 2025-09-07T06:55:59.3834208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h 2025-09-07T06:55:59.3838531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_native.h 2025-09-07T06:55:59.3842312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_ops.h 2025-09-07T06:55:59.3846178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex.h 2025-09-07T06:55:59.3850734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.3854790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h 2025-09-07T06:55:59.3858604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h 2025-09-07T06:55:59.3862366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta.h 2025-09-07T06:55:59.3866545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h 2025-09-07T06:55:59.3870304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_native.h 2025-09-07T06:55:59.3874294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_ops.h 2025-09-07T06:55:59.3878096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd.h 2025-09-07T06:55:59.3882106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.3885897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h 2025-09-07T06:55:59.3889644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h 2025-09-07T06:55:59.3893472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta.h 2025-09-07T06:55:59.3897400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h 2025-09-07T06:55:59.3901313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_native.h 2025-09-07T06:55:59.3905172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_ops.h 2025-09-07T06:55:59.3908912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense.h 2025-09-07T06:55:59.3912689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h 2025-09-07T06:55:59.3923571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h 2025-09-07T06:55:59.3924280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_native.h 2025-09-07T06:55:59.3925081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_ops.h 2025-09-07T06:55:59.3928289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp.h 2025-09-07T06:55:59.3932070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h 2025-09-07T06:55:59.3935720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h 2025-09-07T06:55:59.3939403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_native.h 2025-09-07T06:55:59.3943745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_ops.h 2025-09-07T06:55:59.3947609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax.h 2025-09-07T06:55:59.3951680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data.h 2025-09-07T06:55:59.3956469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.3960160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h 2025-09-07T06:55:59.3964063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h 2025-09-07T06:55:59.3967808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta.h 2025-09-07T06:55:59.3971592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h 2025-09-07T06:55:59.3975357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_native.h 2025-09-07T06:55:59.3979918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_ops.h 2025-09-07T06:55:59.3983951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.3987789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h 2025-09-07T06:55:59.3991546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h 2025-09-07T06:55:59.3995315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta.h 2025-09-07T06:55:59.3999151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta_dispatch.h 2025-09-07T06:55:59.4003081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_native.h 2025-09-07T06:55:59.4006942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_ops.h 2025-09-07T06:55:59.4010678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps.h 2025-09-07T06:55:59.4014887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4018616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_native.h 2025-09-07T06:55:59.4022263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_ops.h 2025-09-07T06:55:59.4026003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info.h 2025-09-07T06:55:59.4029917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.4033611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_native.h 2025-09-07T06:55:59.4037337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_ops.h 2025-09-07T06:55:59.4041081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token.h 2025-09-07T06:55:59.4045174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h 2025-09-07T06:55:59.4049022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_native.h 2025-09-07T06:55:59.4052942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_ops.h 2025-09-07T06:55:59.4056568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual.h 2025-09-07T06:55:59.4060589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4064829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy.h 2025-09-07T06:55:59.4068854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.4072797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4076504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_native.h 2025-09-07T06:55:59.4080402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_ops.h 2025-09-07T06:55:59.4084405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_native.h 2025-09-07T06:55:59.4088072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_ops.h 2025-09-07T06:55:59.4092282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h 2025-09-07T06:55:59.4096274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4100045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h 2025-09-07T06:55:59.4103888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h 2025-09-07T06:55:59.4108059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h 2025-09-07T06:55:59.4111872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h 2025-09-07T06:55:59.4115711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h 2025-09-07T06:55:59.4119783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4123571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h 2025-09-07T06:55:59.4127653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h 2025-09-07T06:55:59.4131486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h 2025-09-07T06:55:59.4135802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h 2025-09-07T06:55:59.4139479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale.h 2025-09-07T06:55:59.4143362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4147341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h 2025-09-07T06:55:59.4151128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_native.h 2025-09-07T06:55:59.4155434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_ops.h 2025-09-07T06:55:59.4159253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax.h 2025-09-07T06:55:59.4163064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward.h 2025-09-07T06:55:59.4167143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4171233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h 2025-09-07T06:55:59.4174966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h 2025-09-07T06:55:59.4179387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_native.h 2025-09-07T06:55:59.4183704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_ops.h 2025-09-07T06:55:59.4187941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4191772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h 2025-09-07T06:55:59.4196004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h 2025-09-07T06:55:59.4200632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_native.h 2025-09-07T06:55:59.4206755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_ops.h 2025-09-07T06:55:59.4212038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear.h 2025-09-07T06:55:59.4215977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h 2025-09-07T06:55:59.4223195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_native.h 2025-09-07T06:55:59.4227176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h 2025-09-07T06:55:59.4232318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape.h 2025-09-07T06:55:59.4237673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4242678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_native.h 2025-09-07T06:55:59.4248440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_ops.h 2025-09-07T06:55:59.4253686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose.h 2025-09-07T06:55:59.4258998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4262856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h 2025-09-07T06:55:59.4268965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_native.h 2025-09-07T06:55:59.4274187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_ops.h 2025-09-07T06:55:59.4279613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution.h 2025-09-07T06:55:59.4284613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4289418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_native.h 2025-09-07T06:55:59.4294539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_ops.h 2025-09-07T06:55:59.4298800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose.h 2025-09-07T06:55:59.4304237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4309481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_native.h 2025-09-07T06:55:59.4314589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_ops.h 2025-09-07T06:55:59.4319718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit.h 2025-09-07T06:55:59.4324833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4330035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h 2025-09-07T06:55:59.4333915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h 2025-09-07T06:55:59.4340074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_native.h 2025-09-07T06:55:59.4344436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h 2025-09-07T06:55:59.4365930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4371395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h 2025-09-07T06:55:59.4376985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h 2025-09-07T06:55:59.4382507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_ops.h 2025-09-07T06:55:59.4388636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention.h 2025-09-07T06:55:59.4393169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4397079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h 2025-09-07T06:55:59.4403225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h 2025-09-07T06:55:59.4407057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_native.h 2025-09-07T06:55:59.4410950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_ops.h 2025-09-07T06:55:59.4416271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view.h 2025-09-07T06:55:59.4420196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4423944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy.h 2025-09-07T06:55:59.4427949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.4431973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4435848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_native.h 2025-09-07T06:55:59.4439533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_ops.h 2025-09-07T06:55:59.4443263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_native.h 2025-09-07T06:55:59.4464352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_ops.h 2025-09-07T06:55:59.4468208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h 2025-09-07T06:55:59.4472341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h 2025-09-07T06:55:59.4476739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h 2025-09-07T06:55:59.4480569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h 2025-09-07T06:55:59.4484337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h 2025-09-07T06:55:59.4488028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded.h 2025-09-07T06:55:59.4492208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h 2025-09-07T06:55:59.4496263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4500496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h 2025-09-07T06:55:59.4505955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h 2025-09-07T06:55:59.4511633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4515781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h 2025-09-07T06:55:59.4519734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h 2025-09-07T06:55:59.4523713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_native.h 2025-09-07T06:55:59.4527903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_ops.h 2025-09-07T06:55:59.4532044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor.h 2025-09-07T06:55:59.4535951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_native.h 2025-09-07T06:55:59.4540456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h 2025-09-07T06:55:59.4544314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy.h 2025-09-07T06:55:59.4548151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h 2025-09-07T06:55:59.4552367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h 2025-09-07T06:55:59.4556278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths.h 2025-09-07T06:55:59.4561205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_native.h 2025-09-07T06:55:59.4565302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_ops.h 2025-09-07T06:55:59.4569579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen.h 2025-09-07T06:55:59.4573807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_native.h 2025-09-07T06:55:59.4577779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h 2025-09-07T06:55:59.4581696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen.h 2025-09-07T06:55:59.4586044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_native.h 2025-09-07T06:55:59.4590225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h 2025-09-07T06:55:59.4594186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets.h 2025-09-07T06:55:59.4598394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_native.h 2025-09-07T06:55:59.4602221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_ops.h 2025-09-07T06:55:59.4606002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx.h 2025-09-07T06:55:59.4610443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_native.h 2025-09-07T06:55:59.4614665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h 2025-09-07T06:55:59.4618586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values.h 2025-09-07T06:55:59.4622371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy.h 2025-09-07T06:55:59.4627152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.4631139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4635154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_native.h 2025-09-07T06:55:59.4638955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_ops.h 2025-09-07T06:55:59.4643038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_native.h 2025-09-07T06:55:59.4646935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_ops.h 2025-09-07T06:55:59.4650836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward.h 2025-09-07T06:55:59.4654680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_native.h 2025-09-07T06:55:59.4660262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_ops.h 2025-09-07T06:55:59.4665589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward.h 2025-09-07T06:55:59.4670759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_native.h 2025-09-07T06:55:59.4674693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_ops.h 2025-09-07T06:55:59.4680067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask.h 2025-09-07T06:55:59.4685664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4690781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h 2025-09-07T06:55:59.4695848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h 2025-09-07T06:55:59.4700989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h 2025-09-07T06:55:59.4706888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h 2025-09-07T06:55:59.4712943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h 2025-09-07T06:55:59.4718204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h 2025-09-07T06:55:59.4723882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h 2025-09-07T06:55:59.4727832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_native.h 2025-09-07T06:55:59.4732986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h 2025-09-07T06:55:59.4738372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h 2025-09-07T06:55:59.4743781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4749257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h 2025-09-07T06:55:59.4754499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h 2025-09-07T06:55:59.4759548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size.h 2025-09-07T06:55:59.4763773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4769029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_native.h 2025-09-07T06:55:59.4774201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_ops.h 2025-09-07T06:55:59.4779528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h 2025-09-07T06:55:59.4784846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h 2025-09-07T06:55:59.4790240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h 2025-09-07T06:55:59.4795284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets.h 2025-09-07T06:55:59.4801008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4804838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h 2025-09-07T06:55:59.4810036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h 2025-09-07T06:55:59.4815336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides.h 2025-09-07T06:55:59.4820669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4826104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_native.h 2025-09-07T06:55:59.4831268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_ops.h 2025-09-07T06:55:59.4835115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer.h 2025-09-07T06:55:59.4839353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy.h 2025-09-07T06:55:59.4844850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.4848924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4852743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h 2025-09-07T06:55:59.4858356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h 2025-09-07T06:55:59.4862416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h 2025-09-07T06:55:59.4866325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h 2025-09-07T06:55:59.4871180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_native.h 2025-09-07T06:55:59.4875555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_ops.h 2025-09-07T06:55:59.4879414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged.h 2025-09-07T06:55:59.4883383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy.h 2025-09-07T06:55:59.4889474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.4893516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4897643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h 2025-09-07T06:55:59.4901443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h 2025-09-07T06:55:59.4905250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_native.h 2025-09-07T06:55:59.4909243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_ops.h 2025-09-07T06:55:59.4913116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h 2025-09-07T06:55:59.4917022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.4921254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h 2025-09-07T06:55:59.4925173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h 2025-09-07T06:55:59.4929048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available.h 2025-09-07T06:55:59.4933113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.4936891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_native.h 2025-09-07T06:55:59.4940614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_ops.h 2025-09-07T06:55:59.4956290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution.h 2025-09-07T06:55:59.4998879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5003995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h 2025-09-07T06:55:59.5008088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h 2025-09-07T06:55:59.5013087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz.h 2025-09-07T06:55:59.5017959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_native.h 2025-09-07T06:55:59.5023486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_ops.h 2025-09-07T06:55:59.5028334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence.h 2025-09-07T06:55:59.5032188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward.h 2025-09-07T06:55:59.5036134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5041178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h 2025-09-07T06:55:59.5045033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h 2025-09-07T06:55:59.5049163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5052905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_native.h 2025-09-07T06:55:59.5058077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_ops.h 2025-09-07T06:55:59.5062023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h 2025-09-07T06:55:59.5066272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h 2025-09-07T06:55:59.5070058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h 2025-09-07T06:55:59.5074021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h 2025-09-07T06:55:59.5078675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h 2025-09-07T06:55:59.5082513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular.h 2025-09-07T06:55:59.5087168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5090995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_native.h 2025-09-07T06:55:59.5107889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_ops.h 2025-09-07T06:55:59.5111876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum.h 2025-09-07T06:55:59.5115679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5119307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_native.h 2025-09-07T06:55:59.5123045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_ops.h 2025-09-07T06:55:59.5126904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence.h 2025-09-07T06:55:59.5130756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5134668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_native.h 2025-09-07T06:55:59.5138577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_ops.h 2025-09-07T06:55:59.5142347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward.h 2025-09-07T06:55:59.5146350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5149993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h 2025-09-07T06:55:59.5153719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h 2025-09-07T06:55:59.5157527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_native.h 2025-09-07T06:55:59.5161491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_ops.h 2025-09-07T06:55:59.5165412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward.h 2025-09-07T06:55:59.5169268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5173081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h 2025-09-07T06:55:59.5177077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h 2025-09-07T06:55:59.5181123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_native.h 2025-09-07T06:55:59.5184804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_ops.h 2025-09-07T06:55:59.5188681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory.h 2025-09-07T06:55:59.5193224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5196837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_native.h 2025-09-07T06:55:59.5201071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_ops.h 2025-09-07T06:55:59.5206174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel.h 2025-09-07T06:55:59.5209868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward.h 2025-09-07T06:55:59.5213760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h 2025-09-07T06:55:59.5218257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h 2025-09-07T06:55:59.5222014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_native.h 2025-09-07T06:55:59.5225899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_ops.h 2025-09-07T06:55:59.5229685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h 2025-09-07T06:55:59.5233452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h 2025-09-07T06:55:59.5237247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_native.h 2025-09-07T06:55:59.5241372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_ops.h 2025-09-07T06:55:59.5245096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print.h 2025-09-07T06:55:59.5248758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5252554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_native.h 2025-09-07T06:55:59.5256274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_ops.h 2025-09-07T06:55:59.5260006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data.h 2025-09-07T06:55:59.5263882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5267773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_native.h 2025-09-07T06:55:59.5271444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_ops.h 2025-09-07T06:55:59.5275456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim.h 2025-09-07T06:55:59.5279541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5283129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_native.h 2025-09-07T06:55:59.5286892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_ops.h 2025-09-07T06:55:59.5290763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias.h 2025-09-07T06:55:59.5294463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy.h 2025-09-07T06:55:59.5298443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.5303099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5307043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_native.h 2025-09-07T06:55:59.5310857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_ops.h 2025-09-07T06:55:59.5314812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h 2025-09-07T06:55:59.5318884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h 2025-09-07T06:55:59.5322900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h 2025-09-07T06:55:59.5326695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_native.h 2025-09-07T06:55:59.5330461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_ops.h 2025-09-07T06:55:59.5334325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy.h 2025-09-07T06:55:59.5338402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5342267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_native.h 2025-09-07T06:55:59.5346118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_ops.h 2025-09-07T06:55:59.5350903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor.h 2025-09-07T06:55:59.5355404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5359349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_native.h 2025-09-07T06:55:59.5363628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_ops.h 2025-09-07T06:55:59.5368056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output.h 2025-09-07T06:55:59.5372238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5376029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_meta_dispatch.h 2025-09-07T06:55:59.5380162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_native.h 2025-09-07T06:55:59.5384142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_ops.h 2025-09-07T06:55:59.5388255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune.h 2025-09-07T06:55:59.5392198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5395861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_native.h 2025-09-07T06:55:59.5399986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_ops.h 2025-09-07T06:55:59.5403949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax.h 2025-09-07T06:55:59.5408581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5412198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_native.h 2025-09-07T06:55:59.5416171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_ops.h 2025-09-07T06:55:59.5420104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet.h 2025-09-07T06:55:59.5423936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5427872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h 2025-09-07T06:55:59.5432088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h 2025-09-07T06:55:59.5435879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_native.h 2025-09-07T06:55:59.5439662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_ops.h 2025-09-07T06:55:59.5443502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16.h 2025-09-07T06:55:59.5447531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5451180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h 2025-09-07T06:55:59.5455029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h 2025-09-07T06:55:59.5458940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math.h 2025-09-07T06:55:59.5462981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5467836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h 2025-09-07T06:55:59.5471775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h 2025-09-07T06:55:59.5475692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h 2025-09-07T06:55:59.5479791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h 2025-09-07T06:55:59.5483632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h 2025-09-07T06:55:59.5487448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h 2025-09-07T06:55:59.5491531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h 2025-09-07T06:55:59.5495513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h 2025-09-07T06:55:59.5500465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h 2025-09-07T06:55:59.5504766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h 2025-09-07T06:55:59.5508969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h 2025-09-07T06:55:59.5512836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h 2025-09-07T06:55:59.5516650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h 2025-09-07T06:55:59.5521032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h 2025-09-07T06:55:59.5524988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h 2025-09-07T06:55:59.5528756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h 2025-09-07T06:55:59.5532734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h 2025-09-07T06:55:59.5537012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h 2025-09-07T06:55:59.5541408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h 2025-09-07T06:55:59.5545529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h 2025-09-07T06:55:59.5549608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h 2025-09-07T06:55:59.5553443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h 2025-09-07T06:55:59.5557250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h 2025-09-07T06:55:59.5561268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h 2025-09-07T06:55:59.5565152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h 2025-09-07T06:55:59.5569096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h 2025-09-07T06:55:59.5573022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h 2025-09-07T06:55:59.5576932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h 2025-09-07T06:55:59.5581644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h 2025-09-07T06:55:59.5586009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h 2025-09-07T06:55:59.5590058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h 2025-09-07T06:55:59.5593990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h 2025-09-07T06:55:59.5598037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h 2025-09-07T06:55:59.5601908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h 2025-09-07T06:55:59.5605790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h 2025-09-07T06:55:59.5623562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h 2025-09-07T06:55:59.5627821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h 2025-09-07T06:55:59.5632081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h 2025-09-07T06:55:59.5636163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h 2025-09-07T06:55:59.5640462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5644507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h 2025-09-07T06:55:59.5648861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h 2025-09-07T06:55:59.5653225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5657045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h 2025-09-07T06:55:59.5660964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h 2025-09-07T06:55:59.5665463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm.h 2025-09-07T06:55:59.5669703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h 2025-09-07T06:55:59.5674424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_native.h 2025-09-07T06:55:59.5678359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_ops.h 2025-09-07T06:55:59.5682567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm.h 2025-09-07T06:55:59.5686698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h 2025-09-07T06:55:59.5690665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h 2025-09-07T06:55:59.5694555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_native.h 2025-09-07T06:55:59.5698875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_ops.h 2025-09-07T06:55:59.5703168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward.h 2025-09-07T06:55:59.5707255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5711199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h 2025-09-07T06:55:59.5715649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h 2025-09-07T06:55:59.5719959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_native.h 2025-09-07T06:55:59.5724029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_ops.h 2025-09-07T06:55:59.5727942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor.h 2025-09-07T06:55:59.5732025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5735690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_native.h 2025-09-07T06:55:59.5739415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_ops.h 2025-09-07T06:55:59.5743311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward.h 2025-09-07T06:55:59.5747343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5752431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h 2025-09-07T06:55:59.5756690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h 2025-09-07T06:55:59.5760934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_native.h 2025-09-07T06:55:59.5764859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_ops.h 2025-09-07T06:55:59.5768941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward.h 2025-09-07T06:55:59.5773489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h 2025-09-07T06:55:59.5778208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h 2025-09-07T06:55:59.5782217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_native.h 2025-09-07T06:55:59.5786448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_ops.h 2025-09-07T06:55:59.5791116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw.h 2025-09-07T06:55:59.5795143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5798912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_native.h 2025-09-07T06:55:59.5803021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_ops.h 2025-09-07T06:55:59.5806998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff.h 2025-09-07T06:55:59.5810950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5814809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_native.h 2025-09-07T06:55:59.5818652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_ops.h 2025-09-07T06:55:59.5822539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state.h 2025-09-07T06:55:59.5826850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5831343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h 2025-09-07T06:55:59.5835421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h 2025-09-07T06:55:59.5839295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble.h 2025-09-07T06:55:59.5843426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5847415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_native.h 2025-09-07T06:55:59.5851426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_ops.h 2025-09-07T06:55:59.5855476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax.h 2025-09-07T06:55:59.5859134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data.h 2025-09-07T06:55:59.5863514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.5867384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h 2025-09-07T06:55:59.5871249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h 2025-09-07T06:55:59.5875775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta.h 2025-09-07T06:55:59.5879924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h 2025-09-07T06:55:59.5883890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_native.h 2025-09-07T06:55:59.5887764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_ops.h 2025-09-07T06:55:59.5892068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.5896109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cpu_dispatch.h 2025-09-07T06:55:59.5900266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cuda_dispatch.h 2025-09-07T06:55:59.5904385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta.h 2025-09-07T06:55:59.5908296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta_dispatch.h 2025-09-07T06:55:59.5912597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_native.h 2025-09-07T06:55:59.5916122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_ops.h 2025-09-07T06:55:59.5919723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm.h 2025-09-07T06:55:59.5923666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5927436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_native.h 2025-09-07T06:55:59.5931752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_ops.h 2025-09-07T06:55:59.5935601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to.h 2025-09-07T06:55:59.5939625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy.h 2025-09-07T06:55:59.5943719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.5947632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.5951535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h 2025-09-07T06:55:59.5955560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h 2025-09-07T06:55:59.5959461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_native.h 2025-09-07T06:55:59.5963317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_ops.h 2025-09-07T06:55:59.5967226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h 2025-09-07T06:55:59.5971274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5975562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h 2025-09-07T06:55:59.5979680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h 2025-09-07T06:55:59.5988299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h 2025-09-07T06:55:59.5991126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.5995429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h 2025-09-07T06:55:59.5999638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h 2025-09-07T06:55:59.6003602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h 2025-09-07T06:55:59.6008173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6012950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h 2025-09-07T06:55:59.6017061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h 2025-09-07T06:55:59.6020965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h 2025-09-07T06:55:59.6026192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6030238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h 2025-09-07T06:55:59.6034253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h 2025-09-07T06:55:59.6038451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h 2025-09-07T06:55:59.6042507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6046288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h 2025-09-07T06:55:59.6050185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h 2025-09-07T06:55:59.6054315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h 2025-09-07T06:55:59.6058382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h 2025-09-07T06:55:59.6062651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6066688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h 2025-09-07T06:55:59.6071128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h 2025-09-07T06:55:59.6075546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h 2025-09-07T06:55:59.6079601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6083456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h 2025-09-07T06:55:59.6087403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h 2025-09-07T06:55:59.6091328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h 2025-09-07T06:55:59.6095547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h 2025-09-07T06:55:59.6099716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6104344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h 2025-09-07T06:55:59.6108567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h 2025-09-07T06:55:59.6112437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod.h 2025-09-07T06:55:59.6116396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6120478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_native.h 2025-09-07T06:55:59.6124736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_ops.h 2025-09-07T06:55:59.6128753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum.h 2025-09-07T06:55:59.6132797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6136873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_native.h 2025-09-07T06:55:59.6140797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_ops.h 2025-09-07T06:55:59.6144732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h 2025-09-07T06:55:59.6149121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6153434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h 2025-09-07T06:55:59.6157795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h 2025-09-07T06:55:59.6161764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax.h 2025-09-07T06:55:59.6166059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h 2025-09-07T06:55:59.6171175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6175229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h 2025-09-07T06:55:59.6179015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h 2025-09-07T06:55:59.6183065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6187137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6191294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_native.h 2025-09-07T06:55:59.6195485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_ops.h 2025-09-07T06:55:59.6199534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection.h 2025-09-07T06:55:59.6203940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6207908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_native.h 2025-09-07T06:55:59.6211818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_ops.h 2025-09-07T06:55:59.6216588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm.h 2025-09-07T06:55:59.6220979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6224911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_native.h 2025-09-07T06:55:59.6228874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_ops.h 2025-09-07T06:55:59.6232818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl.h 2025-09-07T06:55:59.6237427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h 2025-09-07T06:55:59.6241459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h 2025-09-07T06:55:59.6245872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h 2025-09-07T06:55:59.6249867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h 2025-09-07T06:55:59.6254050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h 2025-09-07T06:55:59.6257830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm.h 2025-09-07T06:55:59.6261799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h 2025-09-07T06:55:59.6265851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h 2025-09-07T06:55:59.6270459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h 2025-09-07T06:55:59.6274618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply.h 2025-09-07T06:55:59.6278743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h 2025-09-07T06:55:59.6282578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h 2025-09-07T06:55:59.6286742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h 2025-09-07T06:55:59.6290945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h 2025-09-07T06:55:59.6295047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h 2025-09-07T06:55:59.6300159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h 2025-09-07T06:55:59.6304357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h 2025-09-07T06:55:59.6308333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear.h 2025-09-07T06:55:59.6312579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h 2025-09-07T06:55:59.6316490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h 2025-09-07T06:55:59.6320719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h 2025-09-07T06:55:59.6324764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm.h 2025-09-07T06:55:59.6328943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h 2025-09-07T06:55:59.6333137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h 2025-09-07T06:55:59.6337037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h 2025-09-07T06:55:59.6341060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile.h 2025-09-07T06:55:59.6345378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h 2025-09-07T06:55:59.6349387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h 2025-09-07T06:55:59.6353308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h 2025-09-07T06:55:59.6357874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax.h 2025-09-07T06:55:59.6361902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data.h 2025-09-07T06:55:59.6366692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6371004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h 2025-09-07T06:55:59.6375175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h 2025-09-07T06:55:59.6379445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6383395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6387373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_native.h 2025-09-07T06:55:59.6391534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_ops.h 2025-09-07T06:55:59.6395375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul.h 2025-09-07T06:55:59.6399450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6403286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_native.h 2025-09-07T06:55:59.6407063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h 2025-09-07T06:55:59.6411264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum.h 2025-09-07T06:55:59.6415153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward.h 2025-09-07T06:55:59.6419413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6423507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_native.h 2025-09-07T06:55:59.6427308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_ops.h 2025-09-07T06:55:59.6431483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6435365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6439301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_native.h 2025-09-07T06:55:59.6443345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_ops.h 2025-09-07T06:55:59.6447122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags.h 2025-09-07T06:55:59.6450785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6454711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_cpu_dispatch.h 2025-09-07T06:55:59.6458566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_native.h 2025-09-07T06:55:59.6462300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_ops.h 2025-09-07T06:55:59.6467314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve.h 2025-09-07T06:55:59.6470646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_native.h 2025-09-07T06:55:59.6474580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_ops.h 2025-09-07T06:55:59.6478321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack.h 2025-09-07T06:55:59.6482320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6486019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_cpu_dispatch.h 2025-09-07T06:55:59.6489689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_native.h 2025-09-07T06:55:59.6493536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_ops.h 2025-09-07T06:55:59.6497693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma.h 2025-09-07T06:55:59.6501482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6505396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h 2025-09-07T06:55:59.6509379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h 2025-09-07T06:55:59.6513257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad.h 2025-09-07T06:55:59.6517528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6521282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h 2025-09-07T06:55:59.6525198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h 2025-09-07T06:55:59.6529293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_native.h 2025-09-07T06:55:59.6533144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_ops.h 2025-09-07T06:55:59.6536960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_native.h 2025-09-07T06:55:59.6540752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_ops.h 2025-09-07T06:55:59.6544745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults.h 2025-09-07T06:55:59.6548686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6552671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_native.h 2025-09-07T06:55:59.6556489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h 2025-09-07T06:55:59.6560482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h 2025-09-07T06:55:59.6566335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6570153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6574500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h 2025-09-07T06:55:59.6578498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h 2025-09-07T06:55:59.6582475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h 2025-09-07T06:55:59.6586670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6590684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h 2025-09-07T06:55:59.6595001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.6598892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6602720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h 2025-09-07T06:55:59.6606615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h 2025-09-07T06:55:59.6610872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h 2025-09-07T06:55:59.6614878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h 2025-09-07T06:55:59.6618646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor.h 2025-09-07T06:55:59.6622733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6626768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_native.h 2025-09-07T06:55:59.6630647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_ops.h 2025-09-07T06:55:59.6635078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback.h 2025-09-07T06:55:59.6639172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6642939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h 2025-09-07T06:55:59.6647088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_native.h 2025-09-07T06:55:59.6651113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_ops.h 2025-09-07T06:55:59.6655607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist.h 2025-09-07T06:55:59.6659701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6663513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h 2025-09-07T06:55:59.6667577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_native.h 2025-09-07T06:55:59.6671654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h 2025-09-07T06:55:59.6692694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist.h 2025-09-07T06:55:59.6697093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6701408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h 2025-09-07T06:55:59.6705237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_native.h 2025-09-07T06:55:59.6709198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_ops.h 2025-09-07T06:55:59.6713228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist.h 2025-09-07T06:55:59.6717333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6721393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h 2025-09-07T06:55:59.6725325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_native.h 2025-09-07T06:55:59.6729189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_ops.h 2025-09-07T06:55:59.6733221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize.h 2025-09-07T06:55:59.6737511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6741428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_native.h 2025-09-07T06:55:59.6745674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_ops.h 2025-09-07T06:55:59.6749588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul.h 2025-09-07T06:55:59.6753769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6757783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_native.h 2025-09-07T06:55:59.6762836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_ops.h 2025-09-07T06:55:59.6767206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default.h 2025-09-07T06:55:59.6771676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6775618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_native.h 2025-09-07T06:55:59.6779665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_ops.h 2025-09-07T06:55:59.6783573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd.h 2025-09-07T06:55:59.6787868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6792119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_native.h 2025-09-07T06:55:59.6796254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_ops.h 2025-09-07T06:55:59.6800358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h 2025-09-07T06:55:59.6805071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6808878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h 2025-09-07T06:55:59.6812817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h 2025-09-07T06:55:59.6817250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h 2025-09-07T06:55:59.6821973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6825418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h 2025-09-07T06:55:59.6829537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h 2025-09-07T06:55:59.6834266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell.h 2025-09-07T06:55:59.6837475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h 2025-09-07T06:55:59.6842003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6846072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h 2025-09-07T06:55:59.6849904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h 2025-09-07T06:55:59.6854879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h 2025-09-07T06:55:59.6859937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6864582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h 2025-09-07T06:55:59.6868410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h 2025-09-07T06:55:59.6872702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h 2025-09-07T06:55:59.6876566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell.h 2025-09-07T06:55:59.6880491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h 2025-09-07T06:55:59.6884806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6888981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h 2025-09-07T06:55:59.6893310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6897156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h 2025-09-07T06:55:59.6901149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h 2025-09-07T06:55:59.6905531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h 2025-09-07T06:55:59.6909452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h 2025-09-07T06:55:59.6913482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h 2025-09-07T06:55:59.6917485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6921396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h 2025-09-07T06:55:59.6925299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h 2025-09-07T06:55:59.6929950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h 2025-09-07T06:55:59.6934179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy.h 2025-09-07T06:55:59.6937826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6941596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_native.h 2025-09-07T06:55:59.6945324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_ops.h 2025-09-07T06:55:59.6949049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu.h 2025-09-07T06:55:59.6952652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.6957030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_native.h 2025-09-07T06:55:59.6960675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_ops.h 2025-09-07T06:55:59.6964437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense.h 2025-09-07T06:55:59.6968488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6972203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_native.h 2025-09-07T06:55:59.6976043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_ops.h 2025-09-07T06:55:59.6979704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse.h 2025-09-07T06:55:59.6984080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc.h 2025-09-07T06:55:59.6988451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.6992254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h 2025-09-07T06:55:59.6996099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h 2025-09-07T06:55:59.6999913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_native.h 2025-09-07T06:55:59.7003732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_ops.h 2025-09-07T06:55:59.7007658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr.h 2025-09-07T06:55:59.7011672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7015686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h 2025-09-07T06:55:59.7019658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h 2025-09-07T06:55:59.7025371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_native.h 2025-09-07T06:55:59.7030494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_ops.h 2025-09-07T06:55:59.7035905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7041028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h 2025-09-07T06:55:59.7046337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc.h 2025-09-07T06:55:59.7051825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7057050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h 2025-09-07T06:55:59.7061039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h 2025-09-07T06:55:59.7066282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_native.h 2025-09-07T06:55:59.7071569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_ops.h 2025-09-07T06:55:59.7077272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr.h 2025-09-07T06:55:59.7082808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7088439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h 2025-09-07T06:55:59.7093835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h 2025-09-07T06:55:59.7099150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_native.h 2025-09-07T06:55:59.7103081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_ops.h 2025-09-07T06:55:59.7108308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h 2025-09-07T06:55:59.7113488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_native.h 2025-09-07T06:55:59.7118698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_ops.h 2025-09-07T06:55:59.7124484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured.h 2025-09-07T06:55:59.7129691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h 2025-09-07T06:55:59.7134912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_native.h 2025-09-07T06:55:59.7140100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h 2025-09-07T06:55:59.7144154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h 2025-09-07T06:55:59.7150430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7155748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h 2025-09-07T06:55:59.7161247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h 2025-09-07T06:55:59.7166119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h 2025-09-07T06:55:59.7171240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h 2025-09-07T06:55:59.7176294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv.h 2025-09-07T06:55:59.7181845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7186688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h 2025-09-07T06:55:59.7191163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h 2025-09-07T06:55:59.7196377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h 2025-09-07T06:55:59.7202250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h 2025-09-07T06:55:59.7207834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear.h 2025-09-07T06:55:59.7213646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7218730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7223771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_native.h 2025-09-07T06:55:59.7228904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_ops.h 2025-09-07T06:55:59.7232839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention.h 2025-09-07T06:55:59.7238061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7243411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h 2025-09-07T06:55:59.7248583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_native.h 2025-09-07T06:55:59.7253790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_ops.h 2025-09-07T06:55:59.7259462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention.h 2025-09-07T06:55:59.7264897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7270246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h 2025-09-07T06:55:59.7274377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h 2025-09-07T06:55:59.7279428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h 2025-09-07T06:55:59.7284712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique.h 2025-09-07T06:55:59.7289568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2.h 2025-09-07T06:55:59.7294579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7299741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cpu_dispatch.h 2025-09-07T06:55:59.7303618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cuda_dispatch.h 2025-09-07T06:55:59.7309853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_native.h 2025-09-07T06:55:59.7314065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_ops.h 2025-09-07T06:55:59.7318077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7321862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cpu_dispatch.h 2025-09-07T06:55:59.7326195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cuda_dispatch.h 2025-09-07T06:55:59.7330403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_native.h 2025-09-07T06:55:59.7334337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_ops.h 2025-09-07T06:55:59.7338247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual.h 2025-09-07T06:55:59.7342228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7345973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_native.h 2025-09-07T06:55:59.7366594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_ops.h 2025-09-07T06:55:59.7370447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index.h 2025-09-07T06:55:59.7374448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7378319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_native.h 2025-09-07T06:55:59.7382104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_ops.h 2025-09-07T06:55:59.7386083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put.h 2025-09-07T06:55:59.7390127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7393847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_native.h 2025-09-07T06:55:59.7397759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_ops.h 2025-09-07T06:55:59.7401566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index.h 2025-09-07T06:55:59.7406045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7409501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_native.h 2025-09-07T06:55:59.7414650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_ops.h 2025-09-07T06:55:59.7417244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h 2025-09-07T06:55:59.7421583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7425620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h 2025-09-07T06:55:59.7429677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h 2025-09-07T06:55:59.7433402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view.h 2025-09-07T06:55:59.7437430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7441629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_native.h 2025-09-07T06:55:59.7445932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_ops.h 2025-09-07T06:55:59.7449671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa.h 2025-09-07T06:55:59.7453602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h 2025-09-07T06:55:59.7457615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7461385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h 2025-09-07T06:55:59.7466278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h 2025-09-07T06:55:59.7470209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h 2025-09-07T06:55:59.7474311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h 2025-09-07T06:55:59.7478256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h 2025-09-07T06:55:59.7482092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h 2025-09-07T06:55:59.7486581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7490735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7494917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h 2025-09-07T06:55:59.7498833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h 2025-09-07T06:55:59.7502849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h 2025-09-07T06:55:59.7506810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h 2025-09-07T06:55:59.7510968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h 2025-09-07T06:55:59.7514814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h 2025-09-07T06:55:59.7518833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa.h 2025-09-07T06:55:59.7522969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h 2025-09-07T06:55:59.7526887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7531148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h 2025-09-07T06:55:59.7535187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h 2025-09-07T06:55:59.7539290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h 2025-09-07T06:55:59.7543356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h 2025-09-07T06:55:59.7547355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h 2025-09-07T06:55:59.7551449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h 2025-09-07T06:55:59.7555381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7559874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7563785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h 2025-09-07T06:55:59.7567658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h 2025-09-07T06:55:59.7571460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h 2025-09-07T06:55:59.7575428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h 2025-09-07T06:55:59.7579271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h 2025-09-07T06:55:59.7583407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h 2025-09-07T06:55:59.7587447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d.h 2025-09-07T06:55:59.7591433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h 2025-09-07T06:55:59.7595625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7599651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h 2025-09-07T06:55:59.7603920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h 2025-09-07T06:55:59.7607865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h 2025-09-07T06:55:59.7611873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h 2025-09-07T06:55:59.7615754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h 2025-09-07T06:55:59.7620181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h 2025-09-07T06:55:59.7624961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7628866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7632699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h 2025-09-07T06:55:59.7636558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h 2025-09-07T06:55:59.7640456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h 2025-09-07T06:55:59.7644618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h 2025-09-07T06:55:59.7648481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h 2025-09-07T06:55:59.7652458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h 2025-09-07T06:55:59.7656304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d.h 2025-09-07T06:55:59.7660247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h 2025-09-07T06:55:59.7664415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7668445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h 2025-09-07T06:55:59.7672522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h 2025-09-07T06:55:59.7676276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h 2025-09-07T06:55:59.7680833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h 2025-09-07T06:55:59.7684807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h 2025-09-07T06:55:59.7689045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h 2025-09-07T06:55:59.7693719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7697599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7701595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h 2025-09-07T06:55:59.7706096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h 2025-09-07T06:55:59.7710351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h 2025-09-07T06:55:59.7714335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h 2025-09-07T06:55:59.7718317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h 2025-09-07T06:55:59.7722490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h 2025-09-07T06:55:59.7726316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d.h 2025-09-07T06:55:59.7730262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h 2025-09-07T06:55:59.7735679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7739648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h 2025-09-07T06:55:59.7743751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h 2025-09-07T06:55:59.7748697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h 2025-09-07T06:55:59.7753185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h 2025-09-07T06:55:59.7757442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h 2025-09-07T06:55:59.7761428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h 2025-09-07T06:55:59.7766210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7770498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7774512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h 2025-09-07T06:55:59.7778691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h 2025-09-07T06:55:59.7782907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h 2025-09-07T06:55:59.7787135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h 2025-09-07T06:55:59.7791658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h 2025-09-07T06:55:59.7795922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h 2025-09-07T06:55:59.7800729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss.h 2025-09-07T06:55:59.7804817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h 2025-09-07T06:55:59.7808634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h 2025-09-07T06:55:59.7812522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h 2025-09-07T06:55:59.7831504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h 2025-09-07T06:55:59.7835718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7840184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h 2025-09-07T06:55:59.7844450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h 2025-09-07T06:55:59.7848404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices.h 2025-09-07T06:55:59.7852875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h 2025-09-07T06:55:59.7856730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h 2025-09-07T06:55:59.7860525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h 2025-09-07T06:55:59.7864900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h 2025-09-07T06:55:59.7869419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h 2025-09-07T06:55:59.7874082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7878375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h 2025-09-07T06:55:59.7883163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h 2025-09-07T06:55:59.7887602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h 2025-09-07T06:55:59.7892069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7896300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h 2025-09-07T06:55:59.7900418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h 2025-09-07T06:55:59.7904643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h 2025-09-07T06:55:59.7909269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7913829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h 2025-09-07T06:55:59.7917931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h 2025-09-07T06:55:59.7921831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h 2025-09-07T06:55:59.7925871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7930083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h 2025-09-07T06:55:59.7934014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h 2025-09-07T06:55:59.7938124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h 2025-09-07T06:55:59.7942010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7946205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h 2025-09-07T06:55:59.7950164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h 2025-09-07T06:55:59.7954230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h 2025-09-07T06:55:59.7958271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.7962148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h 2025-09-07T06:55:59.7966018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h 2025-09-07T06:55:59.7969886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values.h 2025-09-07T06:55:59.7973389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy.h 2025-09-07T06:55:59.7977804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-09-07T06:55:59.7981677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.7985514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_native.h 2025-09-07T06:55:59.7989426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_ops.h 2025-09-07T06:55:59.7993546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_native.h 2025-09-07T06:55:59.7997279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_ops.h 2025-09-07T06:55:59.8001852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version.h 2025-09-07T06:55:59.8005499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.8009147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_native.h 2025-09-07T06:55:59.8012922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_ops.h 2025-09-07T06:55:59.8016596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm.h 2025-09-07T06:55:59.8020343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h 2025-09-07T06:55:59.8025567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h 2025-09-07T06:55:59.8029558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h 2025-09-07T06:55:59.8033714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h 2025-09-07T06:55:59.8037682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h 2025-09-07T06:55:59.8041801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_native.h 2025-09-07T06:55:59.8045661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_ops.h 2025-09-07T06:55:59.8049553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h 2025-09-07T06:55:59.8053498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h 2025-09-07T06:55:59.8057573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h 2025-09-07T06:55:59.8061666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm.h 2025-09-07T06:55:59.8065681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h 2025-09-07T06:55:59.8069422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h 2025-09-07T06:55:59.8073221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_native.h 2025-09-07T06:55:59.8077095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_ops.h 2025-09-07T06:55:59.8081074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm.h 2025-09-07T06:55:59.8085077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.8088982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward.h 2025-09-07T06:55:59.8093066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.8097002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h 2025-09-07T06:55:59.8101374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h 2025-09-07T06:55:59.8105576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface.h 2025-09-07T06:55:59.8109650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward.h 2025-09-07T06:55:59.8113768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.8117894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h 2025-09-07T06:55:59.8121832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h 2025-09-07T06:55:59.8125961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_native.h 2025-09-07T06:55:59.8129692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h 2025-09-07T06:55:59.8134190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h 2025-09-07T06:55:59.8138028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h 2025-09-07T06:55:59.8142044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h 2025-09-07T06:55:59.8146084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_native.h 2025-09-07T06:55:59.8150913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_ops.h 2025-09-07T06:55:59.8154812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_native.h 2025-09-07T06:55:59.8158598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_ops.h 2025-09-07T06:55:59.8162467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack.h 2025-09-07T06:55:59.8166530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.8170247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_native.h 2025-09-07T06:55:59.8174203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h 2025-09-07T06:55:59.8178134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h 2025-09-07T06:55:59.8182182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h 2025-09-07T06:55:59.8186224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h 2025-09-07T06:55:59.8190359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h 2025-09-07T06:55:59.8442192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\QTensorImpl.h 2025-09-07T06:55:59.8445567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\Quantizer.h 2025-09-07T06:55:59.8453923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\CachingHostAllocator.h 2025-09-07T06:55:59.8457880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\PinnedMemoryAllocator.h 2025-09-07T06:55:59.8461312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUContext.h 2025-09-07T06:55:59.8464830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUDevice.h 2025-09-07T06:55:59.8472856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUEvent.h 2025-09-07T06:55:59.8476417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUGeneratorImpl.h 2025-09-07T06:55:59.8483269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\detail\XPUHooks.h 2025-09-07T06:55:59.8495800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\alignment.h 2025-09-07T06:55:59.8499354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Allocator.h 2025-09-07T06:55:59.8503300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AllocatorConfig.h 2025-09-07T06:55:59.8506608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AutogradState.h 2025-09-07T06:55:59.8513921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Backend.h 2025-09-07T06:55:59.8517558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CachingDeviceAllocator.h 2025-09-07T06:55:59.8521002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CompileTimeFunctionPointer.h 2025-09-07T06:55:59.8524467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ConstantSymNodeImpl.h 2025-09-07T06:55:59.8528718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Contiguity.h 2025-09-07T06:55:59.8531817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CopyBytes.h 2025-09-07T06:55:59.8535272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CPUAllocator.h 2025-09-07T06:55:59.8538731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultDtype.h 2025-09-07T06:55:59.8542224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultTensorOptions.h 2025-09-07T06:55:59.8545906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Device.h 2025-09-07T06:55:59.8549195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceArray.h 2025-09-07T06:55:59.8553689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceGuard.h 2025-09-07T06:55:59.8557187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceType.h 2025-09-07T06:55:59.8560573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKey.h 2025-09-07T06:55:59.8564269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKeySet.h 2025-09-07T06:55:59.8568037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DynamicCast.h 2025-09-07T06:55:59.8575143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Event.h 2025-09-07T06:55:59.8578486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GeneratorImpl.h 2025-09-07T06:55:59.8581874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GradMode.h 2025-09-07T06:55:59.8585636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\InferenceMode.h 2025-09-07T06:55:59.8589070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Layout.h 2025-09-07T06:55:59.8592410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\MemoryFormat.h 2025-09-07T06:55:59.8595842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\OptionalRef.h 2025-09-07T06:55:59.8599372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\PyHandleCache.h 2025-09-07T06:55:59.8602674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QEngine.h 2025-09-07T06:55:59.8606024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QScheme.h 2025-09-07T06:55:59.8609381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\RefcountedDeleter.h 2025-09-07T06:55:59.8613193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SafePyObject.h 2025-09-07T06:55:59.8620241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Scalar.h 2025-09-07T06:55:59.8623735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarType.h 2025-09-07T06:55:59.8627416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarTypeToTypeMeta.h 2025-09-07T06:55:59.8631220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Storage.h 2025-09-07T06:55:59.8634574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StorageImpl.h 2025-09-07T06:55:59.8637986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Stream.h 2025-09-07T06:55:59.8641238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StreamGuard.h 2025-09-07T06:55:59.8644633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymbolicShapeMeta.h 2025-09-07T06:55:59.8647934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymBool.h 2025-09-07T06:55:59.8651523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymFloat.h 2025-09-07T06:55:59.8654797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymInt.h 2025-09-07T06:55:59.8658129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymIntArrayRef.h 2025-09-07T06:55:59.8665460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymNodeImpl.h 2025-09-07T06:55:59.8668816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorImpl.h 2025-09-07T06:55:59.8673126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorOptions.h 2025-09-07T06:55:59.8676979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\thread_pool.h 2025-09-07T06:55:59.8680222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\UndefinedTensorImpl.h 2025-09-07T06:55:59.8684058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\WrapDimMinimal.h 2025-09-07T06:55:59.8691979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\alloc_cpu.h 2025-09-07T06:55:59.8695351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COW.h 2025-09-07T06:55:59.8698673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COWDeleter.h 2025-09-07T06:55:59.8702160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\DeviceGuardImplInterface.h 2025-09-07T06:55:59.8709750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\FakeGuardImpl.h 2025-09-07T06:55:59.8713203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\GPUTrace.h 2025-09-07T06:55:59.8716570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\HermeticPyObjectTLS.h 2025-09-07T06:55:59.8719976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineDeviceGuard.h 2025-09-07T06:55:59.8723598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineEvent.h 2025-09-07T06:55:59.8727231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineStreamGuard.h 2025-09-07T06:55:59.8730419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\LocalDispatchKeySet.h 2025-09-07T06:55:59.8733755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreter.h 2025-09-07T06:55:59.8737271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreterHooks.h 2025-09-07T06:55:59.8740808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyObjectSlot.h 2025-09-07T06:55:59.8744229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PythonDispatcherTLS.h 2025-09-07T06:55:59.8747876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\SizesAndStrides.h 2025-09-07T06:55:59.8751401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\TorchDispatchModeTLS.h 2025-09-07T06:55:59.8754838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\VirtualGuardImpl.h 2025-09-07T06:55:59.8763749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAlgorithm.h 2025-09-07T06:55:59.8767458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAllocatorConfig.h 2025-09-07T06:55:59.8770919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDACachingAllocator.h 2025-09-07T06:55:59.8774320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertion.h 2025-09-07T06:55:59.8781833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertionHost.h 2025-09-07T06:55:59.8785506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAException.h 2025-09-07T06:55:59.8789361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAFunctions.h 2025-09-07T06:55:59.8792830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGraphsC10Utils.h 2025-09-07T06:55:59.8796605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGuard.h 2025-09-07T06:55:59.8800036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMacros.h 2025-09-07T06:55:59.8803511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMathCompat.h 2025-09-07T06:55:59.8807018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMiscFunctions.h 2025-09-07T06:55:59.8810358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAStream.h 2025-09-07T06:55:59.8814889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\driver_api.h 2025-09-07T06:55:59.8822343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDAGuardImpl.h 2025-09-07T06:55:59.8825835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDATest.h 2025-09-07T06:55:59.8832923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\cmake_macros.h 2025-09-07T06:55:59.8836537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Export.h 2025-09-07T06:55:59.8840251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Macros.h 2025-09-07T06:55:59.8847142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\atomic.h 2025-09-07T06:55:59.8850444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\common.h 2025-09-07T06:55:59.8853953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\expm1f.h 2025-09-07T06:55:59.8857242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\igamma.h 2025-09-07T06:55:59.8860577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\indexing.h 2025-09-07T06:55:59.8863852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\random.h 2025-09-07T06:55:59.8867344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\reduction_utils.h 2025-09-07T06:55:59.8877044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\special_math.h 2025-09-07T06:55:59.8880477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\utils.h 2025-09-07T06:55:59.8887587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUCachingAllocator.h 2025-09-07T06:55:59.8892265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUProfilingAllocator.h 2025-09-07T06:55:59.8903637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_math_test_common.h 2025-09-07T06:55:59.8907181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_test_common.h 2025-09-07T06:55:59.8910567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\Macros.h 2025-09-07T06:55:59.8919754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AbortHandler.h 2025-09-07T06:55:59.8923442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\accumulate.h 2025-09-07T06:55:59.8927212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AlignOf.h 2025-09-07T06:55:59.8931276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ApproximateClock.h 2025-09-07T06:55:59.8938987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Array.h 2025-09-07T06:55:59.8942414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ArrayRef.h 2025-09-07T06:55:59.8946031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Backtrace.h 2025-09-07T06:55:59.8949507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-inl.h 2025-09-07T06:55:59.8952950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-math.h 2025-09-07T06:55:59.8956594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16.h 2025-09-07T06:55:59.8959975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bits.h 2025-09-07T06:55:59.8963368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Bitset.h 2025-09-07T06:55:59.8966884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bit_cast.h 2025-09-07T06:55:59.8970124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\C++17.h 2025-09-07T06:55:59.8973696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\CallOnce.h 2025-09-07T06:55:59.8977489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex.h 2025-09-07T06:55:59.8980876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_math.h 2025-09-07T06:55:59.8984394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_utils.h 2025-09-07T06:55:59.8987930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ConstexprCrc.h 2025-09-07T06:55:59.8991527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\copysign.h 2025-09-07T06:55:59.8994910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DeadlockDetection.h 2025-09-07T06:55:59.8998328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Deprecated.h 2025-09-07T06:55:59.9002108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DimVector.h 2025-09-07T06:55:59.9005966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DynamicCounter.h 2025-09-07T06:55:59.9013003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Enumerate.h 2025-09-07T06:55:59.9016441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\env.h 2025-09-07T06:55:59.9019761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\error.h 2025-09-07T06:55:59.9023028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Exception.h 2025-09-07T06:55:59.9026689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwned.h 2025-09-07T06:55:59.9030396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h 2025-09-07T06:55:59.9034051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FbcodeMaps.h 2025-09-07T06:55:59.9037626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Flags.h 2025-09-07T06:55:59.9041496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\flat_hash_map.h 2025-09-07T06:55:59.9045421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float4_e2m1fn_x2.h 2025-09-07T06:55:59.9048998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn-inl.h 2025-09-07T06:55:59.9056180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn.h 2025-09-07T06:55:59.9059695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz-inl.h 2025-09-07T06:55:59.9063168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz.h 2025-09-07T06:55:59.9066801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2-inl.h 2025-09-07T06:55:59.9071014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2.h 2025-09-07T06:55:59.9073965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz-inl.h 2025-09-07T06:55:59.9084659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz.h 2025-09-07T06:55:59.9085281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu-inl.h 2025-09-07T06:55:59.9100623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu.h 2025-09-07T06:55:59.9108135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\floating_point_utils.h 2025-09-07T06:55:59.9111635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FunctionRef.h 2025-09-07T06:55:59.9124495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Gauge.h 2025-09-07T06:55:59.9125048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\generic_math.h 2025-09-07T06:55:59.9125615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half-inl.h 2025-09-07T06:55:59.9128574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half.h 2025-09-07T06:55:59.9131804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\hash.h 2025-09-07T06:55:59.9135118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IdWrapper.h 2025-09-07T06:55:59.9138610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\int128.h 2025-09-07T06:55:59.9141984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IntrusiveList.h 2025-09-07T06:55:59.9145628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\intrusive_ptr.h 2025-09-07T06:55:59.9149466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\irange.h 2025-09-07T06:55:59.9152875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Lazy.h 2025-09-07T06:55:59.9156361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\LeftRight.h 2025-09-07T06:55:59.9164068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\llvmMathExtras.h 2025-09-07T06:55:59.9167539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Load.h 2025-09-07T06:55:59.9170886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Logging.h 2025-09-07T06:55:59.9174250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_google_glog.h 2025-09-07T06:55:59.9177833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_not_google_glog.h 2025-09-07T06:55:59.9182056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MathConstants.h 2025-09-07T06:55:59.9185817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MaybeOwned.h 2025-09-07T06:55:59.9189327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Metaprogramming.h 2025-09-07T06:55:59.9192855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\NetworkFlow.h 2025-09-07T06:55:59.9196329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\numa.h 2025-09-07T06:55:59.9199673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Optional.h 2025-09-07T06:55:59.9210841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\OptionalArrayRef.h 2025-09-07T06:55:59.9214380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\order_preserving_flat_hash_map.h 2025-09-07T06:55:59.9218272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overflows.h 2025-09-07T06:55:59.9221831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overloaded.h 2025-09-07T06:55:59.9225469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ParallelGuard.h 2025-09-07T06:55:59.9228882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\python_stub.h 2025-09-07T06:55:59.9232423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint32.h 2025-09-07T06:55:59.9235725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint8.h 2025-09-07T06:55:59.9239199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint2x4.h 2025-09-07T06:55:59.9242440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint4x2.h 2025-09-07T06:55:59.9245632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint8.h 2025-09-07T06:55:59.9249007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Registry.h 2025-09-07T06:55:59.9252493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\safe_numerics.h 2025-09-07T06:55:59.9259822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ScopeExit.h 2025-09-07T06:55:59.9263386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Semaphore.h 2025-09-07T06:55:59.9266930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\signal_handler.h 2025-09-07T06:55:59.9270573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallBuffer.h 2025-09-07T06:55:59.9274075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallVector.h 2025-09-07T06:55:59.9277902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\sparse_bitset.h 2025-09-07T06:55:59.9281632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ssize.h 2025-09-07T06:55:59.9285099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint.h 2025-09-07T06:55:59.9288806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint_elfx86.h 2025-09-07T06:55:59.9292679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strides.h 2025-09-07T06:55:59.9295814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\StringUtil.h 2025-09-07T06:55:59.9304187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_utils.h 2025-09-07T06:55:59.9307357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_view.h 2025-09-07T06:55:59.9311404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strong_type.h 2025-09-07T06:55:59.9315926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Synchronized.h 2025-09-07T06:55:59.9319674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\tempfile.h 2025-09-07T06:55:59.9324122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocal.h 2025-09-07T06:55:59.9328035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocalDebugInfo.h 2025-09-07T06:55:59.9331675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\thread_name.h 2025-09-07T06:55:59.9335239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Type.h 2025-09-07T06:55:59.9339142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeCast.h 2025-09-07T06:55:59.9342705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\typeid.h 2025-09-07T06:55:59.9346572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeIndex.h 2025-09-07T06:55:59.9350583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeList.h 2025-09-07T06:55:59.9353488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeSafeSignMath.h 2025-09-07T06:55:59.9357335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeTraits.h 2025-09-07T06:55:59.9361415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unicode.h 2025-09-07T06:55:59.9364302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\UniqueVoidPtr.h 2025-09-07T06:55:59.9367893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unroll.h 2025-09-07T06:55:59.9371224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounter.h 2025-09-07T06:55:59.9376576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounterDynamicBackend.h 2025-09-07T06:55:59.9380720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\win32-headers.h 2025-09-07T06:55:59.9396486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUCachingAllocator.h 2025-09-07T06:55:59.9400295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUDeviceProp.h 2025-09-07T06:55:59.9403571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUException.h 2025-09-07T06:55:59.9406937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUFunctions.h 2025-09-07T06:55:59.9414345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUMacros.h 2025-09-07T06:55:59.9417836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUStream.h 2025-09-07T06:55:59.9427709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\impl\XPUGuardImpl.h 2025-09-07T06:55:59.9438254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\test\impl\XPUTest.h 2025-09-07T06:55:59.9451593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\common.h 2025-09-07T06:55:59.9454969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\macros.h 2025-09-07T06:55:59.9458664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\timer.h 2025-09-07T06:55:59.9466457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\batch_box_cox_vec.h 2025-09-07T06:55:59.9470653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\common.h 2025-09-07T06:55:59.9473301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\embedding_lookup_idx.h 2025-09-07T06:55:59.9480690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\crc_alt.h 2025-09-07T06:55:59.9484632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\file_adapter.h 2025-09-07T06:55:59.9488318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\inline_container.h 2025-09-07T06:55:59.9491738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\in_memory_adapter.h 2025-09-07T06:55:59.9499854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\istream_adapter.h 2025-09-07T06:55:59.9503427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\read_adapter_interface.h 2025-09-07T06:55:59.9507295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\versions.h 2025-09-07T06:55:59.9514413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\fixed_divisor.h 2025-09-07T06:55:59.9517821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\proto_wrap.h 2025-09-07T06:55:59.9521184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\string_utils.h 2025-09-07T06:55:59.9532338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h 2025-09-07T06:55:59.9536064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool.h 2025-09-07T06:55:59.9539480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPool.h 2025-09-07T06:55:59.9546952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h 2025-09-07T06:55:59.9550417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\thread_pool_guard.h 2025-09-07T06:55:59.9553923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\WorkersPool.h 2025-09-07T06:55:59.9562675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\args.h 2025-09-07T06:55:59.9566027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\base.h 2025-09-07T06:55:59.9570108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\chrono.h 2025-09-07T06:55:59.9573937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\color.h 2025-09-07T06:55:59.9577640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\compile.h 2025-09-07T06:55:59.9581002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\core.h 2025-09-07T06:55:59.9584323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format-inl.h 2025-09-07T06:55:59.9591965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format.h 2025-09-07T06:55:59.9596221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\os.h 2025-09-07T06:55:59.9599590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ostream.h 2025-09-07T06:55:59.9602875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\printf.h 2025-09-07T06:55:59.9606196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ranges.h 2025-09-07T06:55:59.9609524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\std.h 2025-09-07T06:55:59.9612835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\xchar.h 2025-09-07T06:55:59.9620149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\bitcasts.h 2025-09-07T06:55:59.9623608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\fp16.h 2025-09-07T06:55:59.9627122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\psimd.h 2025-09-07T06:55:59.9638189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.h 2025-09-07T06:55:59.9641442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.pb.h 2025-09-07T06:55:59.9644780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\api.pb.h 2025-09-07T06:55:59.9648317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena.h 2025-09-07T06:55:59.9651701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arenastring.h 2025-09-07T06:55:59.9659175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena_impl.h 2025-09-07T06:55:59.9662587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.h 2025-09-07T06:55:59.9666497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.pb.h 2025-09-07T06:55:59.9673104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor_database.h 2025-09-07T06:55:59.9676752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\duration.pb.h 2025-09-07T06:55:59.9680266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\dynamic_message.h 2025-09-07T06:55:59.9684003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\empty.pb.h 2025-09-07T06:55:59.9687524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set.h 2025-09-07T06:55:59.9692108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set_inl.h 2025-09-07T06:55:59.9695327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\field_mask.pb.h 2025-09-07T06:55:59.9698818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_reflection.h 2025-09-07T06:55:59.9702365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_util.h 2025-09-07T06:55:59.9707495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_reflection.h 2025-09-07T06:55:59.9711099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_table_driven.h 2025-09-07T06:55:59.9714734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_util.h 2025-09-07T06:55:59.9745050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\has_bits.h 2025-09-07T06:55:59.9748843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\implicit_weak_message.h 2025-09-07T06:55:59.9752360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\inlined_string_field.h 2025-09-07T06:55:59.9755787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map.h 2025-09-07T06:55:59.9759442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry.h 2025-09-07T06:55:59.9762906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry_lite.h 2025-09-07T06:55:59.9766567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field.h 2025-09-07T06:55:59.9770066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_inl.h 2025-09-07T06:55:59.9773696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_lite.h 2025-09-07T06:55:59.9777226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_type_handler.h 2025-09-07T06:55:59.9785600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message.h 2025-09-07T06:55:59.9789231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message_lite.h 2025-09-07T06:55:59.9792717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata.h 2025-09-07T06:55:59.9796102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata_lite.h 2025-09-07T06:55:59.9799550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\parse_context.h 2025-09-07T06:55:59.9802987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\port.h 2025-09-07T06:55:59.9806362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection.h 2025-09-07T06:55:59.9809952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection_ops.h 2025-09-07T06:55:59.9813463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\repeated_field.h 2025-09-07T06:55:59.9817601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\service.h 2025-09-07T06:55:59.9820976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\source_context.pb.h 2025-09-07T06:55:59.9824420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\struct.pb.h 2025-09-07T06:55:59.9831593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\text_format.h 2025-09-07T06:55:59.9835122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\timestamp.pb.h 2025-09-07T06:55:59.9838595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\type.pb.h 2025-09-07T06:55:59.9842474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\unknown_field_set.h 2025-09-07T06:55:59.9846001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format.h 2025-09-07T06:55:59.9849611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format_lite.h 2025-09-07T06:55:59.9853632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wrappers.pb.h 2025-09-07T06:55:59.9861223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\code_generator.h 2025-09-07T06:55:59.9865136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\command_line_interface.h 2025-09-07T06:55:59.9868587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\importer.h 2025-09-07T06:55:59.9872116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\parser.h 2025-09-07T06:55:59.9875560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.h 2025-09-07T06:55:59.9882891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.pb.h 2025-09-07T06:55:59.9890325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\cpp\cpp_generator.h 2025-09-07T06:55:59.9897211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_generator.h 2025-09-07T06:55:59.9900628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_names.h 2025-09-07T06:55:59.9908096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_generator.h 2025-09-07T06:55:59.9911515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_names.h 2025-09-07T06:55:59.9918542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\js_generator.h 2025-09-07T06:55:59.9922039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\well_known_types_embed.h 2025-09-07T06:55:59.9929430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h 2025-09-07T06:55:59.9932816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h 2025-09-07T06:55:59.9939760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\php\php_generator.h 2025-09-07T06:55:59.9946986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\python\python_generator.h 2025-09-07T06:55:59.9953975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\ruby\ruby_generator.h 2025-09-07T06:55:59.9961935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\coded_stream.h 2025-09-07T06:55:59.9965575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\gzip_stream.h 2025-09-07T06:55:59.9968875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\io_win32.h 2025-09-07T06:55:59.9972118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\printer.h 2025-09-07T06:55:59.9975403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\strtod.h 2025-09-07T06:55:59.9983535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\tokenizer.h 2025-09-07T06:55:59.9987170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream.h 2025-09-07T06:55:59.9991042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl.h 2025-09-07T06:55:59.9994756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h 2025-09-07T06:56:00.0002776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\bytestream.h 2025-09-07T06:56:00.0006238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\callback.h 2025-09-07T06:56:00.0009520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\casts.h 2025-09-07T06:56:00.0012784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\common.h 2025-09-07T06:56:00.0016045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\fastmem.h 2025-09-07T06:56:00.0019263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\hash.h 2025-09-07T06:56:00.0027352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\logging.h 2025-09-07T06:56:00.0031551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\macros.h 2025-09-07T06:56:00.0035028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\map_util.h 2025-09-07T06:56:00.0038348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\mutex.h 2025-09-07T06:56:00.0041897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\once.h 2025-09-07T06:56:00.0045563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\platform_macros.h 2025-09-07T06:56:00.0049144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\port.h 2025-09-07T06:56:00.0052531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\status.h 2025-09-07T06:56:00.0055855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stl_util.h 2025-09-07T06:56:00.0059520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stringpiece.h 2025-09-07T06:56:00.0063151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\strutil.h 2025-09-07T06:56:00.0066958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\template_util.h 2025-09-07T06:56:00.0075139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\delimited_message_util.h 2025-09-07T06:56:00.0078723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_comparator.h 2025-09-07T06:56:00.0083095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_mask_util.h 2025-09-07T06:56:00.0090169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\json_util.h 2025-09-07T06:56:00.0094337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\message_differencer.h 2025-09-07T06:56:00.0098032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\time_util.h 2025-09-07T06:56:00.0101525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver.h 2025-09-07T06:56:00.0105313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver_util.h 2025-09-07T06:56:00.0114745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\AbstractConfig.h 2025-09-07T06:56:00.0118397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityProfilerInterface.h 2025-09-07T06:56:00.0121771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityTraceInterface.h 2025-09-07T06:56:00.0130648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityType.h 2025-09-07T06:56:00.0135911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ClientInterface.h 2025-09-07T06:56:00.0140640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\Config.h 2025-09-07T06:56:00.0145532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\GenericTraceActivity.h 2025-09-07T06:56:00.0150801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\IActivityProfiler.h 2025-09-07T06:56:00.0154563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ILoggerObserver.h 2025-09-07T06:56:00.0173868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ITraceActivity.h 2025-09-07T06:56:00.0176884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\libkineto.h 2025-09-07T06:56:00.0180961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\LoggingAPI.h 2025-09-07T06:56:00.0185298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\output_base.h 2025-09-07T06:56:00.0188365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ThreadUtil.h 2025-09-07T06:56:00.0191750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\time_since_epoch.h 2025-09-07T06:56:00.0195169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\TraceSpan.h 2025-09-07T06:56:00.0203066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\legacy\ittnotify.h 2025-09-07T06:56:00.0211767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-new-delete.h 2025-09-07T06:56:00.0215213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-override.h 2025-09-07T06:56:00.0218782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-stats.h 2025-09-07T06:56:00.0227189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc.h 2025-09-07T06:56:00.0239870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.h 2025-09-07T06:56:00.0244425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.hpp 2025-09-07T06:56:00.0251575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.h 2025-09-07T06:56:00.0255372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.hpp 2025-09-07T06:56:00.0258651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common_types.h 2025-09-07T06:56:00.0266821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_config.h 2025-09-07T06:56:00.0269505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_debug.h 2025-09-07T06:56:00.0273078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.h 2025-09-07T06:56:00.0276606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.hpp 2025-09-07T06:56:00.0281469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.h 2025-09-07T06:56:00.0285293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp 2025-09-07T06:56:00.0288665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.h 2025-09-07T06:56:00.0292248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp 2025-09-07T06:56:00.0295713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_types.h 2025-09-07T06:56:00.0299203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.h 2025-09-07T06:56:00.0302964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.hpp 2025-09-07T06:56:00.0306518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl_types.h 2025-09-07T06:56:00.0310056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.h 2025-09-07T06:56:00.0313746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.hpp 2025-09-07T06:56:00.0317327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl_types.h 2025-09-07T06:56:00.0320907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.h 2025-09-07T06:56:00.0328693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.hpp 2025-09-07T06:56:00.0332526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp 2025-09-07T06:56:00.0336114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_types.h 2025-09-07T06:56:00.0340326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.h 2025-09-07T06:56:00.0343982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.hpp 2025-09-07T06:56:00.0348762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel_types.h 2025-09-07T06:56:00.0352407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version.h 2025-09-07T06:56:00.0356103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version_hash.h 2025-09-07T06:56:00.0366195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\attr.h 2025-09-07T06:56:00.0369622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\buffer_info.h 2025-09-07T06:56:00.0373054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\cast.h 2025-09-07T06:56:00.0377286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\chrono.h 2025-09-07T06:56:00.0381024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\common.h 2025-09-07T06:56:00.0384440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\complex.h 2025-09-07T06:56:00.0392683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\critical_section.h 2025-09-07T06:56:00.0395929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen.h 2025-09-07T06:56:00.0399199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\embed.h 2025-09-07T06:56:00.0402495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eval.h 2025-09-07T06:56:00.0405875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\functional.h 2025-09-07T06:56:00.0409154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil.h 2025-09-07T06:56:00.0412490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_safe_call_once.h 2025-09-07T06:56:00.0415903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_simple.h 2025-09-07T06:56:00.0419345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\iostream.h 2025-09-07T06:56:00.0422608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\native_enum.h 2025-09-07T06:56:00.0426319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\numpy.h 2025-09-07T06:56:00.0430318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\operators.h 2025-09-07T06:56:00.0433723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\options.h 2025-09-07T06:56:00.0437198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pybind11.h 2025-09-07T06:56:00.0441470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pytypes.h 2025-09-07T06:56:00.0445609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl.h 2025-09-07T06:56:00.0449156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl_bind.h 2025-09-07T06:56:00.0452644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\subinterpreter.h 2025-09-07T06:56:00.0456268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\trampoline_self_life_support.h 2025-09-07T06:56:00.0459961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\type_caster_pyobject_ptr.h 2025-09-07T06:56:00.0463421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\typing.h 2025-09-07T06:56:00.0467099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\warnings.h 2025-09-07T06:56:00.0477803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\conduit\pybind11_conduit_v1.h 2025-09-07T06:56:00.0481235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\conduit\pybind11_platform_abi_id.h 2025-09-07T06:56:00.0484702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\conduit\wrap_include_python_h.h 2025-09-07T06:56:00.0496026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\class.h 2025-09-07T06:56:00.0499604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\common.h 2025-09-07T06:56:00.0503406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\cpp_conduit.h 2025-09-07T06:56:00.0506954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\descr.h 2025-09-07T06:56:00.0510397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\dynamic_raw_ptr_cast_if_possible.h 2025-09-07T06:56:00.0518640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\exception_translation.h 2025-09-07T06:56:00.0522152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\function_record_pyobject.h 2025-09-07T06:56:00.0525495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\init.h 2025-09-07T06:56:00.0528895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\internals.h 2025-09-07T06:56:00.0532814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\native_enum_data.h 2025-09-07T06:56:00.0536299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\pybind11_namespace_macros.h 2025-09-07T06:56:00.0539780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\struct_smart_holder.h 2025-09-07T06:56:00.0543289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\typeid.h 2025-09-07T06:56:00.0547242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\type_caster_base.h 2025-09-07T06:56:00.0551103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\using_smart_holder.h 2025-09-07T06:56:00.0555046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\value_and_holder.h 2025-09-07T06:56:00.0562786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\common.h 2025-09-07T06:56:00.0566368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\matrix.h 2025-09-07T06:56:00.0569755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\tensor.h 2025-09-07T06:56:00.0576946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl\filesystem.h 2025-09-07T06:56:00.0586273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class.h 2025-09-07T06:56:00.0589769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class_detail.h 2025-09-07T06:56:00.0593656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\extension.h 2025-09-07T06:56:00.0596589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\library.h 2025-09-07T06:56:00.0603753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\script.h 2025-09-07T06:56:00.0612170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\copy_utils.h 2025-09-07T06:56:00.0616616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\CudaIPCTypes.h 2025-09-07T06:56:00.0619106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DataLoader.h 2025-09-07T06:56:00.0622625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Device.h 2025-09-07T06:56:00.0630153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DeviceAccelerator.h 2025-09-07T06:56:00.0633993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Dtype.h 2025-09-07T06:56:00.0637099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DynamicTypes.h 2025-09-07T06:56:00.0641916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Event.h 2025-09-07T06:56:00.0645843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Exceptions.h 2025-09-07T06:56:00.0649062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Export.h 2025-09-07T06:56:00.0652830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Generator.h 2025-09-07T06:56:00.0657235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt.h 2025-09-07T06:56:00.0659763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt_wrapper.h 2025-09-07T06:56:00.0663357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Layout.h 2025-09-07T06:56:00.0666785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\MemoryFormat.h 2025-09-07T06:56:00.0670685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Module.h 2025-09-07T06:56:00.0674646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreter.h 2025-09-07T06:56:00.0678071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreterHooks.h 2025-09-07T06:56:00.0681649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_dimname.h 2025-09-07T06:56:00.0686027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_headers.h 2025-09-07T06:56:00.0688647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\QScheme.h 2025-09-07T06:56:00.0692176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\serialization.h 2025-09-07T06:56:00.0695822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Size.h 2025-09-07T06:56:00.0699627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Storage.h 2025-09-07T06:56:00.0707075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageMethods.h 2025-09-07T06:56:00.0711272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageSharing.h 2025-09-07T06:56:00.0715228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Stream.h 2025-09-07T06:56:00.0718688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THConcat.h 2025-09-07T06:56:00.0722124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THP.h 2025-09-07T06:56:00.0726528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\TypeInfo.h 2025-09-07T06:56:00.0728966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Types.h 2025-09-07T06:56:00.0732406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils.h 2025-09-07T06:56:00.0747134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\all.h 2025-09-07T06:56:00.0751129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\arg.h 2025-09-07T06:56:00.0755298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\autograd.h 2025-09-07T06:56:00.0758018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\cuda.h 2025-09-07T06:56:00.0761480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data.h 2025-09-07T06:56:00.0764853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\enum.h 2025-09-07T06:56:00.0768712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\expanding_array.h 2025-09-07T06:56:00.0776223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\fft.h 2025-09-07T06:56:00.0780209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\imethod.h 2025-09-07T06:56:00.0784176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\jit.h 2025-09-07T06:56:00.0787249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\mps.h 2025-09-07T06:56:00.0790728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nested.h 2025-09-07T06:56:00.0795723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn.h 2025-09-07T06:56:00.0798322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim.h 2025-09-07T06:56:00.0801891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\ordered_dict.h 2025-09-07T06:56:00.0805371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python.h 2025-09-07T06:56:00.0809148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize.h 2025-09-07T06:56:00.0813107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\sparse.h 2025-09-07T06:56:00.0816182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\special.h 2025-09-07T06:56:00.0820227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\torch.h 2025-09-07T06:56:00.0824570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\types.h 2025-09-07T06:56:00.0827442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\utils.h 2025-09-07T06:56:00.0830901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\version.h 2025-09-07T06:56:00.0834210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\xpu.h 2025-09-07T06:56:00.0842581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader.h 2025-09-07T06:56:00.0845944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h 2025-09-07T06:56:00.0849859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets.h 2025-09-07T06:56:00.0853411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\example.h 2025-09-07T06:56:00.0856923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\iterator.h 2025-09-07T06:56:00.0864463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers.h 2025-09-07T06:56:00.0868081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms.h 2025-09-07T06:56:00.0872132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\worker_exception.h 2025-09-07T06:56:00.0879449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h 2025-09-07T06:56:00.0883856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h 2025-09-07T06:56:00.0899267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h 2025-09-07T06:56:00.0899601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\base.h 2025-09-07T06:56:00.0899943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h 2025-09-07T06:56:00.0904942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\map.h 2025-09-07T06:56:00.0907175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h 2025-09-07T06:56:00.0911416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h 2025-09-07T06:56:00.0915029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h 2025-09-07T06:56:00.0918404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h 2025-09-07T06:56:00.0929557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h 2025-09-07T06:56:00.0934285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\queue.h 2025-09-07T06:56:00.0936726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h 2025-09-07T06:56:00.0943672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\base.h 2025-09-07T06:56:00.0947447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h 2025-09-07T06:56:00.0951067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h 2025-09-07T06:56:00.0954403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\random.h 2025-09-07T06:56:00.0957908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h 2025-09-07T06:56:00.0965656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h 2025-09-07T06:56:00.0969175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h 2025-09-07T06:56:00.0976569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\base.h 2025-09-07T06:56:00.0979992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h 2025-09-07T06:56:00.0983861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h 2025-09-07T06:56:00.0987575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h 2025-09-07T06:56:00.0990952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h 2025-09-07T06:56:00.0998834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\static.h 2025-09-07T06:56:00.1002241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h 2025-09-07T06:56:00.1009888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h 2025-09-07T06:56:00.1016944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\cloneable.h 2025-09-07T06:56:00.1020448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional.h 2025-09-07T06:56:00.1024065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\init.h 2025-09-07T06:56:00.1027451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\module.h 2025-09-07T06:56:00.1030833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules.h 2025-09-07T06:56:00.1038384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options.h 2025-09-07T06:56:00.1041693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h 2025-09-07T06:56:00.1045365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl.h 2025-09-07T06:56:00.1049004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils.h 2025-09-07T06:56:00.1056261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h 2025-09-07T06:56:00.1059899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h 2025-09-07T06:56:00.1063523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h 2025-09-07T06:56:00.1067026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h 2025-09-07T06:56:00.1074485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h 2025-09-07T06:56:00.1077852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h 2025-09-07T06:56:00.1081392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h 2025-09-07T06:56:00.1084869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h 2025-09-07T06:56:00.1088365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h 2025-09-07T06:56:00.1091846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h 2025-09-07T06:56:00.1095481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h 2025-09-07T06:56:00.1098933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h 2025-09-07T06:56:00.1102847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h 2025-09-07T06:56:00.1106545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h 2025-09-07T06:56:00.1110043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h 2025-09-07T06:56:00.1113527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h 2025-09-07T06:56:00.1121229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h 2025-09-07T06:56:00.1124876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h 2025-09-07T06:56:00.1128268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h 2025-09-07T06:56:00.1131615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\common.h 2025-09-07T06:56:00.1135006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h 2025-09-07T06:56:00.1142507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h 2025-09-07T06:56:00.1146003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h 2025-09-07T06:56:00.1149705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h 2025-09-07T06:56:00.1153028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h 2025-09-07T06:56:00.1156395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h 2025-09-07T06:56:00.1159769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h 2025-09-07T06:56:00.1163066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h 2025-09-07T06:56:00.1166731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h 2025-09-07T06:56:00.1170059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h 2025-09-07T06:56:00.1174055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h 2025-09-07T06:56:00.1177748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h 2025-09-07T06:56:00.1197385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h 2025-09-07T06:56:00.1200853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h 2025-09-07T06:56:00.1204788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h 2025-09-07T06:56:00.1208003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h 2025-09-07T06:56:00.1212141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h 2025-09-07T06:56:00.1217117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h 2025-09-07T06:56:00.1221696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h 2025-09-07T06:56:00.1228931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h 2025-09-07T06:56:00.1233405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h 2025-09-07T06:56:00.1236075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h 2025-09-07T06:56:00.1239744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h 2025-09-07T06:56:00.1248428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h 2025-09-07T06:56:00.1251893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h 2025-09-07T06:56:00.1256387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h 2025-09-07T06:56:00.1259131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h 2025-09-07T06:56:00.1262824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h 2025-09-07T06:56:00.1266606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h 2025-09-07T06:56:00.1275261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\activation.h 2025-09-07T06:56:00.1279672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h 2025-09-07T06:56:00.1282258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h 2025-09-07T06:56:00.1286158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\conv.h 2025-09-07T06:56:00.1290284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\distance.h 2025-09-07T06:56:00.1296929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h 2025-09-07T06:56:00.1300058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h 2025-09-07T06:56:00.1303529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\fold.h 2025-09-07T06:56:00.1308359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h 2025-09-07T06:56:00.1311088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\linear.h 2025-09-07T06:56:00.1314706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\loss.h 2025-09-07T06:56:00.1318234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h 2025-09-07T06:56:00.1322186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\padding.h 2025-09-07T06:56:00.1325767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h 2025-09-07T06:56:00.1329243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h 2025-09-07T06:56:00.1333181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h 2025-09-07T06:56:00.1337265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h 2025-09-07T06:56:00.1340364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h 2025-09-07T06:56:00.1344606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h 2025-09-07T06:56:00.1348730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h 2025-09-07T06:56:00.1351924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\vision.h 2025-09-07T06:56:00.1360690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h 2025-09-07T06:56:00.1367420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h 2025-09-07T06:56:00.1371910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h 2025-09-07T06:56:00.1374721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h 2025-09-07T06:56:00.1383379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adagrad.h 2025-09-07T06:56:00.1386241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adam.h 2025-09-07T06:56:00.1390667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adamw.h 2025-09-07T06:56:00.1412192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h 2025-09-07T06:56:00.1412524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\optimizer.h 2025-09-07T06:56:00.1412824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h 2025-09-07T06:56:00.1413132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\serialize.h 2025-09-07T06:56:00.1413431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\sgd.h 2025-09-07T06:56:00.1420606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h 2025-09-07T06:56:00.1424439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h 2025-09-07T06:56:00.1427918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h 2025-09-07T06:56:00.1440119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python\init.h 2025-09-07T06:56:00.1447461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\archive.h 2025-09-07T06:56:00.1450832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h 2025-09-07T06:56:00.1454483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h 2025-09-07T06:56:00.1457887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\tensor.h 2025-09-07T06:56:00.1472700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\anomaly_mode.h 2025-09-07T06:56:00.1476251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd.h 2025-09-07T06:56:00.1479675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h 2025-09-07T06:56:00.1483032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\cpp_hook.h 2025-09-07T06:56:00.1490463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\custom_function.h 2025-09-07T06:56:00.1494201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\edge.h 2025-09-07T06:56:00.1497968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\engine.h 2025-09-07T06:56:00.1501269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\forward_grad.h 2025-09-07T06:56:00.1505192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function.h 2025-09-07T06:56:00.1508813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\FunctionsManual.h 2025-09-07T06:56:00.1512397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function_hook.h 2025-09-07T06:56:00.1515941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\grad_mode.h 2025-09-07T06:56:00.1519363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\graph_task.h 2025-09-07T06:56:00.1523874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\InferenceMode.h 2025-09-07T06:56:00.1527285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_buffer.h 2025-09-07T06:56:00.1530784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_metadata.h 2025-09-07T06:56:00.1534292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\jit_decomp_interface.h 2025-09-07T06:56:00.1537956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler.h 2025-09-07T06:56:00.1541316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_kineto.h 2025-09-07T06:56:00.1544807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_legacy.h 2025-09-07T06:56:00.1548615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_python.h 2025-09-07T06:56:00.1552388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_anomaly_mode.h 2025-09-07T06:56:00.1561464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_autograd.h 2025-09-07T06:56:00.1565224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_cpp_function.h 2025-09-07T06:56:00.1568723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_engine.h 2025-09-07T06:56:00.1572528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_enum_tag.h 2025-09-07T06:56:00.1576054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_fft_functions.h 2025-09-07T06:56:00.1579620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_function.h 2025-09-07T06:56:00.1583249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_hook.h 2025-09-07T06:56:00.1587408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_legacy_variable.h 2025-09-07T06:56:00.1591055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_linalg_functions.h 2025-09-07T06:56:00.1598366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nested_functions.h 2025-09-07T06:56:00.1602897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nn_functions.h 2025-09-07T06:56:00.1606069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h 2025-09-07T06:56:00.1609458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_sparse_functions.h 2025-09-07T06:56:00.1613003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_special_functions.h 2025-09-07T06:56:00.1616882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_torch_functions.h 2025-09-07T06:56:00.1620567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable.h 2025-09-07T06:56:00.1624234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable_indexing.h 2025-09-07T06:56:00.1627871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\record_function_ops.h 2025-09-07T06:56:00.1631534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable.h 2025-09-07T06:56:00.1635123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable_hooks.h 2025-09-07T06:56:00.1642511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\symbolic.h 2025-09-07T06:56:00.1645953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable.h 2025-09-07T06:56:00.1650670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\VariableTypeUtils.h 2025-09-07T06:56:00.1653236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable_info.h 2025-09-07T06:56:00.1662313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\accumulate_grad.h 2025-09-07T06:56:00.1665101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\basic_ops.h 2025-09-07T06:56:00.1668875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\comm.h 2025-09-07T06:56:00.1673811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\pybind.h 2025-09-07T06:56:00.1680597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\tensor.h 2025-09-07T06:56:00.1684596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\utils.h 2025-09-07T06:56:00.1691714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\Functions.h 2025-09-07T06:56:00.1698690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_functions.h 2025-09-07T06:56:00.1702857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_return_types.h 2025-09-07T06:56:00.1710406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\VariableType.h 2025-09-07T06:56:00.1714199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\variable_factories.h 2025-09-07T06:56:00.1718204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\ViewFuncs.h 2025-09-07T06:56:00.1727614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\error_messages.h 2025-09-07T06:56:00.1731532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h 2025-09-07T06:56:00.1734978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h 2025-09-07T06:56:00.1739029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h 2025-09-07T06:56:00.1746672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\warnings.h 2025-09-07T06:56:00.1750479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\wrap_outputs.h 2025-09-07T06:56:00.1760198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cpu\Module.h 2025-09-07T06:56:00.1766424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\comm.h 2025-09-07T06:56:00.1771615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h 2025-09-07T06:56:00.1774179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\device_set.h 2025-09-07T06:56:00.1777595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Event.h 2025-09-07T06:56:00.1780851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\GdsFile.h 2025-09-07T06:56:00.1789047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\memory_snapshot.h 2025-09-07T06:56:00.1791895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Module.h 2025-09-07T06:56:00.1795406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\nccl.h 2025-09-07T06:56:00.1798767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_comm.h 2025-09-07T06:56:00.1802825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_nccl.h 2025-09-07T06:56:00.1806481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Stream.h 2025-09-07T06:56:00.1809935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\THCP.h 2025-09-07T06:56:00.1813770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\utils.h 2025-09-07T06:56:00.1825722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\autograd.h 2025-09-07T06:56:00.1830270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\python_autograd.h 2025-09-07T06:56:00.1834766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\utils.h 2025-09-07T06:56:00.1841030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\container.h 2025-09-07T06:56:00.1844385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\context.h 2025-09-07T06:56:00.1852219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h 2025-09-07T06:56:00.1864186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h 2025-09-07T06:56:00.1867843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h 2025-09-07T06:56:00.1876116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h 2025-09-07T06:56:00.1880766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h 2025-09-07T06:56:00.1883418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h 2025-09-07T06:56:00.1891599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h 2025-09-07T06:56:00.1894763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h 2025-09-07T06:56:00.1899162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h 2025-09-07T06:56:00.1902791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h 2025-09-07T06:56:00.1906964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h 2025-09-07T06:56:00.1910452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h 2025-09-07T06:56:00.1914403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h 2025-09-07T06:56:00.1923638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backend.hpp 2025-09-07T06:56:00.1927061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backoff.hpp 2025-09-07T06:56:00.1930457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\c10d.h 2025-09-07T06:56:00.1933830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\comm.hpp 2025-09-07T06:56:00.1937942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\debug.h 2025-09-07T06:56:00.1941566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp 2025-09-07T06:56:00.1949399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\error.h 2025-09-07T06:56:00.1953075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\exception.h 2025-09-07T06:56:00.1956605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp 2025-09-07T06:56:00.1960294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FileStore.hpp 2025-09-07T06:56:00.1963934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp 2025-09-07T06:56:00.1967415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp 2025-09-07T06:56:00.1970928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Functional.hpp 2025-09-07T06:56:00.1974485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp 2025-09-07T06:56:00.1978233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp 2025-09-07T06:56:00.1981668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\HashStore.hpp 2025-09-07T06:56:00.1985168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logger.hpp 2025-09-07T06:56:00.1988784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logging.h 2025-09-07T06:56:00.1992167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp 2025-09-07T06:56:00.1995716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp 2025-09-07T06:56:00.1999321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp 2025-09-07T06:56:00.2002875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp 2025-09-07T06:56:00.2006470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp 2025-09-07T06:56:00.2014040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp 2025-09-07T06:56:00.2017619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp 2025-09-07T06:56:00.2021239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp 2025-09-07T06:56:00.2024860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp 2025-09-07T06:56:00.2029027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp 2025-09-07T06:56:00.2032922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp 2025-09-07T06:56:00.2036760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp 2025-09-07T06:56:00.2040549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h 2025-09-07T06:56:00.2044232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp 2025-09-07T06:56:00.2051527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer.hpp 2025-09-07T06:56:00.2055654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp 2025-09-07T06:56:00.2059245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp 2025-09-07T06:56:00.2062660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket.h 2025-09-07T06:56:00.2066219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket_fmt.h 2025-09-07T06:56:00.2069801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Store.hpp 2025-09-07T06:56:00.2073182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp 2025-09-07T06:56:00.2076493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp 2025-09-07T06:56:00.2080053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TraceUtils.h 2025-09-07T06:56:00.2083567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Types.hpp 2025-09-07T06:56:00.2087126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp 2025-09-07T06:56:00.2090422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp 2025-09-07T06:56:00.2097639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp 2025-09-07T06:56:00.2101391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Utils.hpp 2025-09-07T06:56:00.2104977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp 2025-09-07T06:56:00.2108411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Work.hpp 2025-09-07T06:56:00.2116047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp 2025-09-07T06:56:00.2120558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp 2025-09-07T06:56:00.2127944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp 2025-09-07T06:56:00.2131378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp 2025-09-07T06:56:00.2146369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp 2025-09-07T06:56:00.2150669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp 2025-09-07T06:56:00.2154442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp 2025-09-07T06:56:00.2162321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h 2025-09-07T06:56:00.2166494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h 2025-09-07T06:56:00.2170083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h 2025-09-07T06:56:00.2182762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h 2025-09-07T06:56:00.2186466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp 2025-09-07T06:56:00.2190261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp 2025-09-07T06:56:00.2198227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp 2025-09-07T06:56:00.2201955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp 2025-09-07T06:56:00.2205367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp 2025-09-07T06:56:00.2209090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp 2025-09-07T06:56:00.2217418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\agent_utils.h 2025-09-07T06:56:00.2220811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\message.h 2025-09-07T06:56:00.2224734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_call.h 2025-09-07T06:56:00.2228386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_functions.h 2025-09-07T06:56:00.2235654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_remote_call.h 2025-09-07T06:56:00.2239433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_resp.h 2025-09-07T06:56:00.2242775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h 2025-09-07T06:56:00.2246140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\py_rref.h 2025-09-07T06:56:00.2249546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback.h 2025-09-07T06:56:00.2253068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h 2025-09-07T06:56:00.2272138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h 2025-09-07T06:56:00.2275205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc.h 2025-09-07T06:56:00.2278581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_agent.h 2025-09-07T06:56:00.2282243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h 2025-09-07T06:56:00.2285892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_context.h 2025-09-07T06:56:00.2289488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_impl.h 2025-09-07T06:56:00.2293004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_proto.h 2025-09-07T06:56:00.2297154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_call.h 2025-09-07T06:56:00.2300692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_remote_call.h 2025-09-07T06:56:00.2304492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_resp.h 2025-09-07T06:56:00.2312356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h 2025-09-07T06:56:00.2315933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h 2025-09-07T06:56:00.2319594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h 2025-09-07T06:56:00.2323152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\types.h 2025-09-07T06:56:00.2327127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h 2025-09-07T06:56:00.2331245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h 2025-09-07T06:56:00.2334921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\utils.h 2025-09-07T06:56:00.2342284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h 2025-09-07T06:56:00.2349694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h 2025-09-07T06:56:00.2353380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h 2025-09-07T06:56:00.2361068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h 2025-09-07T06:56:00.2364586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\testing.h 2025-09-07T06:56:00.2373076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cache_entry.h 2025-09-07T06:56:00.2377007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\compiled_autograd.h 2025-09-07T06:56:00.2381193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpp_shim.h 2025-09-07T06:56:00.2384660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_defs.h 2025-09-07T06:56:00.2392823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_includes.h 2025-09-07T06:56:00.2396739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\debug_macros.h 2025-09-07T06:56:00.2400426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame.h 2025-09-07T06:56:00.2404000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame_cpp.h 2025-09-07T06:56:00.2442214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\extra_state.h 2025-09-07T06:56:00.2442893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\framelocals_mapping.h 2025-09-07T06:56:00.2443528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\guards.h 2025-09-07T06:56:00.2444090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\init.h 2025-09-07T06:56:00.2444734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\python_compiled_autograd.h 2025-09-07T06:56:00.2445479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\utils.h 2025-09-07T06:56:00.2446089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\example_upgraders.h 2025-09-07T06:56:00.2448215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pt2_archive_constants.h 2025-09-07T06:56:00.2448857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pybind.h 2025-09-07T06:56:00.2449435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\upgrader.h 2025-09-07T06:56:00.2455981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\functorch\init.h 2025-09-07T06:56:00.2462926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\fx\node.h 2025-09-07T06:56:00.2470824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\array_ref_impl.h 2025-09-07T06:56:00.2474384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_prefix.h 2025-09-07T06:56:00.2478335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\inductor_ops.h 2025-09-07T06:56:00.2481820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\static_cuda_launcher.h 2025-09-07T06:56:00.2493680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h 2025-09-07T06:56:00.2496454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h 2025-09-07T06:56:00.2503522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\array_ref.h 2025-09-07T06:56:00.2507070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\common.h 2025-09-07T06:56:00.2510718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cpu.h 2025-09-07T06:56:00.2514115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cuda.h 2025-09-07T06:56:00.2517533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\mps.h 2025-09-07T06:56:00.2525919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\xpu.h 2025-09-07T06:56:00.2533698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h 2025-09-07T06:56:00.2537565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\pybind.h 2025-09-07T06:56:00.2544828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h 2025-09-07T06:56:00.2548293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h 2025-09-07T06:56:00.2551774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h 2025-09-07T06:56:00.2560225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h 2025-09-07T06:56:00.2563991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h 2025-09-07T06:56:00.2567910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\pybind.h 2025-09-07T06:56:00.2575315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h 2025-09-07T06:56:00.2578800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h 2025-09-07T06:56:00.2582208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h 2025-09-07T06:56:00.2589616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\interface.h 2025-09-07T06:56:00.2593207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h 2025-09-07T06:56:00.2596604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model.h 2025-09-07T06:56:00.2600166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h 2025-09-07T06:56:00.2603889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h 2025-09-07T06:56:00.2607552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h 2025-09-07T06:56:00.2611201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h 2025-09-07T06:56:00.2614590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h 2025-09-07T06:56:00.2618087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils.h 2025-09-07T06:56:00.2621553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h 2025-09-07T06:56:00.2625309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h 2025-09-07T06:56:00.2633667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h 2025-09-07T06:56:00.2637144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h 2025-09-07T06:56:00.2640642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h 2025-09-07T06:56:00.2648024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h 2025-09-07T06:56:00.2651512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\utils.h 2025-09-07T06:56:00.2658246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\macros.h 2025-09-07T06:56:00.2661641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h 2025-09-07T06:56:00.2665230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h 2025-09-07T06:56:00.2668531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h 2025-09-07T06:56:00.2672121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h 2025-09-07T06:56:00.2675524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h 2025-09-07T06:56:00.2686787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h 2025-09-07T06:56:00.2690297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h 2025-09-07T06:56:00.2694229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h 2025-09-07T06:56:00.2702539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h 2025-09-07T06:56:00.2706232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h 2025-09-07T06:56:00.2715037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h 2025-09-07T06:56:00.2719049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\common.h 2025-09-07T06:56:00.2722259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h 2025-09-07T06:56:00.2725551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h 2025-09-07T06:56:00.2729775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h 2025-09-07T06:56:00.2737739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h 2025-09-07T06:56:00.2744809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h 2025-09-07T06:56:00.2748351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h 2025-09-07T06:56:00.2751899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h 2025-09-07T06:56:00.2755380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h 2025-09-07T06:56:00.2763994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\instruction_counter\Module.h 2025-09-07T06:56:00.2771762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_log.h 2025-09-07T06:56:00.2775206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_opt_limit.h 2025-09-07T06:56:00.2779042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\resource_guard.h 2025-09-07T06:56:00.2787082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\compilation_unit.h 2025-09-07T06:56:00.2790515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\function_impl.h 2025-09-07T06:56:00.2794168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\method.h 2025-09-07T06:56:00.2798017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\module.h 2025-09-07T06:56:00.2800906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\object.h 2025-09-07T06:56:00.2816319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend.h 2025-09-07T06:56:00.2820757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_handler.h 2025-09-07T06:56:00.2823365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_info.h 2025-09-07T06:56:00.2827045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_detail.h 2025-09-07T06:56:00.2835338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_exception.h 2025-09-07T06:56:00.2839198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_init.h 2025-09-07T06:56:00.2843639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_interface.h 2025-09-07T06:56:00.2846325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_preprocess.h 2025-09-07T06:56:00.2850185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_resolver.h 2025-09-07T06:56:00.2861329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h 2025-09-07T06:56:00.2868462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h 2025-09-07T06:56:00.2872245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h 2025-09-07T06:56:00.2875874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h 2025-09-07T06:56:00.2883332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h 2025-09-07T06:56:00.2886916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h 2025-09-07T06:56:00.2895992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h 2025-09-07T06:56:00.2903625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h 2025-09-07T06:56:00.2910866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h 2025-09-07T06:56:00.2919007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h 2025-09-07T06:56:00.2931209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\cuda\interface.h 2025-09-07T06:56:00.2938261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h 2025-09-07T06:56:00.2941841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\codegen.h 2025-09-07T06:56:00.2945711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\compiler.h 2025-09-07T06:56:00.2949149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\executor.h 2025-09-07T06:56:00.2952589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fallback.h 2025-09-07T06:56:00.2955906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h 2025-09-07T06:56:00.2963610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\interface.h 2025-09-07T06:56:00.2967217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h 2025-09-07T06:56:00.2970746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h 2025-09-07T06:56:00.2974350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h 2025-09-07T06:56:00.2977804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h 2025-09-07T06:56:00.2981239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h 2025-09-07T06:56:00.2988482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h 2025-09-07T06:56:00.2991940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h 2025-09-07T06:56:00.2995334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h 2025-09-07T06:56:00.3003141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h 2025-09-07T06:56:00.3006443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h 2025-09-07T06:56:00.3014101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h 2025-09-07T06:56:00.3017687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h 2025-09-07T06:56:00.3021187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h 2025-09-07T06:56:00.3024552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h 2025-09-07T06:56:00.3032031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h 2025-09-07T06:56:00.3035460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\interface.h 2025-09-07T06:56:00.3038920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\kernel.h 2025-09-07T06:56:00.3042333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h 2025-09-07T06:56:00.3045836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h 2025-09-07T06:56:00.3049229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\operator.h 2025-09-07T06:56:00.3052776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h 2025-09-07T06:56:00.3062078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\cuda\cuda.h 2025-09-07T06:56:00.3068969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\builtin_functions.h 2025-09-07T06:56:00.3073534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h 2025-09-07T06:56:00.3076139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\concrete_module_type.h 2025-09-07T06:56:00.3085366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h 2025-09-07T06:56:00.3088219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\edit_distance.h 2025-09-07T06:56:00.3091954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\error_report.h 2025-09-07T06:56:00.3095355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\exit_transforms.h 2025-09-07T06:56:00.3098965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\function_schema_parser.h 2025-09-07T06:56:00.3102849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h 2025-09-07T06:56:00.3106372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\ir_emitter.h 2025-09-07T06:56:00.3110227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\lexer.h 2025-09-07T06:56:00.3114058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\mini_environment.h 2025-09-07T06:56:00.3118524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\name_mangler.h 2025-09-07T06:56:00.3122578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser.h 2025-09-07T06:56:00.3126798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser_constants.h 2025-09-07T06:56:00.3130330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parse_string_literal.h 2025-09-07T06:56:00.3133918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\resolver.h 2025-09-07T06:56:00.3137388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_matching.h 2025-09-07T06:56:00.3140904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_type_parser.h 2025-09-07T06:56:00.3144807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\script_type_parser.h 2025-09-07T06:56:00.3152314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_range.h 2025-09-07T06:56:00.3156144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_ref.h 2025-09-07T06:56:00.3159732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\strtod.h 2025-09-07T06:56:00.3163201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\sugared_value.h 2025-09-07T06:56:00.3167043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tracer.h 2025-09-07T06:56:00.3170304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree.h 2025-09-07T06:56:00.3173594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree_views.h 2025-09-07T06:56:00.3177339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\versioned_symbols.h 2025-09-07T06:56:00.3187386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\alias_analysis.h 2025-09-07T06:56:00.3191040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\attributes.h 2025-09-07T06:56:00.3194487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\constants.h 2025-09-07T06:56:00.3198410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_node_list.h 2025-09-07T06:56:00.3322327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_utils.h 2025-09-07T06:56:00.3327686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir.h 2025-09-07T06:56:00.3333366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\irparser.h 2025-09-07T06:56:00.3338587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir_views.h 2025-09-07T06:56:00.3344324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\named_value.h 2025-09-07T06:56:00.3349621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\node_hashing.h 2025-09-07T06:56:00.3354711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\scope.h 2025-09-07T06:56:00.3359788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\subgraph_matcher.h 2025-09-07T06:56:00.3366520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\type_hashing.h 2025-09-07T06:56:00.3378316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\code.h 2025-09-07T06:56:00.3382483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\debug_info.h 2025-09-07T06:56:00.3386571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\file_format.h 2025-09-07T06:56:00.3390143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h 2025-09-07T06:56:00.3398172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\frame.h 2025-09-07T06:56:00.3401571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\function.h 2025-09-07T06:56:00.3404886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import.h 2025-09-07T06:56:00.3408314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_data.h 2025-09-07T06:56:00.3412355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_export_common.h 2025-09-07T06:56:00.3417060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\interpreter.h 2025-09-07T06:56:00.3419261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\method.h 2025-09-07T06:56:00.3423083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\module.h 2025-09-07T06:56:00.3426525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\observer.h 2025-09-07T06:56:00.3429995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_bytecode.h 2025-09-07T06:56:00.3433463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_operators.h 2025-09-07T06:56:00.3436967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h 2025-09-07T06:56:00.3456942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\profiler_edge.h 2025-09-07T06:56:00.3460536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h 2025-09-07T06:56:00.3464225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\quantization.h 2025-09-07T06:56:00.3467811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h 2025-09-07T06:56:00.3471313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\type_parser.h 2025-09-07T06:56:00.3474835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h 2025-09-07T06:56:00.3487306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport.h 2025-09-07T06:56:00.3489773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h 2025-09-07T06:56:00.3493540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h 2025-09-07T06:56:00.3500631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h 2025-09-07T06:56:00.3508457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h 2025-09-07T06:56:00.3511942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h 2025-09-07T06:56:00.3515421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h 2025-09-07T06:56:00.3523092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h 2025-09-07T06:56:00.3526372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h 2025-09-07T06:56:00.3530438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h 2025-09-07T06:56:00.3533932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h 2025-09-07T06:56:00.3541222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h 2025-09-07T06:56:00.3544975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\context.h 2025-09-07T06:56:00.3548157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\registry.h 2025-09-07T06:56:00.3555599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\export_data.h 2025-09-07T06:56:00.3559151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\random.h 2025-09-07T06:56:00.3562556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\sequential.h 2025-09-07T06:56:00.3570793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h 2025-09-07T06:56:00.3578729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h 2025-09-07T06:56:00.3582366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h 2025-09-07T06:56:00.3585910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\utils.h 2025-09-07T06:56:00.3589389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\version_map.h 2025-09-07T06:56:00.3601186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\add_if_then_else.h 2025-09-07T06:56:00.3604634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\annotate_warns.h 2025-09-07T06:56:00.3608213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\autocast.h 2025-09-07T06:56:00.3611943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\bailout_graph.h 2025-09-07T06:56:00.3618965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\batch_mm.h 2025-09-07T06:56:00.3622507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize.h 2025-09-07T06:56:00.3626210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h 2025-09-07T06:56:00.3630005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\check_strict_fusion.h 2025-09-07T06:56:00.3633655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_profiling.h 2025-09-07T06:56:00.3637164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_undefinedness.h 2025-09-07T06:56:00.3641041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h 2025-09-07T06:56:00.3644525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\concat_opt.h 2025-09-07T06:56:00.3648080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_pooling.h 2025-09-07T06:56:00.3652019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_propagation.h 2025-09-07T06:56:00.3656031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h 2025-09-07T06:56:00.3659526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_functional_graphs.h 2025-09-07T06:56:00.3663022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dead_code_elimination.h 2025-09-07T06:56:00.3667814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\decompose_ops.h 2025-09-07T06:56:00.3670467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\device_type_analysis.h 2025-09-07T06:56:00.3679334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dtype_analysis.h 2025-09-07T06:56:00.3682364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h 2025-09-07T06:56:00.3685995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\erase_number_types.h 2025-09-07T06:56:00.3690873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h 2025-09-07T06:56:00.3693670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_conv_bn.h 2025-09-07T06:56:00.3697304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_linear_bn.h 2025-09-07T06:56:00.3700779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\freeze_module.h 2025-09-07T06:56:00.3704771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h 2025-09-07T06:56:00.3708399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h 2025-09-07T06:56:00.3716509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h 2025-09-07T06:56:00.3720502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h 2025-09-07T06:56:00.3725090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h 2025-09-07T06:56:00.3727850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h 2025-09-07T06:56:00.3731662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h 2025-09-07T06:56:00.3735250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_linear.h 2025-09-07T06:56:00.3738968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_relu.h 2025-09-07T06:56:00.3742642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_fuser.h 2025-09-07T06:56:00.3746274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h 2025-09-07T06:56:00.3754395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\guard_elimination.h 2025-09-07T06:56:00.3757955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h 2025-09-07T06:56:00.3761474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inliner.h 2025-09-07T06:56:00.3765631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h 2025-09-07T06:56:00.3768656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_forked_closures.h 2025-09-07T06:56:00.3772217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_fork_wait.h 2025-09-07T06:56:00.3775666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inplace_check.h 2025-09-07T06:56:00.3779300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\insert_guards.h 2025-09-07T06:56:00.3782948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\integer_value_refinement.h 2025-09-07T06:56:00.3790572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lift_closures.h 2025-09-07T06:56:00.3794371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\liveness.h 2025-09-07T06:56:00.3797529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\loop_unrolling.h 2025-09-07T06:56:00.3801865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_grad_of.h 2025-09-07T06:56:00.3805816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_graph.h 2025-09-07T06:56:00.3809008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_tuples.h 2025-09-07T06:56:00.3813137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\metal_rewrite.h 2025-09-07T06:56:00.3817350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h 2025-09-07T06:56:00.3820315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h 2025-09-07T06:56:00.3823881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\normalize_ops.h 2025-09-07T06:56:00.3835144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h 2025-09-07T06:56:00.3838655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx.h 2025-09-07T06:56:00.3842565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\pass_manager.h 2025-09-07T06:56:00.3846494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole.h 2025-09-07T06:56:00.3849946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h 2025-09-07T06:56:00.3854560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h 2025-09-07T06:56:00.3858287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h 2025-09-07T06:56:00.3862992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h 2025-09-07T06:56:00.3865807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\prepack_folding.h 2025-09-07T06:56:00.3869772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\refine_tuple_types.h 2025-09-07T06:56:00.3873231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_dropout.h 2025-09-07T06:56:00.3881331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_exceptions.h 2025-09-07T06:56:00.3884854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_expands.h 2025-09-07T06:56:00.3888655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h 2025-09-07T06:56:00.3892355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_mutation.h 2025-09-07T06:56:00.3896053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h 2025-09-07T06:56:00.3900304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h 2025-09-07T06:56:00.3904117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h 2025-09-07T06:56:00.3907825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\restore_mutation.h 2025-09-07T06:56:00.3911580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\shape_analysis.h 2025-09-07T06:56:00.3919793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h 2025-09-07T06:56:00.3923278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h 2025-09-07T06:56:00.3927277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h 2025-09-07T06:56:00.3930968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h 2025-09-07T06:56:00.3934704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h 2025-09-07T06:56:00.3938563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h 2025-09-07T06:56:00.3942290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h 2025-09-07T06:56:00.3946075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\value_refinement_utils.h 2025-09-07T06:56:00.3949838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\variadic_ops.h 2025-09-07T06:56:00.3953458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h 2025-09-07T06:56:00.3957008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h 2025-09-07T06:56:00.3965009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h 2025-09-07T06:56:00.3973940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h 2025-09-07T06:56:00.3977289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h 2025-09-07T06:56:00.3980737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_map.h 2025-09-07T06:56:00.3985643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h 2025-09-07T06:56:00.3992853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h 2025-09-07T06:56:00.3996411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h 2025-09-07T06:56:00.4000316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h 2025-09-07T06:56:00.4003962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h 2025-09-07T06:56:00.4007626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h 2025-09-07T06:56:00.4010895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\helper.h 2025-09-07T06:56:00.4014408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h 2025-09-07T06:56:00.4018315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\naming.h 2025-09-07T06:56:00.4021752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h 2025-09-07T06:56:00.4025245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\peephole.h 2025-09-07T06:56:00.4028694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h 2025-09-07T06:56:00.4032377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h 2025-09-07T06:56:00.4035889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h 2025-09-07T06:56:00.4039290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h 2025-09-07T06:56:00.4042736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h 2025-09-07T06:56:00.4046392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h 2025-09-07T06:56:00.4058568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h 2025-09-07T06:56:00.4062413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h 2025-09-07T06:56:00.4065943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h 2025-09-07T06:56:00.4073428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h 2025-09-07T06:56:00.4081841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h 2025-09-07T06:56:00.4085317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\finalize.h 2025-09-07T06:56:00.4088718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h 2025-09-07T06:56:00.4092184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\helper.h 2025-09-07T06:56:00.4099880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h 2025-09-07T06:56:00.4103334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h 2025-09-07T06:56:00.4107379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h 2025-09-07T06:56:00.4111165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h 2025-09-07T06:56:00.4114774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h 2025-09-07T06:56:00.4122530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h 2025-09-07T06:56:00.4125999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\memory_dag.h 2025-09-07T06:56:00.4129424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h 2025-09-07T06:56:00.4136793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\op_registry.h 2025-09-07T06:56:00.4140529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h 2025-09-07T06:56:00.4148645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\init.h 2025-09-07T06:56:00.4153770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\module_python.h 2025-09-07T06:56:00.4156608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind.h 2025-09-07T06:56:00.4159900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind_utils.h 2025-09-07T06:56:00.4163925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_arg_flatten.h 2025-09-07T06:56:00.4171472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_custom_class.h 2025-09-07T06:56:00.4174887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_dict.h 2025-09-07T06:56:00.4178527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ir.h 2025-09-07T06:56:00.4182101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ivalue.h 2025-09-07T06:56:00.4185674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_list.h 2025-09-07T06:56:00.4189136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_sugared_value.h 2025-09-07T06:56:00.4192730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tracer.h 2025-09-07T06:56:00.4196276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tree_views.h 2025-09-07T06:56:00.4199752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\script_init.h 2025-09-07T06:56:00.4203218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h 2025-09-07T06:56:00.4206811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h 2025-09-07T06:56:00.4214871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\argument_spec.h 2025-09-07T06:56:00.4219165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\autodiff.h 2025-09-07T06:56:00.4221866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h 2025-09-07T06:56:00.4225519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\custom_operator.h 2025-09-07T06:56:00.4233041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry.h 2025-09-07T06:56:00.4236881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h 2025-09-07T06:56:00.4240289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\exception_message.h 2025-09-07T06:56:00.4243970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor.h 2025-09-07T06:56:00.4248284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h 2025-09-07T06:56:00.4250914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_iterator.h 2025-09-07T06:56:00.4254456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\instruction.h 2025-09-07T06:56:00.4257892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter.h 2025-09-07T06:56:00.4261386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_exception.h 2025-09-07T06:56:00.4265533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_trace.h 2025-09-07T06:56:00.4268466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\logging.h 2025-09-07T06:56:00.4272114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator.h 2025-09-07T06:56:00.4276713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator_options.h 2025-09-07T06:56:00.4279916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\print_handler.h 2025-09-07T06:56:00.4283855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h 2025-09-07T06:56:00.4288327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_record.h 2025-09-07T06:56:00.4295338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\register_ops_utils.h 2025-09-07T06:56:00.4300063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\script_profile.h 2025-09-07T06:56:00.4303585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h 2025-09-07T06:56:00.4307869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\shape_function_registry.h 2025-09-07T06:56:00.4311698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h 2025-09-07T06:56:00.4315224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h 2025-09-07T06:56:00.4319348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_script.h 2025-09-07T06:56:00.4323595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h 2025-09-07T06:56:00.4327257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h 2025-09-07T06:56:00.4341287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\vararg_functions.h 2025-09-07T06:56:00.4342022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h 2025-09-07T06:56:00.4346792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h 2025-09-07T06:56:00.4350289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h 2025-09-07T06:56:00.4354153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\frame.h 2025-09-07T06:56:00.4357873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h 2025-09-07T06:56:00.4370433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\fusion.h 2025-09-07T06:56:00.4373770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\impl.h 2025-09-07T06:56:00.4377418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\init.h 2025-09-07T06:56:00.4381004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\memory_planner.h 2025-09-07T06:56:00.4384511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ops.h 2025-09-07T06:56:00.4387712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\passes.h 2025-09-07T06:56:00.4397059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h 2025-09-07T06:56:00.4400613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h 2025-09-07T06:56:00.4404199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\static_method.h 2025-09-07T06:56:00.4407745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h 2025-09-07T06:56:00.4417285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h 2025-09-07T06:56:00.4421048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export.h 2025-09-07T06:56:00.4424727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export_bytecode.h 2025-09-07T06:56:00.4432544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h 2025-09-07T06:56:00.4436234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h 2025-09-07T06:56:00.4439650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import.h 2025-09-07T06:56:00.4444094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_constants.h 2025-09-07T06:56:00.4447733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_functions.h 2025-09-07T06:56:00.4451508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_helpers.h 2025-09-07T06:56:00.4455078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_read.h 2025-09-07T06:56:00.4458727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_source.h 2025-09-07T06:56:00.4462882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h 2025-09-07T06:56:00.4467721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\onnx.h 2025-09-07T06:56:00.4471087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickle.h 2025-09-07T06:56:00.4474626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler.h 2025-09-07T06:56:00.4478118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler_helper.h 2025-09-07T06:56:00.4481714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\python_print.h 2025-09-07T06:56:00.4486160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization.h 2025-09-07T06:56:00.4489966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h 2025-09-07T06:56:00.4493664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\storage_context.h 2025-09-07T06:56:00.4501203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h 2025-09-07T06:56:00.4504789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\unpickler.h 2025-09-07T06:56:00.4513336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\analysis.h 2025-09-07T06:56:00.4531821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h 2025-09-07T06:56:00.4535369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h 2025-09-07T06:56:00.4539009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h 2025-09-07T06:56:00.4546304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\codegen.h 2025-09-07T06:56:00.4549717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h 2025-09-07T06:56:00.4553282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h 2025-09-07T06:56:00.4557018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h 2025-09-07T06:56:00.4560528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h 2025-09-07T06:56:00.4564007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\eval.h 2025-09-07T06:56:00.4567521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\exceptions.h 2025-09-07T06:56:00.4571188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\expr.h 2025-09-07T06:56:00.4574632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions.h 2025-09-07T06:56:00.4578211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h 2025-09-07T06:56:00.4582073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h 2025-09-07T06:56:00.4585631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h 2025-09-07T06:56:00.4589160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h 2025-09-07T06:56:00.4592652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\half_support.h 2025-09-07T06:56:00.4596084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h 2025-09-07T06:56:00.4599975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h 2025-09-07T06:56:00.4603206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir.h 2025-09-07T06:56:00.4611205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h 2025-09-07T06:56:00.4614703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h 2025-09-07T06:56:00.4618209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h 2025-09-07T06:56:00.4621703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h 2025-09-07T06:56:00.4625308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h 2025-09-07T06:56:00.4628839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h 2025-09-07T06:56:00.4632426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\kernel.h 2025-09-07T06:56:00.4635741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h 2025-09-07T06:56:00.4640926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h 2025-09-07T06:56:00.4644557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest.h 2025-09-07T06:56:00.4648038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h 2025-09-07T06:56:00.4656936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\lowerings.h 2025-09-07T06:56:00.4660467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h 2025-09-07T06:56:00.4664119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\reduction.h 2025-09-07T06:56:00.4667732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\registerizer.h 2025-09-07T06:56:00.4671210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\stmt.h 2025-09-07T06:56:00.4674651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensor.h 2025-09-07T06:56:00.4678266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h 2025-09-07T06:56:00.4681722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\types.h 2025-09-07T06:56:00.4685116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h 2025-09-07T06:56:00.4688702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h 2025-09-07T06:56:00.4696771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h 2025-09-07T06:56:00.4700211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h 2025-09-07T06:56:00.4703547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h 2025-09-07T06:56:00.4707052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h 2025-09-07T06:56:00.4710545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h 2025-09-07T06:56:00.4717947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h 2025-09-07T06:56:00.4721465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h 2025-09-07T06:56:00.4724937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h 2025-09-07T06:56:00.4729437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h 2025-09-07T06:56:00.4738597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\catch_utils.hpp 2025-09-07T06:56:00.4740856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\file_check.h 2025-09-07T06:56:00.4744368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\hooks_for_testing.h 2025-09-07T06:56:00.4756173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_data.h 2025-09-07T06:56:00.4759637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_device.h 2025-09-07T06:56:00.4763060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_interface.h 2025-09-07T06:56:00.4766446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\lowering_context.h 2025-09-07T06:56:00.4777937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\cache.h 2025-09-07T06:56:00.4781298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\config.h 2025-09-07T06:56:00.4784714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\debug_util.h 2025-09-07T06:56:00.4788278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\dynamic_ir.h 2025-09-07T06:56:00.4791603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\hash.h 2025-09-07T06:56:00.4798474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\helpers.h 2025-09-07T06:56:00.4801844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir.h 2025-09-07T06:56:00.4805150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_builder.h 2025-09-07T06:56:00.4808563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_dump_util.h 2025-09-07T06:56:00.4812215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_metadata.h 2025-09-07T06:56:00.4815824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_util.h 2025-09-07T06:56:00.4819213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h 2025-09-07T06:56:00.4823201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\metrics.h 2025-09-07T06:56:00.4826681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\multi_wait.h 2025-09-07T06:56:00.4830284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\permutation_util.h 2025-09-07T06:56:00.4833684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape.h 2025-09-07T06:56:00.4837055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape_inference.h 2025-09-07T06:56:00.4840605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor.h 2025-09-07T06:56:00.4844063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_impl.h 2025-09-07T06:56:00.4847875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_util.h 2025-09-07T06:56:00.4851160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\thread_pool.h 2025-09-07T06:56:00.4854599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\trie.h 2025-09-07T06:56:00.4858119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\unique.h 2025-09-07T06:56:00.4861580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\util.h 2025-09-07T06:56:00.4872377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h 2025-09-07T06:56:00.4879701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h 2025-09-07T06:56:00.4883108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\utils.h 2025-09-07T06:56:00.4890836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyIr.h 2025-09-07T06:56:00.4895870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h 2025-09-07T06:56:00.4899726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h 2025-09-07T06:56:00.4906880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\init.h 2025-09-07T06:56:00.4910206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\python_util.h 2025-09-07T06:56:00.4921598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\config.h 2025-09-07T06:56:00.4925383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h 2025-09-07T06:56:00.4929089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h 2025-09-07T06:56:00.4932778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h 2025-09-07T06:56:00.4940236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h 2025-09-07T06:56:00.4944036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h 2025-09-07T06:56:00.4947648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h 2025-09-07T06:56:00.4951207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h 2025-09-07T06:56:00.4954594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node.h 2025-09-07T06:56:00.4958146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h 2025-09-07T06:56:00.4965196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h 2025-09-07T06:56:00.4968736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h 2025-09-07T06:56:00.4972726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h 2025-09-07T06:56:00.4980926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\counters.h 2025-09-07T06:56:00.4984277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\events.h 2025-09-07T06:56:00.4987831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\python_init.h 2025-09-07T06:56:00.4994935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mps\Module.h 2025-09-07T06:56:00.5002488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\Module.h 2025-09-07T06:56:00.5009350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h 2025-09-07T06:56:00.5016736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\multiprocessing\init.h 2025-09-07T06:56:00.5024388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\back_compat.h 2025-09-07T06:56:00.5032666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\init.h 2025-09-07T06:56:00.5032903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\onnx.h 2025-09-07T06:56:00.5038865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\api.h 2025-09-07T06:56:00.5042302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\collection.h 2025-09-07T06:56:00.5046246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\combined_traceback.h 2025-09-07T06:56:00.5050574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\containers.h 2025-09-07T06:56:00.5061434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\data_flow.h 2025-09-07T06:56:00.5065115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\events.h 2025-09-07T06:56:00.5068988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_client_interface.h 2025-09-07T06:56:00.5072461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_shim.h 2025-09-07T06:56:00.5075891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf-inl.h 2025-09-07T06:56:00.5079237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf.h 2025-09-07T06:56:00.5082710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\util.h 2025-09-07T06:56:00.5090421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\observer.h 2025-09-07T06:56:00.5093862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\python_tracer.h 2025-09-07T06:56:00.5097428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\vulkan.h 2025-09-07T06:56:00.5104769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\combined_traceback.h 2025-09-07T06:56:00.5108687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\init.h 2025-09-07T06:56:00.5112182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\pybind.h 2025-09-07T06:56:00.5119522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h 2025-09-07T06:56:00.5123129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\itt_observer.h 2025-09-07T06:56:00.5126857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h 2025-09-07T06:56:00.5134623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h 2025-09-07T06:56:00.5142288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\stubs\base.h 2025-09-07T06:56:00.5149468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\action.h 2025-09-07T06:56:00.5152916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\communicate.h 2025-09-07T06:56:00.5156407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\debug_info.h 2025-09-07T06:56:00.5160070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h 2025-09-07T06:56:00.5167777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h 2025-09-07T06:56:00.5171198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h 2025-09-07T06:56:00.5174694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h 2025-09-07T06:56:00.5178240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fde.h 2025-09-07T06:56:00.5181712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\lexer.h 2025-09-07T06:56:00.5185174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\line_number_program.h 2025-09-07T06:56:00.5188764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\mem_file.h 2025-09-07T06:56:00.5192095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\range_table.h 2025-09-07T06:56:00.5195798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\sections.h 2025-09-07T06:56:00.5199234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind.h 2025-09-07T06:56:00.5202471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwinder.h 2025-09-07T06:56:00.5205875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind_error.h 2025-09-07T06:56:00.5218697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\accelerator.h 2025-09-07T06:56:00.5222409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\library.h 2025-09-07T06:56:00.5225780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\ops.h 2025-09-07T06:56:00.5229163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\stableivalue_conversions.h 2025-09-07T06:56:00.5232472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor.h 2025-09-07T06:56:00.5239735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor_inl.h 2025-09-07T06:56:00.5243246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor_struct.h 2025-09-07T06:56:00.5250676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\tensor\python_tensor.h 2025-09-07T06:56:00.5258494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\byte_order.h 2025-09-07T06:56:00.5262004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cpp_stacktraces.h 2025-09-07T06:56:00.5265579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cuda_enabled.h 2025-09-07T06:56:00.5268969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\device_lazy_init.h 2025-09-07T06:56:00.5276695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\disable_torch_function.h 2025-09-07T06:56:00.5280270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\generated_serialization_types.h 2025-09-07T06:56:00.5284276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\init.h 2025-09-07T06:56:00.5287670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\invalid_arguments.h 2025-09-07T06:56:00.5291088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\nested.h 2025-09-07T06:56:00.5294432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\numpy_stub.h 2025-09-07T06:56:00.5297817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\object_ptr.h 2025-09-07T06:56:00.5301728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\out_types.h 2025-09-07T06:56:00.5305294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pybind.h 2025-09-07T06:56:00.5309004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pycfunction_helpers.h 2025-09-07T06:56:00.5312472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pyobject_preservation.h 2025-09-07T06:56:00.5315941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pythoncapi_compat.h 2025-09-07T06:56:00.5319604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_arg_parser.h 2025-09-07T06:56:00.5323238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_compat.h 2025-09-07T06:56:00.5326774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_dispatch.h 2025-09-07T06:56:00.5330274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_numbers.h 2025-09-07T06:56:00.5338751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_raii.h 2025-09-07T06:56:00.5350261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_scalars.h 2025-09-07T06:56:00.5350592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_strings.h 2025-09-07T06:56:00.5353931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_stub.h 2025-09-07T06:56:00.5357483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_symnode.h 2025-09-07T06:56:00.5360946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_torch_function_mode.h 2025-09-07T06:56:00.5364478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_tuples.h 2025-09-07T06:56:00.5368044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\schema_info.h 2025-09-07T06:56:00.5372634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\six.h 2025-09-07T06:56:00.5376125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\structseq.h 2025-09-07T06:56:00.5384224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_apply.h 2025-09-07T06:56:00.5387917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_dtypes.h 2025-09-07T06:56:00.5391800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_flatten.h 2025-09-07T06:56:00.5395374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_layouts.h 2025-09-07T06:56:00.5399325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_list.h 2025-09-07T06:56:00.5403003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_memoryformats.h 2025-09-07T06:56:00.5406546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_new.h 2025-09-07T06:56:00.5410168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_numpy.h 2025-09-07T06:56:00.5413905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_qschemes.h 2025-09-07T06:56:00.5420824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_types.h 2025-09-07T06:56:00.5424521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark-inl.h 2025-09-07T06:56:00.5428057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark.h 2025-09-07T06:56:00.5431467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\torch_dispatch_mode.h 2025-09-07T06:56:00.5435002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\variadic.h 2025-09-07T06:56:00.5438320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\verbose.h 2025-09-07T06:56:00.5447295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Event.h 2025-09-07T06:56:00.5450867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Module.h 2025-09-07T06:56:00.5454076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Stream.h 2025-09-07T06:56:00.5467076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\core\ScalarType.h 2025-09-07T06:56:00.5477492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\intrinsics.h 2025-09-07T06:56:00.5480946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec_half.h 2025-09-07T06:56:00.5488271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h 2025-09-07T06:56:00.5491934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h 2025-09-07T06:56:00.5499814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\cmake_macros.h 2025-09-07T06:56:00.5503166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Export.h 2025-09-07T06:56:00.5506590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Macros.h 2025-09-07T06:56:00.5514268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\BFloat16.h 2025-09-07T06:56:00.5517662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bits.h 2025-09-07T06:56:00.5520911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bit_cast.h 2025-09-07T06:56:00.5524330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\complex.h 2025-09-07T06:56:00.5527875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Exception.h 2025-09-07T06:56:00.5531326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h 2025-09-07T06:56:00.5539169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fn.h 2025-09-07T06:56:00.5542701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fnuz.h 2025-09-07T06:56:00.5562541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2.h 2025-09-07T06:56:00.5566060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2fnuz.h 2025-09-07T06:56:00.5569575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e8m0fnu.h 2025-09-07T06:56:00.5573156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_fnuz_cvt.h 2025-09-07T06:56:00.5576967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\floating_point_utils.h 2025-09-07T06:56:00.5581157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Half.h 2025-09-07T06:56:00.5584548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint32.h 2025-09-07T06:56:00.5587891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint8.h 2025-09-07T06:56:00.5591371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint2x4.h 2025-09-07T06:56:00.5595121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint4x2.h 2025-09-07T06:56:00.5598550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint8.h 2025-09-07T06:56:00.5601932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\shim_utils.h 2025-09-07T06:56:00.5605595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\TypeSafeSignMath.h 2025-09-07T06:56:00.5616976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\annotations.py 2025-09-07T06:56:00.5620384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\frontend.py 2025-09-07T06:56:00.5623958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\generate_bytecode.py 2025-09-07T06:56:00.5627573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\quantized.py 2025-09-07T06:56:00.5635034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\supported_ops.py 2025-09-07T06:56:00.5638410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\unsupported_tensor_ops.py 2025-09-07T06:56:00.5641813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_async.py 2025-09-07T06:56:00.5645510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_await.py 2025-09-07T06:56:00.5648735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_builtins.py 2025-09-07T06:56:00.5652264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_check.py 2025-09-07T06:56:00.5655660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_dataclass_impls.py 2025-09-07T06:56:00.5658984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decompositions.py 2025-09-07T06:56:00.5663469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decomposition_utils.py 2025-09-07T06:56:00.5666964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_freeze.py 2025-09-07T06:56:00.5670268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_fuser.py 2025-09-07T06:56:00.5673476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_ir_utils.py 2025-09-07T06:56:00.5676861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_logging.py 2025-09-07T06:56:00.5680155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_monkeytype_config.py 2025-09-07T06:56:00.5683720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_pickle.py 2025-09-07T06:56:00.5687135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_recursive.py 2025-09-07T06:56:00.5690821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.py 2025-09-07T06:56:00.5694733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.pyi 2025-09-07T06:56:00.5698353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_serialization.py 2025-09-07T06:56:00.5701588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_shape_functions.py 2025-09-07T06:56:00.5709763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_state.py 2025-09-07T06:56:00.5713083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_trace.py 2025-09-07T06:56:00.5716997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__init__.py 2025-09-07T06:56:00.5723781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__init__.py 2025-09-07T06:56:00.5730605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:00.5738159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\_property_propagation.py 2025-09-07T06:56:00.5741494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__init__.py 2025-09-07T06:56:00.5747791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\_property_propagation.cpython-39.pyc 2025-09-07T06:56:00.5751508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:00.5759936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\annotations.cpython-39.pyc 2025-09-07T06:56:00.5763857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\frontend.cpython-39.pyc 2025-09-07T06:56:00.5767480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\generate_bytecode.cpython-39.pyc 2025-09-07T06:56:00.5774980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\quantized.cpython-39.pyc 2025-09-07T06:56:00.5778930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\supported_ops.cpython-39.pyc 2025-09-07T06:56:00.5782642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\unsupported_tensor_ops.cpython-39.pyc 2025-09-07T06:56:00.5786189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_async.cpython-39.pyc 2025-09-07T06:56:00.5789664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_await.cpython-39.pyc 2025-09-07T06:56:00.5793280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_builtins.cpython-39.pyc 2025-09-07T06:56:00.5796651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_check.cpython-39.pyc 2025-09-07T06:56:00.5800172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_dataclass_impls.cpython-39.pyc 2025-09-07T06:56:00.5804038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decompositions.cpython-39.pyc 2025-09-07T06:56:00.5807813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decomposition_utils.cpython-39.pyc 2025-09-07T06:56:00.5811315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_freeze.cpython-39.pyc 2025-09-07T06:56:00.5814776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_fuser.cpython-39.pyc 2025-09-07T06:56:00.5818396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_ir_utils.cpython-39.pyc 2025-09-07T06:56:00.5821957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_logging.cpython-39.pyc 2025-09-07T06:56:00.5830647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_monkeytype_config.cpython-39.pyc 2025-09-07T06:56:00.5834092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_pickle.cpython-39.pyc 2025-09-07T06:56:00.5837831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_recursive.cpython-39.pyc 2025-09-07T06:56:00.5841531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_script.cpython-39.pyc 2025-09-07T06:56:00.5845286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_serialization.cpython-39.pyc 2025-09-07T06:56:00.5848893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_shape_functions.cpython-39.pyc 2025-09-07T06:56:00.5852424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_state.cpython-39.pyc 2025-09-07T06:56:00.5855962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_trace.cpython-39.pyc 2025-09-07T06:56:00.5863695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:00.5872345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.dll 2025-09-07T06:56:00.5877309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.lib 2025-09-07T06:56:00.5881233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.dll 2025-09-07T06:56:00.5890582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.lib 2025-09-07T06:56:00.5894098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.dll 2025-09-07T06:56:00.5903081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.lib 2025-09-07T06:56:00.5910236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\cpuinfo.lib 2025-09-07T06:56:00.5914122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\dnnl.lib 2025-09-07T06:56:00.9339707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\fmt.lib 2025-09-07T06:56:00.9349562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.dll 2025-09-07T06:56:00.9354220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.lib 2025-09-07T06:56:00.9358246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\kineto.lib 2025-09-07T06:56:00.9469921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libittnotify.lib 2025-09-07T06:56:00.9475083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf-lite.lib 2025-09-07T06:56:00.9504798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf.lib 2025-09-07T06:56:00.9689345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotoc.lib 2025-09-07T06:56:00.9886048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\microkernels-prod.lib 2025-09-07T06:56:00.9903195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\pthreadpool.lib 2025-09-07T06:56:00.9907824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.dll 2025-09-07T06:56:00.9911420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.lib 2025-09-07T06:56:00.9915903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\sleef.lib 2025-09-07T06:56:00.9966149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.dll 2025-09-07T06:56:00.9970024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.lib 2025-09-07T06:56:00.9973649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.dll 2025-09-07T06:56:00.9985684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.lib 2025-09-07T06:56:00.9989382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.dll 2025-09-07T06:56:01.1302508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.lib 2025-09-07T06:56:01.1453444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_global_deps.dll 2025-09-07T06:56:01.1457107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.dll 2025-09-07T06:56:01.1545968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.lib 2025-09-07T06:56:01.1550878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\XNNPACK.lib 2025-09-07T06:56:01.1567401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\_C.lib 2025-09-07T06:56:01.1575353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\alloc_info.h 2025-09-07T06:56:01.1578773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\err.h 2025-09-07T06:56:01.1582359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\libshm.h 2025-09-07T06:56:01.1585978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\socket.h 2025-09-07T06:56:01.1593139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm_windows\libshm.h 2025-09-07T06:56:01.1601607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__init__.py 2025-09-07T06:56:01.1608914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.1617270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_docs.py 2025-09-07T06:56:01.1621179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_ops.py 2025-09-07T06:56:01.1625406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__init__.py 2025-09-07T06:56:01.1632426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\binary.py 2025-09-07T06:56:01.1635786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\core.py 2025-09-07T06:56:01.1639226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\creation.py 2025-09-07T06:56:01.1642623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\passthrough.py 2025-09-07T06:56:01.1646341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\reductions.py 2025-09-07T06:56:01.1655090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\unary.py 2025-09-07T06:56:01.1657751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\_ops_refs.py 2025-09-07T06:56:01.1661512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__init__.py 2025-09-07T06:56:01.1668831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\binary.cpython-39.pyc 2025-09-07T06:56:01.1673244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\core.cpython-39.pyc 2025-09-07T06:56:01.1677605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\creation.cpython-39.pyc 2025-09-07T06:56:01.1685172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\passthrough.cpython-39.pyc 2025-09-07T06:56:01.1689760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\reductions.cpython-39.pyc 2025-09-07T06:56:01.1693241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\unary.cpython-39.pyc 2025-09-07T06:56:01.1697338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\_ops_refs.cpython-39.pyc 2025-09-07T06:56:01.1701502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.1715700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_docs.cpython-39.pyc 2025-09-07T06:56:01.1720273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_ops.cpython-39.pyc 2025-09-07T06:56:01.1724478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.1736622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__init__.py 2025-09-07T06:56:01.1743365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.1750852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\event.py 2025-09-07T06:56:01.1754247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\profiler.py 2025-09-07T06:56:01.1757577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__init__.py 2025-09-07T06:56:01.1765069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\event.cpython-39.pyc 2025-09-07T06:56:01.1768220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\profiler.cpython-39.pyc 2025-09-07T06:56:01.1771694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.1783294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\memory.py 2025-09-07T06:56:01.1787308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\_utils.py 2025-09-07T06:56:01.1790074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__init__.py 2025-09-07T06:56:01.1797023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\memory.cpython-39.pyc 2025-09-07T06:56:01.1801117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:56:01.1805316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.1816944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\pool.py 2025-09-07T06:56:01.1819566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\queue.py 2025-09-07T06:56:01.1823628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\reductions.py 2025-09-07T06:56:01.1828283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\spawn.py 2025-09-07T06:56:01.1830725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\_atfork.py 2025-09-07T06:56:01.1837809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__init__.py 2025-09-07T06:56:01.1845766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\pool.cpython-39.pyc 2025-09-07T06:56:01.1849096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\queue.cpython-39.pyc 2025-09-07T06:56:01.1853268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\reductions.cpython-39.pyc 2025-09-07T06:56:01.1860999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\spawn.cpython-39.pyc 2025-09-07T06:56:01.1865067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\_atfork.cpython-39.pyc 2025-09-07T06:56:01.1869804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.1877856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__init__.py 2025-09-07T06:56:01.1884726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_int.py 2025-09-07T06:56:01.1889317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_tensor.py 2025-09-07T06:56:01.1891837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\ops.py 2025-09-07T06:56:01.1895892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\sdpa.py 2025-09-07T06:56:01.1903257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__init__.py 2025-09-07T06:56:01.1909620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_int.cpython-39.pyc 2025-09-07T06:56:01.1913313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_tensor.cpython-39.pyc 2025-09-07T06:56:01.1916890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\ops.cpython-39.pyc 2025-09-07T06:56:01.1924524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\sdpa.cpython-39.pyc 2025-09-07T06:56:01.1928574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.1936798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.1945303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\common_types.py 2025-09-07T06:56:01.1948663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\cpp.py 2025-09-07T06:56:01.1952062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.py 2025-09-07T06:56:01.1957022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.pyi 2025-09-07T06:56:01.1964353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\grad.py 2025-09-07T06:56:01.1967704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\init.py 2025-09-07T06:56:01.1971639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.py 2025-09-07T06:56:01.1976342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.pyi 2025-09-07T06:56:01.1978856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\_reduction.py 2025-09-07T06:56:01.1982272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__init__.py 2025-09-07T06:56:01.1989196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\bias.py 2025-09-07T06:56:01.1992629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\flex_attention.py 2025-09-07T06:56:01.1996724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\_utils.py 2025-09-07T06:56:01.2000124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__init__.py 2025-09-07T06:56:01.2010889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\_paged_attention.py 2025-09-07T06:56:01.2014176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__init__.py 2025-09-07T06:56:01.2021101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\_paged_attention.cpython-39.pyc 2025-09-07T06:56:01.2024637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2032788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\bias.cpython-39.pyc 2025-09-07T06:56:01.2036340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\flex_attention.cpython-39.pyc 2025-09-07T06:56:01.2039898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:56:01.2047980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2055389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\thnn.py 2025-09-07T06:56:01.2058698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__init__.py 2025-09-07T06:56:01.2064871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\thnn.cpython-39.pyc 2025-09-07T06:56:01.2068479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2091536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__init__.py 2025-09-07T06:56:01.2092068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\fused.py 2025-09-07T06:56:01.2092611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__init__.py 2025-09-07T06:56:01.2095138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-09-07T06:56:01.2099303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2107164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__init__.py 2025-09-07T06:56:01.2113828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\conv_fused.py 2025-09-07T06:56:01.2117313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_fused.py 2025-09-07T06:56:01.2121465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_relu.py 2025-09-07T06:56:01.2124128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__init__.py 2025-09-07T06:56:01.2136219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-09-07T06:56:01.2139850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-09-07T06:56:01.2144410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-09-07T06:56:01.2152090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2159855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2168618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__init__.py 2025-09-07T06:56:01.2175950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__init__.py 2025-09-07T06:56:01.2196414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-09-07T06:56:01.2199779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-09-07T06:56:01.2207630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-09-07T06:56:01.2211579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2220208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2227989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\bn_relu.py 2025-09-07T06:56:01.2231493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\conv_relu.py 2025-09-07T06:56:01.2234855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\linear_relu.py 2025-09-07T06:56:01.2238387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__init__.py 2025-09-07T06:56:01.2249535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-09-07T06:56:01.2253770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-09-07T06:56:01.2257542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-09-07T06:56:01.2266189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2273915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2285838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2294222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\activation.py 2025-09-07T06:56:01.2298099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\adaptive.py 2025-09-07T06:56:01.2302043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\batchnorm.py 2025-09-07T06:56:01.2305697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\channelshuffle.py 2025-09-07T06:56:01.2313417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\container.py 2025-09-07T06:56:01.2317151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\conv.py 2025-09-07T06:56:01.2320628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\distance.py 2025-09-07T06:56:01.2324392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\dropout.py 2025-09-07T06:56:01.2328621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\flatten.py 2025-09-07T06:56:01.2331160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\fold.py 2025-09-07T06:56:01.2334856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\instancenorm.py 2025-09-07T06:56:01.2338313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\lazy.py 2025-09-07T06:56:01.2341993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\linear.py 2025-09-07T06:56:01.2345961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\loss.py 2025-09-07T06:56:01.2349461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\module.py 2025-09-07T06:56:01.2353957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\normalization.py 2025-09-07T06:56:01.2357601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\padding.py 2025-09-07T06:56:01.2361114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pixelshuffle.py 2025-09-07T06:56:01.2365792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pooling.py 2025-09-07T06:56:01.2369609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\rnn.py 2025-09-07T06:56:01.2374024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\sparse.py 2025-09-07T06:56:01.2377375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\transformer.py 2025-09-07T06:56:01.2381092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\upsampling.py 2025-09-07T06:56:01.2386040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\utils.py 2025-09-07T06:56:01.2388601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\_functions.py 2025-09-07T06:56:01.2392237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__init__.py 2025-09-07T06:56:01.2400110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\activation.cpython-39.pyc 2025-09-07T06:56:01.2405161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\adaptive.cpython-39.pyc 2025-09-07T06:56:01.2408694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\batchnorm.cpython-39.pyc 2025-09-07T06:56:01.2416197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\channelshuffle.cpython-39.pyc 2025-09-07T06:56:01.2420954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\container.cpython-39.pyc 2025-09-07T06:56:01.2423699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\conv.cpython-39.pyc 2025-09-07T06:56:01.2428199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\distance.cpython-39.pyc 2025-09-07T06:56:01.2432372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\dropout.cpython-39.pyc 2025-09-07T06:56:01.2435439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\flatten.cpython-39.pyc 2025-09-07T06:56:01.2439824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\fold.cpython-39.pyc 2025-09-07T06:56:01.2443849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\instancenorm.cpython-39.pyc 2025-09-07T06:56:01.2447054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\lazy.cpython-39.pyc 2025-09-07T06:56:01.2450573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:56:01.2454105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\loss.cpython-39.pyc 2025-09-07T06:56:01.2475792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\module.cpython-39.pyc 2025-09-07T06:56:01.2476472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\normalization.cpython-39.pyc 2025-09-07T06:56:01.2477161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\padding.cpython-39.pyc 2025-09-07T06:56:01.2477861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pixelshuffle.cpython-39.pyc 2025-09-07T06:56:01.2479633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pooling.cpython-39.pyc 2025-09-07T06:56:01.2483701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:56:01.2487686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\sparse.cpython-39.pyc 2025-09-07T06:56:01.2491345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\transformer.cpython-39.pyc 2025-09-07T06:56:01.2495099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\upsampling.cpython-39.pyc 2025-09-07T06:56:01.2499876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:01.2502560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\_functions.cpython-39.pyc 2025-09-07T06:56:01.2506101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2518127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\comm.py 2025-09-07T06:56:01.2521471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\data_parallel.py 2025-09-07T06:56:01.2524885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\distributed.py 2025-09-07T06:56:01.2529243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\parallel_apply.py 2025-09-07T06:56:01.2536575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\replicate.py 2025-09-07T06:56:01.2539940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\scatter_gather.py 2025-09-07T06:56:01.2543424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\_functions.py 2025-09-07T06:56:01.2547244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__init__.py 2025-09-07T06:56:01.2554339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\comm.cpython-39.pyc 2025-09-07T06:56:01.2558387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\data_parallel.cpython-39.pyc 2025-09-07T06:56:01.2562000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\distributed.cpython-39.pyc 2025-09-07T06:56:01.2570648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\parallel_apply.cpython-39.pyc 2025-09-07T06:56:01.2574220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\replicate.cpython-39.pyc 2025-09-07T06:56:01.2577852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\scatter_gather.cpython-39.pyc 2025-09-07T06:56:01.2581379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\_functions.cpython-39.pyc 2025-09-07T06:56:01.2584889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2593888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__init__.py 2025-09-07T06:56:01.2600871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__init__.py 2025-09-07T06:56:01.2607523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\linear.py 2025-09-07T06:56:01.2610818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__init__.py 2025-09-07T06:56:01.2617872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:56:01.2621326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2628708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2636330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\conv.py 2025-09-07T06:56:01.2639843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\embedding_ops.py 2025-09-07T06:56:01.2643137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\linear.py 2025-09-07T06:56:01.2646310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__init__.py 2025-09-07T06:56:01.2657486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-09-07T06:56:01.2661073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-09-07T06:56:01.2664559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:56:01.2672015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2679806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2688272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__init__.py 2025-09-07T06:56:01.2694855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\activation.py 2025-09-07T06:56:01.2698185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\rnn.py 2025-09-07T06:56:01.2701441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__init__.py 2025-09-07T06:56:01.2708296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-09-07T06:56:01.2712402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:56:01.2716264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2727581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2736189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\functional.py 2025-09-07T06:56:01.2739822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__init__.py 2025-09-07T06:56:01.2747290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__init__.py 2025-09-07T06:56:01.2755097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\conv.py 2025-09-07T06:56:01.2757780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\linear.py 2025-09-07T06:56:01.2761290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\rnn.py 2025-09-07T06:56:01.2764596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__init__.py 2025-09-07T06:56:01.2772694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-09-07T06:56:01.2776081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:56:01.2780206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:56:01.2788190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2796082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2804014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\activation.py 2025-09-07T06:56:01.2807459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\batchnorm.py 2025-09-07T06:56:01.2810737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\conv.py 2025-09-07T06:56:01.2814409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\dropout.py 2025-09-07T06:56:01.2818098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\embedding_ops.py 2025-09-07T06:56:01.2825829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\functional_modules.py 2025-09-07T06:56:01.2829419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\linear.py 2025-09-07T06:56:01.2832816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\normalization.py 2025-09-07T06:56:01.2836429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\rnn.py 2025-09-07T06:56:01.2839717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\utils.py 2025-09-07T06:56:01.2843027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__init__.py 2025-09-07T06:56:01.2850376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-09-07T06:56:01.2854285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-09-07T06:56:01.2857852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-09-07T06:56:01.2866962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-09-07T06:56:01.2870890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-09-07T06:56:01.2874289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-09-07T06:56:01.2877995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:56:01.2881882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-09-07T06:56:01.2885455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:56:01.2889513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:01.2893363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.2906072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__init__.py 2025-09-07T06:56:01.2912859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\conv.py 2025-09-07T06:56:01.2916370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\linear.py 2025-09-07T06:56:01.2921961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\rnn.py 2025-09-07T06:56:01.2924795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\sparse.py 2025-09-07T06:56:01.2928261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\utils.py 2025-09-07T06:56:01.2931474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__init__.py 2025-09-07T06:56:01.2943132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\conv.cpython-39.pyc 2025-09-07T06:56:01.2946944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\linear.cpython-39.pyc 2025-09-07T06:56:01.2950881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:56:01.2958318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\sparse.cpython-39.pyc 2025-09-07T06:56:01.2970476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:01.2971310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.6981410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.7007957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-09-07T06:56:01.7008706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.7009302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\clip_grad.py 2025-09-07T06:56:01.7009816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\convert_parameters.py 2025-09-07T06:56:01.7011871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\fusion.py 2025-09-07T06:56:01.7015653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\init.py 2025-09-07T06:56:01.7019140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\memory_format.py 2025-09-07T06:56:01.7034181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrizations.py 2025-09-07T06:56:01.7037806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrize.py 2025-09-07T06:56:01.7041646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\prune.py 2025-09-07T06:56:01.7045472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\rnn.py 2025-09-07T06:56:01.7049032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\spectral_norm.py 2025-09-07T06:56:01.7052511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\stateless.py 2025-09-07T06:56:01.7056221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\weight_norm.py 2025-09-07T06:56:01.7059727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_deprecation_utils.py 2025-09-07T06:56:01.7063415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_named_member_accessor.py 2025-09-07T06:56:01.7066991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_per_sample_grad.py 2025-09-07T06:56:01.7070531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__init__.py 2025-09-07T06:56:01.7077904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_expanded_weights.py 2025-09-07T06:56:01.7081401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_utils.py 2025-09-07T06:56:01.7085084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py 2025-09-07T06:56:01.7098914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_impl.py 2025-09-07T06:56:01.7102441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_utils.py 2025-09-07T06:56:01.7106324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py 2025-09-07T06:56:01.7109890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py 2025-09-07T06:56:01.7113553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py 2025-09-07T06:56:01.7116912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\linear_expanded_weights.py 2025-09-07T06:56:01.7121133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__init__.py 2025-09-07T06:56:01.7129971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_expanded_weights.cpython-39.pyc 2025-09-07T06:56:01.7134212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_utils.cpython-39.pyc 2025-09-07T06:56:01.7138465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\embedding_expanded_weights.cpython-39.pyc 2025-09-07T06:56:01.7153986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_impl.cpython-39.pyc 2025-09-07T06:56:01.7157541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_utils.cpython-39.pyc 2025-09-07T06:56:01.7161280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\group_norm_expanded_weights.cpython-39.pyc 2025-09-07T06:56:01.7164944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\instance_norm_expanded_weights.cpython-39.pyc 2025-09-07T06:56:01.7168518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\layer_norm_expanded_weights.cpython-39.pyc 2025-09-07T06:56:01.7172057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\linear_expanded_weights.cpython-39.pyc 2025-09-07T06:56:01.7175562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.7183843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\clip_grad.cpython-39.pyc 2025-09-07T06:56:01.7187897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\convert_parameters.cpython-39.pyc 2025-09-07T06:56:01.7191429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\fusion.cpython-39.pyc 2025-09-07T06:56:01.7205330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\init.cpython-39.pyc 2025-09-07T06:56:01.7208834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\memory_format.cpython-39.pyc 2025-09-07T06:56:01.7212278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrizations.cpython-39.pyc 2025-09-07T06:56:01.7215777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrize.cpython-39.pyc 2025-09-07T06:56:01.7219457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\prune.cpython-39.pyc 2025-09-07T06:56:01.7223063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\rnn.cpython-39.pyc 2025-09-07T06:56:01.7226697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\spectral_norm.cpython-39.pyc 2025-09-07T06:56:01.7230132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\stateless.cpython-39.pyc 2025-09-07T06:56:01.7233687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\weight_norm.cpython-39.pyc 2025-09-07T06:56:01.7237204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_deprecation_utils.cpython-39.pyc 2025-09-07T06:56:01.7240732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_named_member_accessor.cpython-39.pyc 2025-09-07T06:56:01.7244354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_per_sample_grad.cpython-39.pyc 2025-09-07T06:56:01.7247815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.7255975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\common_types.cpython-39.pyc 2025-09-07T06:56:01.7260631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\cpp.cpython-39.pyc 2025-09-07T06:56:01.7264333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\functional.cpython-39.pyc 2025-09-07T06:56:01.7280259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\grad.cpython-39.pyc 2025-09-07T06:56:01.7284110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\init.cpython-39.pyc 2025-09-07T06:56:01.7287772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\parameter.cpython-39.pyc 2025-09-07T06:56:01.7291281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\_reduction.cpython-39.pyc 2025-09-07T06:56:01.7329298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.7337731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\binding.py 2025-09-07T06:56:01.7341000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__init__.py 2025-09-07T06:56:01.7348188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\binding.cpython-39.pyc 2025-09-07T06:56:01.7351050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.7359691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\errors.py 2025-09-07T06:56:01.7362980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\operators.py 2025-09-07T06:56:01.7366925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_helper.py 2025-09-07T06:56:01.7371149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset10.py 2025-09-07T06:56:01.7379363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset11.py 2025-09-07T06:56:01.7383061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset12.py 2025-09-07T06:56:01.7386411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset13.py 2025-09-07T06:56:01.7390236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset14.py 2025-09-07T06:56:01.7393782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset15.py 2025-09-07T06:56:01.7397255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset16.py 2025-09-07T06:56:01.7400706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset17.py 2025-09-07T06:56:01.7404120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset18.py 2025-09-07T06:56:01.7407675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset19.py 2025-09-07T06:56:01.7411490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset20.py 2025-09-07T06:56:01.7415716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset7.py 2025-09-07T06:56:01.7419272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset8.py 2025-09-07T06:56:01.7422935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset9.py 2025-09-07T06:56:01.7426539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\utils.py 2025-09-07T06:56:01.7429899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\verification.py 2025-09-07T06:56:01.7434363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_constants.py 2025-09-07T06:56:01.7453039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_flags.py 2025-09-07T06:56:01.7458304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__init__.py 2025-09-07T06:56:01.7467557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_dtype_mappings.py 2025-09-07T06:56:01.7472337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_impl.py 2025-09-07T06:56:01.7476971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_symbolic_impl.py 2025-09-07T06:56:01.7481581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__init__.py 2025-09-07T06:56:01.7511013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_dtype_mappings.cpython-39.pyc 2025-09-07T06:56:01.7516316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_impl.cpython-39.pyc 2025-09-07T06:56:01.7521525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_symbolic_impl.cpython-39.pyc 2025-09-07T06:56:01.7536584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:01.7545412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_lazy_import.py 2025-09-07T06:56:01.7548864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__init__.py 2025-09-07T06:56:01.7554864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_analysis.py 2025-09-07T06:56:01.7558278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_building.py 2025-09-07T06:56:01.7563525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_capture_strategies.py 2025-09-07T06:56:01.7567210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_compat.py 2025-09-07T06:56:01.7693266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_constants.py 2025-09-07T06:56:01.7698386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_core.py 2025-09-07T06:56:01.7702581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_decomp.py 2025-09-07T06:56:01.7706702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dispatching.py 2025-09-07T06:56:01.7710237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dynamic_shapes.py 2025-09-07T06:56:01.7713929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_errors.py 2025-09-07T06:56:01.7718003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_flags.py 2025-09-07T06:56:01.7721372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_fx_passes.py 2025-09-07T06:56:01.7724923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_ir_passes.py 2025-09-07T06:56:01.7728555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_isolated.py 2025-09-07T06:56:01.7734234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_onnx_program.py 2025-09-07T06:56:01.7737255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_registration.py 2025-09-07T06:56:01.7740881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_reporting.py 2025-09-07T06:56:01.7745570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_schemas.py 2025-09-07T06:56:01.7748042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_tensors.py 2025-09-07T06:56:01.7751779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_testing.py 2025-09-07T06:56:01.7755428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_type_casting.py 2025-09-07T06:56:01.7759149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_verification.py 2025-09-07T06:56:01.7763216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__init__.py 2025-09-07T06:56:02.7935998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py 2025-09-07T06:56:02.7941225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py 2025-09-07T06:56:02.7946611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__init__.py 2025-09-07T06:56:02.8086420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\core.py 2025-09-07T06:56:02.8089910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\hop.py 2025-09-07T06:56:02.8094045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\nn.py 2025-09-07T06:56:02.8097706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py 2025-09-07T06:56:02.8101047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symops.py 2025-09-07T06:56:02.8105066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py 2025-09-07T06:56:02.8236379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\core.cpython-39.pyc 2025-09-07T06:56:02.8239986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\hop.cpython-39.pyc 2025-09-07T06:56:02.8244459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\nn.cpython-39.pyc 2025-09-07T06:56:02.8373291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symbolic.cpython-39.pyc 2025-09-07T06:56:02.8377028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symops.cpython-39.pyc 2025-09-07T06:56:02.8380661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:02.8390049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_tensor_typing.cpython-39.pyc 2025-09-07T06:56:02.8393921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_torchlib_registry.cpython-39.pyc 2025-09-07T06:56:02.8397662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:02.8578207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_analysis.cpython-39.pyc 2025-09-07T06:56:02.8581992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_building.cpython-39.pyc 2025-09-07T06:56:02.8585714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_capture_strategies.cpython-39.pyc 2025-09-07T06:56:02.8712873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_compat.cpython-39.pyc 2025-09-07T06:56:02.8716446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_constants.cpython-39.pyc 2025-09-07T06:56:02.8720112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_core.cpython-39.pyc 2025-09-07T06:56:02.8723786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_decomp.cpython-39.pyc 2025-09-07T06:56:02.8727414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dispatching.cpython-39.pyc 2025-09-07T06:56:02.8730903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dynamic_shapes.cpython-39.pyc 2025-09-07T06:56:02.8734497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_errors.cpython-39.pyc 2025-09-07T06:56:02.8738090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_flags.cpython-39.pyc 2025-09-07T06:56:02.8742255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_fx_passes.cpython-39.pyc 2025-09-07T06:56:02.8746039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_ir_passes.cpython-39.pyc 2025-09-07T06:56:02.8749582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_isolated.cpython-39.pyc 2025-09-07T06:56:02.8753442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_onnx_program.cpython-39.pyc 2025-09-07T06:56:02.8757042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_registration.cpython-39.pyc 2025-09-07T06:56:02.8760504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_reporting.cpython-39.pyc 2025-09-07T06:56:03.3918273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_schemas.cpython-39.pyc 2025-09-07T06:56:03.3922144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_tensors.cpython-39.pyc 2025-09-07T06:56:03.3926214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_testing.cpython-39.pyc 2025-09-07T06:56:03.3929950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_type_casting.cpython-39.pyc 2025-09-07T06:56:03.3933474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_verification.cpython-39.pyc 2025-09-07T06:56:03.3937165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:03.3946520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\type_utils.py 2025-09-07T06:56:03.3949859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\_pass.py 2025-09-07T06:56:03.3953181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__init__.py 2025-09-07T06:56:03.3959663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\type_promotion.py 2025-09-07T06:56:03.3963651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__init__.py 2025-09-07T06:56:03.3971976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\type_promotion.cpython-39.pyc 2025-09-07T06:56:03.3976484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:03.4069152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\type_utils.cpython-39.pyc 2025-09-07T06:56:03.4072857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\_pass.cpython-39.pyc 2025-09-07T06:56:03.4076782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:03.9520211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\jit_utils.py 2025-09-07T06:56:03.9523752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\onnx_proto_utils.py 2025-09-07T06:56:03.9527341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\registration.py 2025-09-07T06:56:03.9618040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_helper.py 2025-09-07T06:56:03.9622030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset10.py 2025-09-07T06:56:03.9625605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset11.py 2025-09-07T06:56:03.9629612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset12.py 2025-09-07T06:56:03.9633218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset13.py 2025-09-07T06:56:03.9637085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset14.py 2025-09-07T06:56:03.9640882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset15.py 2025-09-07T06:56:03.9644956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset16.py 2025-09-07T06:56:03.9648914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset17.py 2025-09-07T06:56:03.9652451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset18.py 2025-09-07T06:56:03.9655961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset19.py 2025-09-07T06:56:03.9659709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset20.py 2025-09-07T06:56:03.9663279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset7.py 2025-09-07T06:56:03.9667092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset8.py 2025-09-07T06:56:03.9670830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\symbolic_opset9.py 2025-09-07T06:56:03.9676165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\utils.py 2025-09-07T06:56:03.9686615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\verification.py 2025-09-07T06:56:03.9690112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\_experimental.py 2025-09-07T06:56:03.9693670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\_globals.py 2025-09-07T06:56:03.9697282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\_type_utils.py 2025-09-07T06:56:03.9700835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__init__.py 2025-09-07T06:56:03.9709777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\jit_utils.cpython-39.pyc 2025-09-07T06:56:03.9713403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\onnx_proto_utils.cpython-39.pyc 2025-09-07T06:56:03.9717138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\registration.cpython-39.pyc 2025-09-07T06:56:03.9733618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_helper.cpython-39.pyc 2025-09-07T06:56:03.9737646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset10.cpython-39.pyc 2025-09-07T06:56:03.9742255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset11.cpython-39.pyc 2025-09-07T06:56:03.9746178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset12.cpython-39.pyc 2025-09-07T06:56:03.9749814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset13.cpython-39.pyc 2025-09-07T06:56:03.9753515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset14.cpython-39.pyc 2025-09-07T06:56:03.9757130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset15.cpython-39.pyc 2025-09-07T06:56:03.9760776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset16.cpython-39.pyc 2025-09-07T06:56:03.9764439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset17.cpython-39.pyc 2025-09-07T06:56:03.9768204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset18.cpython-39.pyc 2025-09-07T06:56:03.9771782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset19.cpython-39.pyc 2025-09-07T06:56:03.9775489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset20.cpython-39.pyc 2025-09-07T06:56:03.9779294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset7.cpython-39.pyc 2025-09-07T06:56:03.9795514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset8.cpython-39.pyc 2025-09-07T06:56:03.9799124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\symbolic_opset9.cpython-39.pyc 2025-09-07T06:56:03.9805424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:03.9809628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\verification.cpython-39.pyc 2025-09-07T06:56:03.9813380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\_experimental.cpython-39.pyc 2025-09-07T06:56:03.9817019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\_globals.cpython-39.pyc 2025-09-07T06:56:03.9820749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\_type_utils.cpython-39.pyc 2025-09-07T06:56:03.9824606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\torchscript_exporter\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:03.9836020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_lazy_import.cpython-39.pyc 2025-09-07T06:56:03.9840875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:03.9853006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\errors.cpython-39.pyc 2025-09-07T06:56:03.9856809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\operators.cpython-39.pyc 2025-09-07T06:56:03.9861534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_helper.cpython-39.pyc 2025-09-07T06:56:03.9877271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset10.cpython-39.pyc 2025-09-07T06:56:03.9881154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset11.cpython-39.pyc 2025-09-07T06:56:03.9884832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset12.cpython-39.pyc 2025-09-07T06:56:03.9888705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset13.cpython-39.pyc 2025-09-07T06:56:03.9892576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset14.cpython-39.pyc 2025-09-07T06:56:03.9896190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset15.cpython-39.pyc 2025-09-07T06:56:03.9899611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset16.cpython-39.pyc 2025-09-07T06:56:03.9903210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset17.cpython-39.pyc 2025-09-07T06:56:03.9907421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset18.cpython-39.pyc 2025-09-07T06:56:03.9910948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset19.cpython-39.pyc 2025-09-07T06:56:03.9915096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset20.cpython-39.pyc 2025-09-07T06:56:03.9918273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset7.cpython-39.pyc 2025-09-07T06:56:03.9922025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset8.cpython-39.pyc 2025-09-07T06:56:03.9938863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset9.cpython-39.pyc 2025-09-07T06:56:03.9941602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:03.9945493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\verification.cpython-39.pyc 2025-09-07T06:56:03.9949303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_constants.cpython-39.pyc 2025-09-07T06:56:03.9952929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_flags.cpython-39.pyc 2025-09-07T06:56:03.9956672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:03.9967573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adadelta.py 2025-09-07T06:56:03.9971141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adagrad.py 2025-09-07T06:56:03.9974577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adam.py 2025-09-07T06:56:03.9978238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamax.py 2025-09-07T06:56:03.9981633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamw.py 2025-09-07T06:56:03.9985324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\asgd.py 2025-09-07T06:56:03.9988650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lbfgs.py 2025-09-07T06:56:04.0004406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lr_scheduler.py 2025-09-07T06:56:04.0008388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\nadam.py 2025-09-07T06:56:04.0011845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\optimizer.py 2025-09-07T06:56:04.0015613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\radam.py 2025-09-07T06:56:04.0019084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rmsprop.py 2025-09-07T06:56:04.0022591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rprop.py 2025-09-07T06:56:04.0026453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sgd.py 2025-09-07T06:56:04.0029888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sparse_adam.py 2025-09-07T06:56:04.0033491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\swa_utils.py 2025-09-07T06:56:04.0037011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_adafactor.py 2025-09-07T06:56:04.0040431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_functional.py 2025-09-07T06:56:04.0044244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_muon.py 2025-09-07T06:56:04.0048142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__init__.py 2025-09-07T06:56:04.0055286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.py 2025-09-07T06:56:04.0059322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.pyi 2025-09-07T06:56:04.0065966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.0073941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adadelta.cpython-39.pyc 2025-09-07T06:56:04.0077516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adagrad.cpython-39.pyc 2025-09-07T06:56:04.0080992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adam.cpython-39.pyc 2025-09-07T06:56:04.0097717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamax.cpython-39.pyc 2025-09-07T06:56:04.0102744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamw.cpython-39.pyc 2025-09-07T06:56:04.0107728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\asgd.cpython-39.pyc 2025-09-07T06:56:04.0112707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lbfgs.cpython-39.pyc 2025-09-07T06:56:04.0116317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lr_scheduler.cpython-39.pyc 2025-09-07T06:56:04.0125140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\nadam.cpython-39.pyc 2025-09-07T06:56:04.0126553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\optimizer.cpython-39.pyc 2025-09-07T06:56:04.0131294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\radam.cpython-39.pyc 2025-09-07T06:56:04.0136157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rmsprop.cpython-39.pyc 2025-09-07T06:56:04.0139935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rprop.cpython-39.pyc 2025-09-07T06:56:04.0144813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sgd.cpython-39.pyc 2025-09-07T06:56:04.0149677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sparse_adam.cpython-39.pyc 2025-09-07T06:56:04.0154868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\swa_utils.cpython-39.pyc 2025-09-07T06:56:04.0158486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_adafactor.cpython-39.pyc 2025-09-07T06:56:04.0175404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_functional.cpython-39.pyc 2025-09-07T06:56:04.0179116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_muon.cpython-39.pyc 2025-09-07T06:56:04.0182787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.0191899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\file_structure_representation.py 2025-09-07T06:56:04.0195536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\find_file_dependencies.py 2025-09-07T06:56:04.0198955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\glob_group.py 2025-09-07T06:56:04.0213994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\importer.py 2025-09-07T06:56:04.0217367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_exporter.py 2025-09-07T06:56:04.0256749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_importer.py 2025-09-07T06:56:04.0260435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_digraph.py 2025-09-07T06:56:04.0263854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_directory_reader.py 2025-09-07T06:56:04.0267439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_importlib.py 2025-09-07T06:56:04.0270857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mangling.py 2025-09-07T06:56:04.0274137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mock.py 2025-09-07T06:56:04.0277554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_pickler.py 2025-09-07T06:56:04.0280936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_unpickler.py 2025-09-07T06:56:04.0284363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_stdlib.py 2025-09-07T06:56:04.0287624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__init__.py 2025-09-07T06:56:04.0294581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\find_first_use_of_broken_modules.py 2025-09-07T06:56:04.0298129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\is_from_package.py 2025-09-07T06:56:04.0301415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\trace_dependencies.py 2025-09-07T06:56:04.0309486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__init__.py 2025-09-07T06:56:04.0316528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\find_first_use_of_broken_modules.cpython-39.pyc 2025-09-07T06:56:04.0320050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\is_from_package.cpython-39.pyc 2025-09-07T06:56:04.0323730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\trace_dependencies.cpython-39.pyc 2025-09-07T06:56:04.0338778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.0347015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\file_structure_representation.cpython-39.pyc 2025-09-07T06:56:04.0350509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\find_file_dependencies.cpython-39.pyc 2025-09-07T06:56:04.0354006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\glob_group.cpython-39.pyc 2025-09-07T06:56:04.0368940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\importer.cpython-39.pyc 2025-09-07T06:56:04.0372482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_exporter.cpython-39.pyc 2025-09-07T06:56:04.0376174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_importer.cpython-39.pyc 2025-09-07T06:56:04.0379888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_digraph.cpython-39.pyc 2025-09-07T06:56:04.0383425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_directory_reader.cpython-39.pyc 2025-09-07T06:56:04.0387055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_importlib.cpython-39.pyc 2025-09-07T06:56:04.0391057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mangling.cpython-39.pyc 2025-09-07T06:56:04.0394755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mock.cpython-39.pyc 2025-09-07T06:56:04.0398604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_pickler.cpython-39.pyc 2025-09-07T06:56:04.0402215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_unpickler.cpython-39.pyc 2025-09-07T06:56:04.0405837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_stdlib.cpython-39.pyc 2025-09-07T06:56:04.0409288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.0417879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\itt.py 2025-09-07T06:56:04.0421208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\profiler.py 2025-09-07T06:56:04.0425386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\python_tracer.py 2025-09-07T06:56:04.0428741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_memory_profiler.py 2025-09-07T06:56:04.0432295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_pattern_matcher.py 2025-09-07T06:56:04.0446791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_utils.py 2025-09-07T06:56:04.0450151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__init__.py 2025-09-07T06:56:04.0457338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\itt.cpython-39.pyc 2025-09-07T06:56:04.0460837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\profiler.cpython-39.pyc 2025-09-07T06:56:04.0465335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\python_tracer.cpython-39.pyc 2025-09-07T06:56:04.0481417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_memory_profiler.cpython-39.pyc 2025-09-07T06:56:04.0485287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_pattern_matcher.cpython-39.pyc 2025-09-07T06:56:04.0488924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:56:04.0492823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.0501225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fake_quantize.py 2025-09-07T06:56:04.0504987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuser_method_mappings.py 2025-09-07T06:56:04.0508651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuse_modules.py 2025-09-07T06:56:04.0523197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\observer.py 2025-09-07T06:56:04.0527069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\qconfig.py 2025-09-07T06:56:04.0530653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantization_mappings.py 2025-09-07T06:56:04.0534205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize.py 2025-09-07T06:56:04.0537444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_fx.py 2025-09-07T06:56:04.0540921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_jit.py 2025-09-07T06:56:04.0544516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quant_type.py 2025-09-07T06:56:04.0548109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\stubs.py 2025-09-07T06:56:04.0551532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\utils.py 2025-09-07T06:56:04.0555378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite.py 2025-09-07T06:56:04.0558832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite_fx.py 2025-09-07T06:56:04.0562455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_quantized_conversions.py 2025-09-07T06:56:04.0565952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__init__.py 2025-09-07T06:56:04.0572865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\convert.py 2025-09-07T06:56:04.0576725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fuse.py 2025-09-07T06:56:04.0581535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fusion_patterns.py 2025-09-07T06:56:04.0586374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\graph_module.py 2025-09-07T06:56:04.0590948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\match_utils.py 2025-09-07T06:56:04.0605336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\pattern_utils.py 2025-09-07T06:56:04.0609012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\prepare.py 2025-09-07T06:56:04.0612469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_patterns.py 2025-09-07T06:56:04.0615922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_types.py 2025-09-07T06:56:04.0619357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\utils.py 2025-09-07T06:56:04.0622928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\_equalize.py 2025-09-07T06:56:04.0626841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__init__.py 2025-09-07T06:56:04.0634179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-09-07T06:56:04.0638249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-09-07T06:56:04.0642413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fusion_patterns.cpython-39.pyc 2025-09-07T06:56:04.0657332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-09-07T06:56:04.0661153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-09-07T06:56:04.0664735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-09-07T06:56:04.0668490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-09-07T06:56:04.0672098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_patterns.cpython-39.pyc 2025-09-07T06:56:04.0675805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_types.cpython-39.pyc 2025-09-07T06:56:04.0679328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.0682932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-09-07T06:56:04.0686848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.0696393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-09-07T06:56:04.0699345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-09-07T06:56:04.0703799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-09-07T06:56:04.0718158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\observer.cpython-39.pyc 2025-09-07T06:56:04.0721609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\qconfig.cpython-39.pyc 2025-09-07T06:56:04.0727207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-09-07T06:56:04.0730792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize.cpython-39.pyc 2025-09-07T06:56:04.0734510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-09-07T06:56:04.0738086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-09-07T06:56:04.0741611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quant_type.cpython-39.pyc 2025-09-07T06:56:04.0745149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\stubs.cpython-39.pyc 2025-09-07T06:56:04.0748629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.0752200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite.cpython-39.pyc 2025-09-07T06:56:04.0757366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-09-07T06:56:04.0761090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_quantized_conversions.cpython-39.pyc 2025-09-07T06:56:04.0764598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.0790953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\ATen\ATenConfig.cmake 2025-09-07T06:56:04.0798099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Config.cmake 2025-09-07T06:56:04.0801467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake 2025-09-07T06:56:04.0804842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets.cmake 2025-09-07T06:56:04.0819868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake 2025-09-07T06:56:04.0823598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDSS.cmake 2025-09-07T06:56:04.0827198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake 2025-09-07T06:56:04.0830647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake 2025-09-07T06:56:04.0837699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake 2025-09-07T06:56:04.0841135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake 2025-09-07T06:56:04.0859028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake 2025-09-07T06:56:04.0862470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake 2025-09-07T06:56:04.0866590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake 2025-09-07T06:56:04.0884076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake 2025-09-07T06:56:04.0887518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake 2025-09-07T06:56:04.0890902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake 2025-09-07T06:56:04.0905240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake 2025-09-07T06:56:04.0914265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\cuda.cmake 2025-09-07T06:56:04.0918905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\gflags.cmake 2025-09-07T06:56:04.0923110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\glog.cmake 2025-09-07T06:56:04.0927708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\LoadHIP.cmake 2025-09-07T06:56:04.0942274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkl.cmake 2025-09-07T06:56:04.0946073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkldnn.cmake 2025-09-07T06:56:04.0949601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\protobuf.cmake 2025-09-07T06:56:04.0953580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\utils.cmake 2025-09-07T06:56:04.0957167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\xpu.cmake 2025-09-07T06:56:04.0964904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfig.cmake 2025-09-07T06:56:04.0968422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfigVersion.cmake 2025-09-07T06:56:04.0977615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__init__.py 2025-09-07T06:56:04.0984404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\windows.py 2025-09-07T06:56:04.0988298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__init__.py 2025-09-07T06:56:04.0995341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\windows.cpython-39.pyc 2025-09-07T06:56:04.0998892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.1006390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.1034637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\semi_structured.py 2025-09-07T06:56:04.1038403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_conversions.py 2025-09-07T06:56:04.1042656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_ops.py 2025-09-07T06:56:04.1055574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops.py 2025-09-07T06:56:04.1059330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops_meta.py 2025-09-07T06:56:04.1066679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__init__.py 2025-09-07T06:56:04.1073892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\semi_structured.cpython-39.pyc 2025-09-07T06:56:04.1078187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_conversions.cpython-39.pyc 2025-09-07T06:56:04.1081078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_ops.cpython-39.pyc 2025-09-07T06:56:04.1095316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops.cpython-39.pyc 2025-09-07T06:56:04.1098847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops_meta.cpython-39.pyc 2025-09-07T06:56:04.1103800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.1111619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__init__.py 2025-09-07T06:56:04.1118858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.1128466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\apply_utils_test.exe 2025-09-07T06:56:04.1134392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\atest.exe 2025-09-07T06:56:04.1139917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\backend_fallback_test.exe 2025-09-07T06:56:04.1145407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\basic.exe 2025-09-07T06:56:04.1181116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\broadcast_test.exe 2025-09-07T06:56:04.1187999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_accumulate_test.exe 2025-09-07T06:56:04.1196460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_AllocatorConfig_test.exe 2025-09-07T06:56:04.1203637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ArrayRef_test.exe 2025-09-07T06:56:04.1208514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bfloat16_test.exe 2025-09-07T06:56:04.1215392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Bitset_test.exe 2025-09-07T06:56:04.1220183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bit_cast_test.exe 2025-09-07T06:56:04.1225377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_CompileTimeFunctionPointer_test.exe 2025-09-07T06:56:04.1232764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_math_test.exe 2025-09-07T06:56:04.1237996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_test.exe 2025-09-07T06:56:04.1243140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ConstexprCrc_test.exe 2025-09-07T06:56:04.1248728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_cow_test.exe 2025-09-07T06:56:04.1253876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeadlockDetection_test.exe 2025-09-07T06:56:04.1258751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeviceGuard_test.exe 2025-09-07T06:56:04.1275881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Device_test.exe 2025-09-07T06:56:04.1281148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DispatchKeySet_test.exe 2025-09-07T06:56:04.1286534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Enumerate_test.exe 2025-09-07T06:56:04.1291620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_error_test.exe 2025-09-07T06:56:04.1296799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_exception_test.exe 2025-09-07T06:56:04.1302289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_flags_test.exe 2025-09-07T06:56:04.1307231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_generic_math_test.exe 2025-09-07T06:56:04.1312336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Half_test.exe 2025-09-07T06:56:04.1317946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineDeviceGuard_test.exe 2025-09-07T06:56:04.1340051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineStreamGuard_test.exe 2025-09-07T06:56:04.1340991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_IntrusiveList_test.exe 2025-09-07T06:56:04.1348145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_benchmark.exe 2025-09-07T06:56:04.1352826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_test.exe 2025-09-07T06:56:04.1362945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_irange_test.exe 2025-09-07T06:56:04.1367785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_lazy_test.exe 2025-09-07T06:56:04.1372844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_LeftRight_test.exe 2025-09-07T06:56:04.1378375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_logging_test.exe 2025-09-07T06:56:04.1393830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Metaprogramming_test.exe 2025-09-07T06:56:04.1398773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_NetworkFlow_test.exe 2025-09-07T06:56:04.1404205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_optional_test.exe 2025-09-07T06:56:04.1410107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ordered_preserving_dict_test.exe 2025-09-07T06:56:04.1415351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_registry_test.exe 2025-09-07T06:56:04.1420315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Scalar_test.exe 2025-09-07T06:56:04.1425674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Semaphore_test.exe 2025-09-07T06:56:04.1430587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SizesAndStrides_test.exe 2025-09-07T06:56:04.1436417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_small_vector_test.exe 2025-09-07T06:56:04.1455715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ssize_test.exe 2025-09-07T06:56:04.1461710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_StreamGuard_test.exe 2025-09-07T06:56:04.1466852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_util_test.exe 2025-09-07T06:56:04.1473493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_view_test.exe 2025-09-07T06:56:04.1478385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SymInt_test.exe 2025-09-07T06:56:04.1483512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Synchronized_test.exe 2025-09-07T06:56:04.1488772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_tempfile_test.exe 2025-09-07T06:56:04.1493821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ThreadLocal_test.exe 2025-09-07T06:56:04.1518914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_typeid_test.exe 2025-09-07T06:56:04.1524218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeIndex_test.exe 2025-09-07T06:56:04.1529227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeList_test.exe 2025-09-07T06:56:04.1535397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeTraits_test.exe 2025-09-07T06:56:04.1541173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\CppSignature_test.exe 2025-09-07T06:56:04.1546320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_allocator_test.exe 2025-09-07T06:56:04.1551697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_generator_test.exe 2025-09-07T06:56:04.1557823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_profiling_allocator_test.exe 2025-09-07T06:56:04.1563028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_rng_test.exe 2025-09-07T06:56:04.1579927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dict_test.exe 2025-09-07T06:56:04.1586029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dimname_test.exe 2025-09-07T06:56:04.1591579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\dlconvertor_test.exe 2025-09-07T06:56:04.1597053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\extension_backend_test.exe 2025-09-07T06:56:04.1603104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\half_test.exe 2025-09-07T06:56:04.1608353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\IListRef_test.exe 2025-09-07T06:56:04.1614070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\inline_container_test.exe 2025-09-07T06:56:04.1619861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\ivalue_test.exe 2025-09-07T06:56:04.1627397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\KernelFunction_test.exe 2025-09-07T06:56:04.1643797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_legacy_test.exe 2025-09-07T06:56:04.1650762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_test.exe 2025-09-07T06:56:04.1657181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_legacy_test.exe 2025-09-07T06:56:04.1664908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_test.exe 2025-09-07T06:56:04.1672538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_stackbased_test.exe 2025-09-07T06:56:04.1678124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\lazy_tensor_test.exe 2025-09-07T06:56:04.1683521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\legacy_vmap_test.exe 2025-09-07T06:56:04.1690607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\List_test.exe 2025-09-07T06:56:04.1732004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\make_boxed_from_unboxed_functor_test.exe 2025-09-07T06:56:04.1739163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\math_kernel_test.exe 2025-09-07T06:56:04.1744428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\MaybeOwned_test.exe 2025-09-07T06:56:04.1750311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_format_test.exe 2025-09-07T06:56:04.1756249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_overlapping_test.exe 2025-09-07T06:56:04.1761981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\mobile_memory_cleanup.exe 2025-09-07T06:56:04.1767227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\NamedTensor_test.exe 2025-09-07T06:56:04.1774018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\native_test.exe 2025-09-07T06:56:04.1785615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operators_test.exe 2025-09-07T06:56:04.1791135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operator_name_test.exe 2025-09-07T06:56:04.1796513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_allowlist_test.exe 2025-09-07T06:56:04.1801918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_registration_test.exe 2025-09-07T06:56:04.1818968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\packedtensoraccessor_test.exe 2025-09-07T06:56:04.1824616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\pow_test.exe 2025-09-07T06:56:04.1831157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\quantized_test.exe 2025-09-07T06:56:04.1836576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reduce_ops_test.exe 2025-09-07T06:56:04.1842123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reportMemoryUsage_test.exe 2025-09-07T06:56:04.1848060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_tensor_test.exe 2025-09-07T06:56:04.1854301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_test.exe 2025-09-07T06:56:04.1860122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\StorageUtils_test.exe 2025-09-07T06:56:04.1865680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\stride_properties_test.exe 2025-09-07T06:56:04.1871574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\tensor_iterator_test.exe 2025-09-07T06:56:04.1878348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\test_parallel.exe 2025-09-07T06:56:04.1883870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\thread_init_test.exe 2025-09-07T06:56:04.1890765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_ptr_test.exe 2025-09-07T06:56:04.1896751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_test.exe 2025-09-07T06:56:04.1914048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\undefined_tensor_test.exe 2025-09-07T06:56:04.1920133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\verify_api_visibility.exe 2025-09-07T06:56:04.1925286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\weakref_test.exe 2025-09-07T06:56:04.1930979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\wrapdim_test.exe 2025-09-07T06:56:04.1936126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\xla_tensor_test.exe 2025-09-07T06:56:04.1950929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_comparison.py 2025-09-07T06:56:04.1954787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_creation.py 2025-09-07T06:56:04.1958201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_utils.py 2025-09-07T06:56:04.1961578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__init__.py 2025-09-07T06:56:04.1980218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autocast_test_lists.py 2025-09-07T06:56:04.1983880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autograd_function_db.py 2025-09-07T06:56:04.1987745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\check_kernel_launches.py 2025-09-07T06:56:04.2001667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_cuda.py 2025-09-07T06:56:04.2005087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_device_type.py 2025-09-07T06:56:04.2008986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_distributed.py 2025-09-07T06:56:04.2013015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dist_composable.py 2025-09-07T06:56:04.2017042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dtype.py 2025-09-07T06:56:04.2020506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_fsdp.py 2025-09-07T06:56:04.2024137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_jit.py 2025-09-07T06:56:04.2027870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_methods_invocations.py 2025-09-07T06:56:04.2038101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mkldnn.py 2025-09-07T06:56:04.2041824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_modules.py 2025-09-07T06:56:04.2046507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mps.py 2025-09-07T06:56:04.2050369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_nn.py 2025-09-07T06:56:04.2055153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_optimizers.py 2025-09-07T06:56:04.2059532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_pruning.py 2025-09-07T06:56:04.2063304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantization.py 2025-09-07T06:56:04.2078055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantized.py 2025-09-07T06:56:04.2081907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_subclass.py 2025-09-07T06:56:04.2085877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_utils.py 2025-09-07T06:56:04.2090575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\composite_compliance.py 2025-09-07T06:56:04.2094141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_op_db.py 2025-09-07T06:56:04.2097836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_tensor.py 2025-09-07T06:56:04.2101346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dist_utils.py 2025-09-07T06:56:04.2104906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dynamo_test_failures.py 2025-09-07T06:56:04.2108366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module.py 2025-09-07T06:56:04.2112205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module2.py 2025-09-07T06:56:04.2115637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module3.py 2025-09-07T06:56:04.2129649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hop_db.py 2025-09-07T06:56:04.2132964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hypothesis_utils.py 2025-09-07T06:56:04.2136558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\inductor_utils.py 2025-09-07T06:56:04.2140308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_metaprogramming_utils.py 2025-09-07T06:56:04.2144007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_utils.py 2025-09-07T06:56:04.2147688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_tensor.py 2025-09-07T06:56:04.2151271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_utils.py 2025-09-07T06:56:04.2155007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\quantization_torch_package_models.py 2025-09-07T06:56:04.2158787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\static_module.py 2025-09-07T06:56:04.2162488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\subclasses.py 2025-09-07T06:56:04.2176655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\torchbind_impls.py 2025-09-07T06:56:04.2180127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\triton_utils.py 2025-09-07T06:56:04.2183966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\two_tensor.py 2025-09-07T06:56:04.2187544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__init__.py 2025-09-07T06:56:04.2194773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__init__.py 2025-09-07T06:56:04.2201852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2210130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network1.py 2025-09-07T06:56:04.2213686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network2.py 2025-09-07T06:56:04.2217007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__init__.py 2025-09-07T06:56:04.2224000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network1.cpython-39.pyc 2025-09-07T06:56:04.2227657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network2.cpython-39.pyc 2025-09-07T06:56:04.2231306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2249035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\checkpoint_utils.py 2025-09-07T06:56:04.2252775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\common_state_dict.py 2025-09-07T06:56:04.2256169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py 2025-09-07T06:56:04.2269743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_test.py 2025-09-07T06:56:04.2275112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_utils.py 2025-09-07T06:56:04.2278684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\fake_pg.py 2025-09-07T06:56:04.2282180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\multi_threaded_pg.py 2025-09-07T06:56:04.2285706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc_utils.py 2025-09-07T06:56:04.2289891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__init__.py 2025-09-07T06:56:04.2296763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__init__.py 2025-09-07T06:56:04.2302634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\remote_module_test.py 2025-09-07T06:56:04.2306232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__init__.py 2025-09-07T06:56:04.2312472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\remote_module_test.cpython-39.pyc 2025-09-07T06:56:04.2316073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2323425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2331288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_autograd_test.py 2025-09-07T06:56:04.2335265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py 2025-09-07T06:56:04.2338734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py 2025-09-07T06:56:04.2352047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py 2025-09-07T06:56:04.2355576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py 2025-09-07T06:56:04.2358937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_test.py 2025-09-07T06:56:04.2363497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py 2025-09-07T06:56:04.2367146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__init__.py 2025-09-07T06:56:04.2373218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py 2025-09-07T06:56:04.2376721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py 2025-09-07T06:56:04.2380707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__init__.py 2025-09-07T06:56:04.2397401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\parameter_server_test.cpython-39.pyc 2025-09-07T06:56:04.2401062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\reinforcement_learning_rpc_test.cpython-39.pyc 2025-09-07T06:56:04.2404706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2422371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py 2025-09-07T06:56:04.2425813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test.py 2025-09-07T06:56:04.2429365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py 2025-09-07T06:56:04.2432767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__init__.py 2025-09-07T06:56:04.2449261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\dist_autograd_test.cpython-39.pyc 2025-09-07T06:56:04.2452943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test.cpython-39.pyc 2025-09-07T06:56:04.2457056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test_faulty.cpython-39.pyc 2025-09-07T06:56:04.2470683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2479281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_autograd_test.cpython-39.pyc 2025-09-07T06:56:04.2483185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_optimizer_test.cpython-39.pyc 2025-09-07T06:56:04.2486763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_agent_rpc_test.cpython-39.pyc 2025-09-07T06:56:04.2500569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_rpc_agent_test_fixture.cpython-39.pyc 2025-09-07T06:56:04.2504128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_agent_test_fixture.cpython-39.pyc 2025-09-07T06:56:04.2508239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_test.cpython-39.pyc 2025-09-07T06:56:04.2513149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\tensorpipe_rpc_agent_test_fixture.cpython-39.pyc 2025-09-07T06:56:04.2517426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2526304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\test_common.py 2025-09-07T06:56:04.2530002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__init__.py 2025-09-07T06:56:04.2537443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py 2025-09-07T06:56:04.2541118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py 2025-09-07T06:56:04.2544753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py 2025-09-07T06:56:04.2562202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_ops_common.cpython-39.pyc 2025-09-07T06:56:04.2566052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_st_common.cpython-39.pyc 2025-09-07T06:56:04.2570367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2598364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\test_common.cpython-39.pyc 2025-09-07T06:56:04.2602279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2610286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\common_dtensor.py 2025-09-07T06:56:04.2613968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__init__.py 2025-09-07T06:56:04.2621026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\common_dtensor.cpython-39.pyc 2025-09-07T06:56:04.2625372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2633423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\checkpoint_utils.cpython-39.pyc 2025-09-07T06:56:04.2637484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\common_state_dict.cpython-39.pyc 2025-09-07T06:56:04.2641197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\ddp_under_dist_autograd_test.cpython-39.pyc 2025-09-07T06:56:04.2654236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_test.cpython-39.pyc 2025-09-07T06:56:04.2659846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_utils.cpython-39.pyc 2025-09-07T06:56:04.2663555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\fake_pg.cpython-39.pyc 2025-09-07T06:56:04.2667448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\multi_threaded_pg.cpython-39.pyc 2025-09-07T06:56:04.2671099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\rpc_utils.cpython-39.pyc 2025-09-07T06:56:04.2674748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2683192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\annotated_fn_args.py 2025-09-07T06:56:04.2690951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__init__.py 2025-09-07T06:56:04.2697249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\annotated_fn_args.cpython-39.pyc 2025-09-07T06:56:04.2701680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2709506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\core.py 2025-09-07T06:56:04.2714419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\refs.py 2025-09-07T06:56:04.2717808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\utils.py 2025-09-07T06:56:04.2720939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__init__.py 2025-09-07T06:56:04.2728987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\fft.py 2025-09-07T06:56:04.2731407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\linalg.py 2025-09-07T06:56:04.2735092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\nested.py 2025-09-07T06:56:04.2738631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\signal.py 2025-09-07T06:56:04.2742063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\sparse.py 2025-09-07T06:56:04.2745657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\special.py 2025-09-07T06:56:04.2759210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\_masked.py 2025-09-07T06:56:04.2762770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__init__.py 2025-09-07T06:56:04.2770132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\fft.cpython-39.pyc 2025-09-07T06:56:04.2773888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\linalg.cpython-39.pyc 2025-09-07T06:56:04.2777810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\nested.cpython-39.pyc 2025-09-07T06:56:04.2791988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\signal.cpython-39.pyc 2025-09-07T06:56:04.2796174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\sparse.cpython-39.pyc 2025-09-07T06:56:04.2799961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\special.cpython-39.pyc 2025-09-07T06:56:04.2803555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\_masked.cpython-39.pyc 2025-09-07T06:56:04.2807116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2825472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\core.cpython-39.pyc 2025-09-07T06:56:04.2829448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\refs.cpython-39.pyc 2025-09-07T06:56:04.2833542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.2847260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2854778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\aot_autograd.py 2025-09-07T06:56:04.2858638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\autograd_registration.py 2025-09-07T06:56:04.2861705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\fake_tensor.py 2025-09-07T06:56:04.2865457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\generate_tests.py 2025-09-07T06:56:04.2879698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\make_fx.py 2025-09-07T06:56:04.2883106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__init__.py 2025-09-07T06:56:04.2890211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\aot_autograd.cpython-39.pyc 2025-09-07T06:56:04.2893755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\autograd_registration.cpython-39.pyc 2025-09-07T06:56:04.2897122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\fake_tensor.cpython-39.pyc 2025-09-07T06:56:04.2910899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\generate_tests.cpython-39.pyc 2025-09-07T06:56:04.2914570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\make_fx.cpython-39.pyc 2025-09-07T06:56:04.2918117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2926026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\future_div.py 2025-09-07T06:56:04.2929517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\no_future_div.py 2025-09-07T06:56:04.2933262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__init__.py 2025-09-07T06:56:04.2949470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\future_div.cpython-39.pyc 2025-09-07T06:56:04.2953392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\no_future_div.cpython-39.pyc 2025-09-07T06:56:04.2957273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.2977094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autocast_test_lists.cpython-39.pyc 2025-09-07T06:56:04.2980762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autograd_function_db.cpython-39.pyc 2025-09-07T06:56:04.2984423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\check_kernel_launches.cpython-39.pyc 2025-09-07T06:56:04.2998059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_cuda.cpython-39.pyc 2025-09-07T06:56:04.3001796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_device_type.cpython-39.pyc 2025-09-07T06:56:04.3005722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_distributed.cpython-39.pyc 2025-09-07T06:56:04.3009783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dist_composable.cpython-39.pyc 2025-09-07T06:56:04.3013384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dtype.cpython-39.pyc 2025-09-07T06:56:04.3016945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_fsdp.cpython-39.pyc 2025-09-07T06:56:04.3020650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_jit.cpython-39.pyc 2025-09-07T06:56:04.3024387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_methods_invocations.cpython-39.pyc 2025-09-07T06:56:04.3031721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mkldnn.cpython-39.pyc 2025-09-07T06:56:04.3035713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_modules.cpython-39.pyc 2025-09-07T06:56:04.3039933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mps.cpython-39.pyc 2025-09-07T06:56:04.3043623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_nn.cpython-39.pyc 2025-09-07T06:56:04.3051756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_optimizers.cpython-39.pyc 2025-09-07T06:56:04.3065587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_pruning.cpython-39.pyc 2025-09-07T06:56:04.3069526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantization.cpython-39.pyc 2025-09-07T06:56:04.3073711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantized.cpython-39.pyc 2025-09-07T06:56:04.3077575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_subclass.cpython-39.pyc 2025-09-07T06:56:04.3081127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_utils.cpython-39.pyc 2025-09-07T06:56:04.3119322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\composite_compliance.cpython-39.pyc 2025-09-07T06:56:04.3122961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_op_db.cpython-39.pyc 2025-09-07T06:56:04.3126570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_tensor.cpython-39.pyc 2025-09-07T06:56:04.3130266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dist_utils.cpython-39.pyc 2025-09-07T06:56:04.3134200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dynamo_test_failures.cpython-39.pyc 2025-09-07T06:56:04.3137855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module.cpython-39.pyc 2025-09-07T06:56:04.3146334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module2.cpython-39.pyc 2025-09-07T06:56:04.3149672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module3.cpython-39.pyc 2025-09-07T06:56:04.3153344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hop_db.cpython-39.pyc 2025-09-07T06:56:04.3157160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hypothesis_utils.cpython-39.pyc 2025-09-07T06:56:04.3160757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\inductor_utils.cpython-39.pyc 2025-09-07T06:56:04.3164435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_metaprogramming_utils.cpython-39.pyc 2025-09-07T06:56:04.3168279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-09-07T06:56:04.3171909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_tensor.cpython-39.pyc 2025-09-07T06:56:04.3195741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_utils.cpython-39.pyc 2025-09-07T06:56:04.3199934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\quantization_torch_package_models.cpython-39.pyc 2025-09-07T06:56:04.3204088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\static_module.cpython-39.pyc 2025-09-07T06:56:04.3208131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\subclasses.cpython-39.pyc 2025-09-07T06:56:04.3212136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\torchbind_impls.cpython-39.pyc 2025-09-07T06:56:04.3216069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\triton_utils.cpython-39.pyc 2025-09-07T06:56:04.3220003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\two_tensor.cpython-39.pyc 2025-09-07T06:56:04.3223789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3245209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_comparison.cpython-39.pyc 2025-09-07T06:56:04.3248813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_creation.cpython-39.pyc 2025-09-07T06:56:04.3252343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:56:04.3265850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3274744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backend_registration.py 2025-09-07T06:56:04.3278397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bundled_inputs.py 2025-09-07T06:56:04.3282095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\checkpoint.py 2025-09-07T06:56:04.3285875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\collect_env.py 2025-09-07T06:56:04.3299628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_backtrace.py 2025-09-07T06:56:04.3303131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_extension.py 2025-09-07T06:56:04.3307638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\deterministic.py 2025-09-07T06:56:04.3311323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\dlpack.py 2025-09-07T06:56:04.3314623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\file_baton.py 2025-09-07T06:56:04.3318156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\flop_counter.py 2025-09-07T06:56:04.3321697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hooks.py 2025-09-07T06:56:04.3325160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mkldnn.py 2025-09-07T06:56:04.3328468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mobile_optimizer.py 2025-09-07T06:56:04.3331880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_zoo.py 2025-09-07T06:56:04.3335242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\module_tracker.py 2025-09-07T06:56:04.3338675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\show_pickle.py 2025-09-07T06:56:04.3342121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\throughput_benchmark.py 2025-09-07T06:56:04.3346669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\weak.py 2025-09-07T06:56:04.3350053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_appending_byte_serializer.py 2025-09-07T06:56:04.3353667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_backport_slots.py 2025-09-07T06:56:04.3357173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_module.py 2025-09-07T06:56:04.3370319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_typing.pyi 2025-09-07T06:56:04.3373904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_content_store.py 2025-09-07T06:56:04.3377332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_contextlib.py 2025-09-07T06:56:04.3380752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_embed_headers.py 2025-09-07T06:56:04.3384181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_extension_versioner.py 2025-09-07T06:56:04.3387716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cxx_pytree.py 2025-09-07T06:56:04.3391250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_device.py 2025-09-07T06:56:04.3394830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_dtype_abbrs.py 2025-09-07T06:56:04.3398114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_exposed_in.py 2025-09-07T06:56:04.3401426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_filelock.py 2025-09-07T06:56:04.3414494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_foreach_utils.py 2025-09-07T06:56:04.3417977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_functools.py 2025-09-07T06:56:04.3421432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_get_clean_triton.py 2025-09-07T06:56:04.3424864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_helion.py 2025-09-07T06:56:04.3428595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_import_utils.py 2025-09-07T06:56:04.3432049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_mode_utils.py 2025-09-07T06:56:04.3435696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_ordered_set.py 2025-09-07T06:56:04.3439052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_python_dispatch.py 2025-09-07T06:56:04.3442458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_pytree.py 2025-09-07T06:56:04.3446237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_stats.py 2025-09-07T06:56:04.3459930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_thunk.py 2025-09-07T06:56:04.3463040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_traceback.py 2025-09-07T06:56:04.3466482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_triton.py 2025-09-07T06:56:04.3469807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_typing_utils.py 2025-09-07T06:56:04.3473466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_zip.py 2025-09-07T06:56:04.3476804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__init__.py 2025-09-07T06:56:04.3483693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__init__.py 2025-09-07T06:56:04.3490503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3498480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__init__.py 2025-09-07T06:56:04.3505164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\compare.py 2025-09-07T06:56:04.3508483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\fuzzer.py 2025-09-07T06:56:04.3512012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\op_benchmark.py 2025-09-07T06:56:04.3515290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\simple_timeit.py 2025-09-07T06:56:04.3518679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py 2025-09-07T06:56:04.3532543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__init__.py 2025-09-07T06:56:04.3539099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\compare.cpython-39.pyc 2025-09-07T06:56:04.3542645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\fuzzer.cpython-39.pyc 2025-09-07T06:56:04.3546307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\op_benchmark.cpython-39.pyc 2025-09-07T06:56:04.3560678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\simple_timeit.cpython-39.pyc 2025-09-07T06:56:04.3564369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\spectral_ops_fuzz_test.cpython-39.pyc 2025-09-07T06:56:04.3567795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3575298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\binary.py 2025-09-07T06:56:04.3578652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_binary.py 2025-09-07T06:56:04.3582558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_unary.py 2025-09-07T06:56:04.3586253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\spectral.py 2025-09-07T06:56:04.3599620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\unary.py 2025-09-07T06:56:04.3602943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__init__.py 2025-09-07T06:56:04.3609317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\binary.cpython-39.pyc 2025-09-07T06:56:04.3613099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_binary.cpython-39.pyc 2025-09-07T06:56:04.3616720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_unary.cpython-39.pyc 2025-09-07T06:56:04.3629578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\spectral.cpython-39.pyc 2025-09-07T06:56:04.3633032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\unary.cpython-39.pyc 2025-09-07T06:56:04.3636728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3644430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\common.py 2025-09-07T06:56:04.3647701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compare.py 2025-09-07T06:56:04.3651065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compile.py 2025-09-07T06:56:04.3654233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\cpp_jit.py 2025-09-07T06:56:04.3657532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\fuzzer.py 2025-09-07T06:56:04.3660803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\sparse_fuzzer.py 2025-09-07T06:56:04.3674148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timeit_template.cpp 2025-09-07T06:56:04.3677579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timer.py 2025-09-07T06:56:04.3681182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\_stubs.py 2025-09-07T06:56:04.3684482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__init__.py 2025-09-07T06:56:04.3690779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h 2025-09-07T06:56:04.3694274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp 2025-09-07T06:56:04.3697781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp 2025-09-07T06:56:04.3711106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py 2025-09-07T06:56:04.3714601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h 2025-09-07T06:56:04.3719980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py 2025-09-07T06:56:04.3726990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\timer_interface.cpython-39.pyc 2025-09-07T06:56:04.3730407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3737833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\common.cpython-39.pyc 2025-09-07T06:56:04.3741349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compare.cpython-39.pyc 2025-09-07T06:56:04.3744902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compile.cpython-39.pyc 2025-09-07T06:56:04.3758904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\cpp_jit.cpython-39.pyc 2025-09-07T06:56:04.3761899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\fuzzer.cpython-39.pyc 2025-09-07T06:56:04.3765429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\sparse_fuzzer.cpython-39.pyc 2025-09-07T06:56:04.3768869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\timer.cpython-39.pyc 2025-09-07T06:56:04.3772382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\_stubs.cpython-39.pyc 2025-09-07T06:56:04.3776190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3793583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3801758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__init__.py 2025-09-07T06:56:04.3804359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__main__.py 2025-09-07T06:56:04.3811239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3814834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__main__.cpython-39.pyc 2025-09-07T06:56:04.3822450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\backward_compatibility.py 2025-09-07T06:56:04.3826620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataloader.py 2025-09-07T06:56:04.3830477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataset.py 2025-09-07T06:56:04.3834198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\distributed.py 2025-09-07T06:56:04.3846252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph.py 2025-09-07T06:56:04.3849541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph_settings.py 2025-09-07T06:56:04.3852811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\sampler.py 2025-09-07T06:56:04.3856433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__init__.py 2025-09-07T06:56:04.3863511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.py 2025-09-07T06:56:04.3867512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.pyi 2025-09-07T06:56:04.3870891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\gen_pyi.py 2025-09-07T06:56:04.3874239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_decorator.py 2025-09-07T06:56:04.3877759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_hook_iterator.py 2025-09-07T06:56:04.3891003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_typing.py 2025-09-07T06:56:04.3894392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__init__.py 2025-09-07T06:56:04.3902230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframes.py 2025-09-07T06:56:04.3905851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py 2025-09-07T06:56:04.3911204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\datapipes.py 2025-09-07T06:56:04.3925387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\structures.py 2025-09-07T06:56:04.3928899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__init__.py 2025-09-07T06:56:04.3936227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframes.cpython-39.pyc 2025-09-07T06:56:04.3939778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframe_wrapper.cpython-39.pyc 2025-09-07T06:56:04.3943580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\datapipes.cpython-39.pyc 2025-09-07T06:56:04.3959974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\structures.cpython-39.pyc 2025-09-07T06:56:04.3963406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.3971141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\callable.py 2025-09-07T06:56:04.3974845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combinatorics.py 2025-09-07T06:56:04.3978209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combining.py 2025-09-07T06:56:04.3981756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\filelister.py 2025-09-07T06:56:04.3994941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\fileopener.py 2025-09-07T06:56:04.3998881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\grouping.py 2025-09-07T06:56:04.4002547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\routeddecoder.py 2025-09-07T06:56:04.4006307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\selecting.py 2025-09-07T06:56:04.4010311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\sharding.py 2025-09-07T06:56:04.4013829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\streamreader.py 2025-09-07T06:56:04.4017513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\utils.py 2025-09-07T06:56:04.4020994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__init__.py 2025-09-07T06:56:04.4028358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\callable.cpython-39.pyc 2025-09-07T06:56:04.4032151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combinatorics.cpython-39.pyc 2025-09-07T06:56:04.4035653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combining.cpython-39.pyc 2025-09-07T06:56:04.4048747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\filelister.cpython-39.pyc 2025-09-07T06:56:04.4052284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\fileopener.cpython-39.pyc 2025-09-07T06:56:04.4056228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\grouping.cpython-39.pyc 2025-09-07T06:56:04.4059884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\routeddecoder.cpython-39.pyc 2025-09-07T06:56:04.4063406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\selecting.cpython-39.pyc 2025-09-07T06:56:04.4067451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\sharding.cpython-39.pyc 2025-09-07T06:56:04.4071246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\streamreader.cpython-39.pyc 2025-09-07T06:56:04.4074837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.4078883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4087076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\callable.py 2025-09-07T06:56:04.4090930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combinatorics.py 2025-09-07T06:56:04.4094449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combining.py 2025-09-07T06:56:04.4097824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\grouping.py 2025-09-07T06:56:04.4101595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\utils.py 2025-09-07T06:56:04.4114527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__init__.py 2025-09-07T06:56:04.4121941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\callable.cpython-39.pyc 2025-09-07T06:56:04.4125865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combinatorics.cpython-39.pyc 2025-09-07T06:56:04.4129518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combining.cpython-39.pyc 2025-09-07T06:56:04.4143049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\grouping.cpython-39.pyc 2025-09-07T06:56:04.4146900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.4150520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4158165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\common.py 2025-09-07T06:56:04.4161535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\decoder.py 2025-09-07T06:56:04.4165424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\snapshot.py 2025-09-07T06:56:04.4169169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__init__.py 2025-09-07T06:56:04.4176286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\common.cpython-39.pyc 2025-09-07T06:56:04.4187098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\decoder.cpython-39.pyc 2025-09-07T06:56:04.4188070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\snapshot.cpython-39.pyc 2025-09-07T06:56:04.4196857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4205206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\datapipe.cpython-39.pyc 2025-09-07T06:56:04.4208810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\gen_pyi.cpython-39.pyc 2025-09-07T06:56:04.4212214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_decorator.cpython-39.pyc 2025-09-07T06:56:04.4225622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_hook_iterator.cpython-39.pyc 2025-09-07T06:56:04.4229043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_typing.cpython-39.pyc 2025-09-07T06:56:04.4232548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4240833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\collate.py 2025-09-07T06:56:04.4244131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\fetch.py 2025-09-07T06:56:04.4247609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\pin_memory.py 2025-09-07T06:56:04.4250890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\signal_handling.py 2025-09-07T06:56:04.4254249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\worker.py 2025-09-07T06:56:04.4267144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__init__.py 2025-09-07T06:56:04.4274123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\collate.cpython-39.pyc 2025-09-07T06:56:04.4277608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\fetch.cpython-39.pyc 2025-09-07T06:56:04.4281715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\pin_memory.cpython-39.pyc 2025-09-07T06:56:04.4294783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\signal_handling.cpython-39.pyc 2025-09-07T06:56:04.4298218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\worker.cpython-39.pyc 2025-09-07T06:56:04.4301644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4309825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\backward_compatibility.cpython-39.pyc 2025-09-07T06:56:04.4313330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataloader.cpython-39.pyc 2025-09-07T06:56:04.4316809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataset.cpython-39.pyc 2025-09-07T06:56:04.4330239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\distributed.cpython-39.pyc 2025-09-07T06:56:04.4333844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph.cpython-39.pyc 2025-09-07T06:56:04.4337328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph_settings.cpython-39.pyc 2025-09-07T06:56:04.4340647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\sampler.cpython-39.pyc 2025-09-07T06:56:04.4385459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4390199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\constants.py 2025-09-07T06:56:04.4395597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\cuda_to_hip_mappings.py 2025-09-07T06:56:04.4403602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\hipify_python.py 2025-09-07T06:56:04.4409234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\version.py 2025-09-07T06:56:04.4418174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__init__.py 2025-09-07T06:56:04.4425580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\constants.cpython-39.pyc 2025-09-07T06:56:04.4430014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\cuda_to_hip_mappings.cpython-39.pyc 2025-09-07T06:56:04.4434172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\hipify_python.cpython-39.pyc 2025-09-07T06:56:04.4447724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\version.cpython-39.pyc 2025-09-07T06:56:04.4451429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4458860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\log_extract.py 2025-09-07T06:56:04.4462226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__init__.py 2025-09-07T06:56:04.4469242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\log_extract.cpython-39.pyc 2025-09-07T06:56:04.4473258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4480456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\code.js 2025-09-07T06:56:04.4483981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\htm.mjs 2025-09-07T06:56:04.4487257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\preact.mjs 2025-09-07T06:56:04.4490575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\skeleton.html 2025-09-07T06:56:04.4493940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__init__.py 2025-09-07T06:56:04.4507832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__main__.py 2025-09-07T06:56:04.4514762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4518615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__main__.cpython-39.pyc 2025-09-07T06:56:04.4526364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\config.py 2025-09-07T06:56:04.4529752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__init__.py 2025-09-07T06:56:04.4536685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\config.cpython-39.pyc 2025-09-07T06:56:04.4540309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4547967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\summary.py 2025-09-07T06:56:04.4551460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\writer.py 2025-09-07T06:56:04.4554970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_convert_np.py 2025-09-07T06:56:04.4558696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_embedding.py 2025-09-07T06:56:04.4572225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_onnx_graph.py 2025-09-07T06:56:04.4575771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_proto_graph.py 2025-09-07T06:56:04.4579260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_pytorch_graph.py 2025-09-07T06:56:04.4583094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_utils.py 2025-09-07T06:56:04.4586682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__init__.py 2025-09-07T06:56:04.4594940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\summary.cpython-39.pyc 2025-09-07T06:56:04.4598687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\writer.cpython-39.pyc 2025-09-07T06:56:04.4603073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_convert_np.cpython-39.pyc 2025-09-07T06:56:04.4616206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_embedding.cpython-39.pyc 2025-09-07T06:56:04.4621016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_onnx_graph.cpython-39.pyc 2025-09-07T06:56:04.4623619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_proto_graph.cpython-39.pyc 2025-09-07T06:56:04.4627576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_pytorch_graph.cpython-39.pyc 2025-09-07T06:56:04.4630937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:56:04.4634730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4643789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\_cycles.py 2025-09-07T06:56:04.4647238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__init__.py 2025-09-07T06:56:04.4653373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\_cycles.cpython-39.pyc 2025-09-07T06:56:04.4657054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4665425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\cli_function_profiler.py 2025-09-07T06:56:04.4668843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__init__.py 2025-09-07T06:56:04.4675740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-09-07T06:56:04.4679129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4686734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\functions.py 2025-09-07T06:56:04.4690599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\interp.py 2025-09-07T06:56:04.4693979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\numbers.py 2025-09-07T06:56:04.4697207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\printers.py 2025-09-07T06:56:04.4700678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\reference.py 2025-09-07T06:56:04.4714524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\singleton_int.py 2025-09-07T06:56:04.4718043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\solve.py 2025-09-07T06:56:04.4721333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\symbol.py 2025-09-07T06:56:04.4724759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\value_ranges.py 2025-09-07T06:56:04.4728170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__init__.py 2025-09-07T06:56:04.4734616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\functions.cpython-39.pyc 2025-09-07T06:56:04.4738909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\interp.cpython-39.pyc 2025-09-07T06:56:04.4742875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\numbers.cpython-39.pyc 2025-09-07T06:56:04.4756166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\printers.cpython-39.pyc 2025-09-07T06:56:04.4759936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\reference.cpython-39.pyc 2025-09-07T06:56:04.4763942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\singleton_int.cpython-39.pyc 2025-09-07T06:56:04.4767590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\solve.cpython-39.pyc 2025-09-07T06:56:04.4771096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\symbol.cpython-39.pyc 2025-09-07T06:56:04.4774587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\value_ranges.cpython-39.pyc 2025-09-07T06:56:04.4778244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.4787564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\backend_registration.cpython-39.pyc 2025-09-07T06:56:04.4791215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\bundled_inputs.cpython-39.pyc 2025-09-07T06:56:04.4794691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\checkpoint.cpython-39.pyc 2025-09-07T06:56:04.4808700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\collect_env.cpython-39.pyc 2025-09-07T06:56:04.4812554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_backtrace.cpython-39.pyc 2025-09-07T06:56:04.4815962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_extension.cpython-39.pyc 2025-09-07T06:56:04.4820205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\deterministic.cpython-39.pyc 2025-09-07T06:56:04.4823813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\dlpack.cpython-39.pyc 2025-09-07T06:56:04.4827502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\file_baton.cpython-39.pyc 2025-09-07T06:56:04.4830990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\flop_counter.cpython-39.pyc 2025-09-07T06:56:04.4834472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\hooks.cpython-39.pyc 2025-09-07T06:56:04.4837991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mkldnn.cpython-39.pyc 2025-09-07T06:56:04.4841530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mobile_optimizer.cpython-39.pyc 2025-09-07T06:56:04.4844919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\model_zoo.cpython-39.pyc 2025-09-07T06:56:04.4848637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\module_tracker.cpython-39.pyc 2025-09-07T06:56:04.4852821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\show_pickle.cpython-39.pyc 2025-09-07T06:56:04.4856498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\throughput_benchmark.cpython-39.pyc 2025-09-07T06:56:04.4869477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\weak.cpython-39.pyc 2025-09-07T06:56:04.4873051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_appending_byte_serializer.cpython-39.pyc 2025-09-07T06:56:04.4876585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_backport_slots.cpython-39.pyc 2025-09-07T06:56:04.4880335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_config_module.cpython-39.pyc 2025-09-07T06:56:04.4883885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_content_store.cpython-39.pyc 2025-09-07T06:56:04.4887415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_contextlib.cpython-39.pyc 2025-09-07T06:56:04.4890910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_embed_headers.cpython-39.pyc 2025-09-07T06:56:04.4903927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_extension_versioner.cpython-39.pyc 2025-09-07T06:56:04.4907786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cxx_pytree.cpython-39.pyc 2025-09-07T06:56:04.4911794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_device.cpython-39.pyc 2025-09-07T06:56:04.4915581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_dtype_abbrs.cpython-39.pyc 2025-09-07T06:56:04.4919162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_exposed_in.cpython-39.pyc 2025-09-07T06:56:04.4922656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_filelock.cpython-39.pyc 2025-09-07T06:56:04.4926210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_foreach_utils.cpython-39.pyc 2025-09-07T06:56:04.4929691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_functools.cpython-39.pyc 2025-09-07T06:56:04.4933286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_get_clean_triton.cpython-39.pyc 2025-09-07T06:56:04.4946905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_helion.cpython-39.pyc 2025-09-07T06:56:04.4950722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_import_utils.cpython-39.pyc 2025-09-07T06:56:04.4954268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_mode_utils.cpython-39.pyc 2025-09-07T06:56:04.4958226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_ordered_set.cpython-39.pyc 2025-09-07T06:56:04.4961695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_python_dispatch.cpython-39.pyc 2025-09-07T06:56:04.4965560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_pytree.cpython-39.pyc 2025-09-07T06:56:04.4969008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_stats.cpython-39.pyc 2025-09-07T06:56:04.4972525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_thunk.cpython-39.pyc 2025-09-07T06:56:04.4995535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_traceback.cpython-39.pyc 2025-09-07T06:56:04.4999184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_triton.cpython-39.pyc 2025-09-07T06:56:04.5003493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_typing_utils.cpython-39.pyc 2025-09-07T06:56:04.5006982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_zip.cpython-39.pyc 2025-09-07T06:56:04.5010685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.5020371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\memory.py 2025-09-07T06:56:04.5023549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\random.py 2025-09-07T06:56:04.5026982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\streams.py 2025-09-07T06:56:04.5030068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_gpu_trace.py 2025-09-07T06:56:04.5033443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_utils.py 2025-09-07T06:56:04.5037188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__init__.py 2025-09-07T06:56:04.5053699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\memory.cpython-39.pyc 2025-09-07T06:56:04.5057183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\random.cpython-39.pyc 2025-09-07T06:56:04.5060878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\streams.cpython-39.pyc 2025-09-07T06:56:04.5074271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_gpu_trace.cpython-39.pyc 2025-09-07T06:56:04.5077899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:56:04.5081940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.5089473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__init__.py 2025-09-07T06:56:04.5096615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.5104292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_aoti.pyi 2025-09-07T06:56:04.5107799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_autograd.pyi 2025-09-07T06:56:04.5111306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cpu.pyi 2025-09-07T06:56:04.5116036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cudnn.pyi 2025-09-07T06:56:04.5119536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cusparselt.pyi 2025-09-07T06:56:04.5133458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_autograd.pyi 2025-09-07T06:56:04.5137272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_c10d.pyi 2025-09-07T06:56:04.5140689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc.pyi 2025-09-07T06:56:04.5144612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc_testing.pyi 2025-09-07T06:56:04.5148281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functions.pyi 2025-09-07T06:56:04.5152250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functorch.pyi 2025-09-07T06:56:04.5156387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_instruction_counter.pyi 2025-09-07T06:56:04.5170067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_itt.pyi 2025-09-07T06:56:04.5170596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_jit_tree_views.pyi 2025-09-07T06:56:04.5171123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy.pyi 2025-09-07T06:56:04.5171615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy_ts_backend.pyi 2025-09-07T06:56:04.5173790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_monitor.pyi 2025-09-07T06:56:04.5177403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nn.pyi 2025-09-07T06:56:04.5180574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nvtx.pyi 2025-09-07T06:56:04.5184146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_onnx.pyi 2025-09-07T06:56:04.5187804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_profiler.pyi 2025-09-07T06:56:04.5191342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_VariableFunctions.pyi 2025-09-07T06:56:04.5202214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_verbose.pyi 2025-09-07T06:56:04.5215357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\__init__.pyi 2025-09-07T06:56:04.5224661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\compiled_autograd.pyi 2025-09-07T06:56:04.5228140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\eval_frame.pyi 2025-09-07T06:56:04.5231539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\guards.pyi 2025-09-07T06:56:04.5235151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\__init__.pyi 2025-09-07T06:56:04.5242244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\pt2_archive_constants.pyi 2025-09-07T06:56:04.5245607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\__init__.pyi 2025-09-07T06:56:04.5253744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\autograd.py 2025-09-07T06:56:04.5257091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\impl.py 2025-09-07T06:56:04.5260502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__init__.py 2025-09-07T06:56:04.5266907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\autograd.cpython-39.pyc 2025-09-07T06:56:04.5270501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\impl.cpython-39.pyc 2025-09-07T06:56:04.5274003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.5291738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C_flatbuffer\__init__.pyi 2025-09-07T06:56:04.5298905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions.py 2025-09-07T06:56:04.5303671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_jvp.py 2025-09-07T06:56:04.5307243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_rng.py 2025-09-07T06:56:04.5320638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__init__.py 2025-09-07T06:56:04.5327641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions.cpython-39.pyc 2025-09-07T06:56:04.5332142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_jvp.cpython-39.pyc 2025-09-07T06:56:04.5335694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_rng.cpython-39.pyc 2025-09-07T06:56:04.5348806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.5356453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\python.py 2025-09-07T06:56:04.5360013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__init__.py 2025-09-07T06:56:04.5366456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\python.cpython-39.pyc 2025-09-07T06:56:04.5369969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.5377492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\aot_compile.py 2025-09-07T06:56:04.5380995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_analysis.py 2025-09-07T06:56:04.5384449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_transformation.py 2025-09-07T06:56:04.5397819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\cache_size.py 2025-09-07T06:56:04.5401240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\callback.py 2025-09-07T06:56:04.5404827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\codegen.py 2025-09-07T06:56:04.5408732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\code_context.py 2025-09-07T06:56:04.5412195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\compiled_autograd.py 2025-09-07T06:56:04.5415763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\comptime.py 2025-09-07T06:56:04.5419050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\config.py 2025-09-07T06:56:04.5422501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\convert_frame.py 2025-09-07T06:56:04.5426390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\create_parameter_op.py 2025-09-07T06:56:04.5430230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\current_scope_id.py 2025-09-07T06:56:04.5433588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\debug_utils.py 2025-09-07T06:56:04.5437081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\decorators.py 2025-09-07T06:56:04.5440602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\device_interface.py 2025-09-07T06:56:04.5443997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\distributed.py 2025-09-07T06:56:04.5447416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\eval_frame.py 2025-09-07T06:56:04.5451281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\exc.py 2025-09-07T06:56:04.5454936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\external_utils.py 2025-09-07T06:56:04.5458207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\funcname_cache.py 2025-09-07T06:56:04.5471449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\functional_export.py 2025-09-07T06:56:04.5474794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_hints.py 2025-09-07T06:56:04.5478261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_registry.json 2025-09-07T06:56:04.5482502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_deduplication.py 2025-09-07T06:56:04.5485966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_region_tracker.py 2025-09-07T06:56:04.5489500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_utils.py 2025-09-07T06:56:04.5493182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\guards.py 2025-09-07T06:56:04.5497236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\hooks.py 2025-09-07T06:56:04.5500817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\logging.py 2025-09-07T06:56:04.5504428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\metrics_context.py 2025-09-07T06:56:04.5508104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\mutation_guard.py 2025-09-07T06:56:04.5521545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\output_graph.py 2025-09-07T06:56:04.5525716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\package.py 2025-09-07T06:56:04.5529386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\pgo.py 2025-09-07T06:56:04.5532987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\precompile_context.py 2025-09-07T06:56:04.5536380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\profiler.py 2025-09-07T06:56:04.5539694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\replay_record.py 2025-09-07T06:56:04.5543292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\resume_execution.py 2025-09-07T06:56:04.5546838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\side_effects.py 2025-09-07T06:56:04.5550461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\source.py 2025-09-07T06:56:04.5553985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\symbolic_convert.py 2025-09-07T06:56:04.5591994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\tensor_version_op.py 2025-09-07T06:56:04.5595430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\testing.py 2025-09-07T06:56:04.5603154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_case.py 2025-09-07T06:56:04.5606509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_dont_skip_tracing_functions.py 2025-09-07T06:56:04.5610106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_minifier_common.py 2025-09-07T06:56:04.5613500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\trace_rules.py 2025-09-07T06:56:04.5618308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\types.py 2025-09-07T06:56:04.5621422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\utils.py 2025-09-07T06:56:04.5625769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\_trace_wrapped_higher_order_op.py 2025-09-07T06:56:04.5629143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__init__.py 2025-09-07T06:56:04.5635829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\common.py 2025-09-07T06:56:04.5639097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\cudagraphs.py 2025-09-07T06:56:04.5642522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\debugging.py 2025-09-07T06:56:04.5646297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\distributed.py 2025-09-07T06:56:04.5659559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\inductor.py 2025-09-07T06:56:04.5662853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\onnxrt.py 2025-09-07T06:56:04.5666254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\registry.py 2025-09-07T06:56:04.5669487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tensorrt.py 2025-09-07T06:56:04.5673467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\torchxla.py 2025-09-07T06:56:04.5676937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tvm.py 2025-09-07T06:56:04.5680101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__init__.py 2025-09-07T06:56:04.5686561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\common.cpython-39.pyc 2025-09-07T06:56:04.5698759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-09-07T06:56:04.5741820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\debugging.cpython-39.pyc 2025-09-07T06:56:04.5754886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\distributed.cpython-39.pyc 2025-09-07T06:56:04.5758630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\inductor.cpython-39.pyc 2025-09-07T06:56:04.5762153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\onnxrt.cpython-39.pyc 2025-09-07T06:56:04.5765645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\registry.cpython-39.pyc 2025-09-07T06:56:04.5769337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tensorrt.cpython-39.pyc 2025-09-07T06:56:04.5772974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\torchxla.cpython-39.pyc 2025-09-07T06:56:04.5776547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tvm.cpython-39.pyc 2025-09-07T06:56:04.5779993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.5788827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\builtins.py 2025-09-07T06:56:04.5792384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\functools.py 2025-09-07T06:56:04.5796105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\fx.py 2025-09-07T06:56:04.5799626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\itertools.py 2025-09-07T06:56:04.5812929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\loader.py 2025-09-07T06:56:04.5816321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\operator.py 2025-09-07T06:56:04.5819625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\os.py 2025-09-07T06:56:04.5823013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\pytree.py 2025-09-07T06:56:04.5826535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\struct.py 2025-09-07T06:56:04.5829828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\sys.py 2025-09-07T06:56:04.5833326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\tensor.py 2025-09-07T06:56:04.5836814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\_collections.py 2025-09-07T06:56:04.5840101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__init__.py 2025-09-07T06:56:04.5847999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\builtins.cpython-39.pyc 2025-09-07T06:56:04.5852136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\functools.cpython-39.pyc 2025-09-07T06:56:04.5855427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\fx.cpython-39.pyc 2025-09-07T06:56:04.5869033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\itertools.cpython-39.pyc 2025-09-07T06:56:04.5872426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\loader.cpython-39.pyc 2025-09-07T06:56:04.5876124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\operator.cpython-39.pyc 2025-09-07T06:56:04.5879534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\os.cpython-39.pyc 2025-09-07T06:56:04.5883016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\pytree.cpython-39.pyc 2025-09-07T06:56:04.5886711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\struct.cpython-39.pyc 2025-09-07T06:56:04.5890231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\sys.cpython-39.pyc 2025-09-07T06:56:04.5893828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\tensor.cpython-39.pyc 2025-09-07T06:56:04.5897300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\_collections.cpython-39.pyc 2025-09-07T06:56:04.5900786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.5908750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_aot.py 2025-09-07T06:56:04.5912452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_dynamo.py 2025-09-07T06:56:04.5916022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\aoti.py 2025-09-07T06:56:04.5919385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__init__.py 2025-09-07T06:56:04.5935865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_aot.cpython-39.pyc 2025-09-07T06:56:04.5939625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_dynamo.cpython-39.pyc 2025-09-07T06:56:04.5943148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\aoti.cpython-39.pyc 2025-09-07T06:56:04.5956631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.5974455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\base.py 2025-09-07T06:56:04.5978284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builder.py 2025-09-07T06:56:04.5982709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builtin.py 2025-09-07T06:56:04.5987038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\constant.py 2025-09-07T06:56:04.5991295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\ctx_manager.py 2025-09-07T06:56:04.6003692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\dicts.py 2025-09-07T06:56:04.6007291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\distributed.py 2025-09-07T06:56:04.6010777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\functions.py 2025-09-07T06:56:04.6014886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\higher_order_ops.py 2025-09-07T06:56:04.6020147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\iter.py 2025-09-07T06:56:04.6023170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lazy.py 2025-09-07T06:56:04.6026609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lists.py 2025-09-07T06:56:04.6030369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\misc.py 2025-09-07T06:56:04.6034813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\nn_module.py 2025-09-07T06:56:04.6038699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\optimizer.py 2025-09-07T06:56:04.6044037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\script_object.py 2025-09-07T06:56:04.6047535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\sdpa.py 2025-09-07T06:56:04.6051035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\tensor.py 2025-09-07T06:56:04.6055207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch.py 2025-09-07T06:56:04.6059055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch_function.py 2025-09-07T06:56:04.6062890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\user_defined.py 2025-09-07T06:56:04.6067424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__init__.py 2025-09-07T06:56:04.6075327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\base.cpython-39.pyc 2025-09-07T06:56:04.6079138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builder.cpython-39.pyc 2025-09-07T06:56:04.6082750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builtin.cpython-39.pyc 2025-09-07T06:56:04.6096309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\constant.cpython-39.pyc 2025-09-07T06:56:04.6099836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\ctx_manager.cpython-39.pyc 2025-09-07T06:56:04.6103717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\dicts.cpython-39.pyc 2025-09-07T06:56:04.6107650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\distributed.cpython-39.pyc 2025-09-07T06:56:04.6111173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\functions.cpython-39.pyc 2025-09-07T06:56:04.6115020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\higher_order_ops.cpython-39.pyc 2025-09-07T06:56:04.6119249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\iter.cpython-39.pyc 2025-09-07T06:56:04.6122875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lazy.cpython-39.pyc 2025-09-07T06:56:04.6126453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lists.cpython-39.pyc 2025-09-07T06:56:04.6130272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\misc.cpython-39.pyc 2025-09-07T06:56:04.6134199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\nn_module.cpython-39.pyc 2025-09-07T06:56:04.6138000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\optimizer.cpython-39.pyc 2025-09-07T06:56:04.6141638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\script_object.cpython-39.pyc 2025-09-07T06:56:04.6145325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\sdpa.cpython-39.pyc 2025-09-07T06:56:04.6158330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\tensor.cpython-39.pyc 2025-09-07T06:56:04.6162812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch.cpython-39.pyc 2025-09-07T06:56:04.6166819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch_function.cpython-39.pyc 2025-09-07T06:56:04.6170760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\user_defined.cpython-39.pyc 2025-09-07T06:56:04.6174631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.6184436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\aot_compile.cpython-39.pyc 2025-09-07T06:56:04.6188381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_analysis.cpython-39.pyc 2025-09-07T06:56:04.6192064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_transformation.cpython-39.pyc 2025-09-07T06:56:04.6205611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\cache_size.cpython-39.pyc 2025-09-07T06:56:04.6209411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\callback.cpython-39.pyc 2025-09-07T06:56:04.6213119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\codegen.cpython-39.pyc 2025-09-07T06:56:04.6216788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\code_context.cpython-39.pyc 2025-09-07T06:56:04.6220501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\compiled_autograd.cpython-39.pyc 2025-09-07T06:56:04.6224165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\comptime.cpython-39.pyc 2025-09-07T06:56:04.6227876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\config.cpython-39.pyc 2025-09-07T06:56:04.6231579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\convert_frame.cpython-39.pyc 2025-09-07T06:56:04.6235614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\create_parameter_op.cpython-39.pyc 2025-09-07T06:56:04.6239159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\current_scope_id.cpython-39.pyc 2025-09-07T06:56:04.6242754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\debug_utils.cpython-39.pyc 2025-09-07T06:56:04.6246393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\decorators.cpython-39.pyc 2025-09-07T06:56:04.6250079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\device_interface.cpython-39.pyc 2025-09-07T06:56:04.6264017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\distributed.cpython-39.pyc 2025-09-07T06:56:04.6267676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\eval_frame.cpython-39.pyc 2025-09-07T06:56:04.6271768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\exc.cpython-39.pyc 2025-09-07T06:56:04.6275461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\external_utils.cpython-39.pyc 2025-09-07T06:56:04.6278946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\funcname_cache.cpython-39.pyc 2025-09-07T06:56:04.6282877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\functional_export.cpython-39.pyc 2025-09-07T06:56:04.6286094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_break_hints.cpython-39.pyc 2025-09-07T06:56:04.6289641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_deduplication.cpython-39.pyc 2025-09-07T06:56:04.6303425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_region_tracker.cpython-39.pyc 2025-09-07T06:56:04.6307079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_utils.cpython-39.pyc 2025-09-07T06:56:04.6310916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\guards.cpython-39.pyc 2025-09-07T06:56:04.6315348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\hooks.cpython-39.pyc 2025-09-07T06:56:04.6318892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\logging.cpython-39.pyc 2025-09-07T06:56:04.6322485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\metrics_context.cpython-39.pyc 2025-09-07T06:56:04.6326643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\mutation_guard.cpython-39.pyc 2025-09-07T06:56:04.6330418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\output_graph.cpython-39.pyc 2025-09-07T06:56:04.6344394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\package.cpython-39.pyc 2025-09-07T06:56:04.6348062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\pgo.cpython-39.pyc 2025-09-07T06:56:04.6351815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\precompile_context.cpython-39.pyc 2025-09-07T06:56:04.6355146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\profiler.cpython-39.pyc 2025-09-07T06:56:04.6358783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\replay_record.cpython-39.pyc 2025-09-07T06:56:04.6362374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\resume_execution.cpython-39.pyc 2025-09-07T06:56:04.6366065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\side_effects.cpython-39.pyc 2025-09-07T06:56:04.6369624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\source.cpython-39.pyc 2025-09-07T06:56:04.6373967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\symbolic_convert.cpython-39.pyc 2025-09-07T06:56:04.6396968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\tensor_version_op.cpython-39.pyc 2025-09-07T06:56:04.6400740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\testing.cpython-39.pyc 2025-09-07T06:56:04.6404271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_case.cpython-39.pyc 2025-09-07T06:56:04.6407946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_dont_skip_tracing_functions.cpython-39.pyc 2025-09-07T06:56:04.6411750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_minifier_common.cpython-39.pyc 2025-09-07T06:56:04.6415305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\trace_rules.cpython-39.pyc 2025-09-07T06:56:04.6419295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\types.cpython-39.pyc 2025-09-07T06:56:04.6422919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.6436984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\_trace_wrapped_higher_order_op.cpython-39.pyc 2025-09-07T06:56:04.6440448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.6450094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\converter.py 2025-09-07T06:56:04.6453838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\error.py 2025-09-07T06:56:04.6457537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\non_strict_utils.py 2025-09-07T06:56:04.6461280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_base.py 2025-09-07T06:56:04.6474373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\tools.py 2025-09-07T06:56:04.6477724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\utils.py 2025-09-07T06:56:04.6481250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\verifier.py 2025-09-07T06:56:04.6484537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\wrappers.py 2025-09-07T06:56:04.6487751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__init__.py 2025-09-07T06:56:04.6494832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\case.py 2025-09-07T06:56:04.6498385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\gen_example.py 2025-09-07T06:56:04.6501711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\logging.py 2025-09-07T06:56:04.6505165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__init__.py 2025-09-07T06:56:04.6512842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\assume_constant_result.py 2025-09-07T06:56:04.6516318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\autograd_function.py 2025-09-07T06:56:04.6519783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\class_method.py 2025-09-07T06:56:04.6533321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_class_method.py 2025-09-07T06:56:04.6537026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nested_function.py 2025-09-07T06:56:04.6540614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nonlocal_variables.py 2025-09-07T06:56:04.6544224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_closed_over_variable.py 2025-09-07T06:56:04.6547763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_operands.py 2025-09-07T06:56:04.6551175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_predicate.py 2025-09-07T06:56:04.6554717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_size_example.py 2025-09-07T06:56:04.6558864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_value_example.py 2025-09-07T06:56:04.6562542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\decorator.py 2025-09-07T06:56:04.6566641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dictionary.py 2025-09-07T06:56:04.6570420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_assert.py 2025-09-07T06:56:04.6574001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_constructor.py 2025-09-07T06:56:04.6578058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_if_guard.py 2025-09-07T06:56:04.6581709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_map.py 2025-09-07T06:56:04.6585328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_round.py 2025-09-07T06:56:04.6598512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_slicing.py 2025-09-07T06:56:04.6602020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_view.py 2025-09-07T06:56:04.6605900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\fn_with_kwargs.py 2025-09-07T06:56:04.6609574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_contains.py 2025-09-07T06:56:04.6613093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_unpack.py 2025-09-07T06:56:04.6616608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\model_attr_mutation.py 2025-09-07T06:56:04.6620130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\nested_function.py 2025-09-07T06:56:04.6623801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\null_context_manager.py 2025-09-07T06:56:04.6637831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\optional_input.py 2025-09-07T06:56:04.6641430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\pytree_flatten.py 2025-09-07T06:56:04.6645072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\scalar_output.py 2025-09-07T06:56:04.6648553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\specialized_attribute.py 2025-09-07T06:56:04.6652573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_for_loop.py 2025-09-07T06:56:04.6656161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_if.py 2025-09-07T06:56:04.6659662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\tensor_setattr.py 2025-09-07T06:56:04.6663592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\type_reflection_method.py 2025-09-07T06:56:04.6667506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\unsupported_operator.py 2025-09-07T06:56:04.6680671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\user_input_mutation.py 2025-09-07T06:56:04.6690214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__init__.py 2025-09-07T06:56:04.6694038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\assume_constant_result.cpython-39.pyc 2025-09-07T06:56:04.6697955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\autograd_function.cpython-39.pyc 2025-09-07T06:56:04.6701583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\class_method.cpython-39.pyc 2025-09-07T06:56:04.6715207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_class_method.cpython-39.pyc 2025-09-07T06:56:04.6718970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nested_function.cpython-39.pyc 2025-09-07T06:56:04.6722841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nonlocal_variables.cpython-39.pyc 2025-09-07T06:56:04.6726502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_closed_over_variable.cpython-39.pyc 2025-09-07T06:56:04.6730064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_operands.cpython-39.pyc 2025-09-07T06:56:04.6733808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_predicate.cpython-39.pyc 2025-09-07T06:56:04.6738027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_size_example.cpython-39.pyc 2025-09-07T06:56:04.6742253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_value_example.cpython-39.pyc 2025-09-07T06:56:04.6746085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\decorator.cpython-39.pyc 2025-09-07T06:56:04.6749713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dictionary.cpython-39.pyc 2025-09-07T06:56:04.6753325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_assert.cpython-39.pyc 2025-09-07T06:56:04.6757226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_constructor.cpython-39.pyc 2025-09-07T06:56:04.6761003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_if_guard.cpython-39.pyc 2025-09-07T06:56:04.6774832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_map.cpython-39.pyc 2025-09-07T06:56:04.6778849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_round.cpython-39.pyc 2025-09-07T06:56:04.6782610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_slicing.cpython-39.pyc 2025-09-07T06:56:04.6786271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_view.cpython-39.pyc 2025-09-07T06:56:04.6789969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\fn_with_kwargs.cpython-39.pyc 2025-09-07T06:56:04.6793771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_contains.cpython-39.pyc 2025-09-07T06:56:04.6797656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_unpack.cpython-39.pyc 2025-09-07T06:56:04.6811224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\model_attr_mutation.cpython-39.pyc 2025-09-07T06:56:04.6814900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\nested_function.cpython-39.pyc 2025-09-07T06:56:04.6818538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\null_context_manager.cpython-39.pyc 2025-09-07T06:56:04.6822124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\optional_input.cpython-39.pyc 2025-09-07T06:56:04.6825798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\pytree_flatten.cpython-39.pyc 2025-09-07T06:56:04.6829613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\scalar_output.cpython-39.pyc 2025-09-07T06:56:04.6833288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\specialized_attribute.cpython-39.pyc 2025-09-07T06:56:04.6836886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_for_loop.cpython-39.pyc 2025-09-07T06:56:04.6859438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_if.cpython-39.pyc 2025-09-07T06:56:04.6896843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\tensor_setattr.cpython-39.pyc 2025-09-07T06:56:04.6900362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\type_reflection_method.cpython-39.pyc 2025-09-07T06:56:04.6903990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\unsupported_operator.cpython-39.pyc 2025-09-07T06:56:04.6907904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\user_input_mutation.cpython-39.pyc 2025-09-07T06:56:04.6911765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.6926927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\case.cpython-39.pyc 2025-09-07T06:56:04.6930440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\gen_example.cpython-39.pyc 2025-09-07T06:56:04.6934282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\logging.cpython-39.pyc 2025-09-07T06:56:04.6948466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.6956414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py 2025-09-07T06:56:04.6959918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\collect_tracepoints_pass.py 2025-09-07T06:56:04.6963255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\constant_folding.py 2025-09-07T06:56:04.6976499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\functionalize_side_effectful_ops_pass.py 2025-09-07T06:56:04.6980089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\insert_custom_op_guards.py 2025-09-07T06:56:04.6983579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\lift_constants_pass.py 2025-09-07T06:56:04.6987401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\remove_runtime_assertions.py 2025-09-07T06:56:04.6990966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_autocast_with_hop_pass.py 2025-09-07T06:56:04.6994619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py 2025-09-07T06:56:04.6998638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_set_grad_with_hop_pass.py 2025-09-07T06:56:04.7002206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py 2025-09-07T06:56:04.7006005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_with_hop_pass_util.py 2025-09-07T06:56:04.7009714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\_node_metadata_hook.py 2025-09-07T06:56:04.7013223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__init__.py 2025-09-07T06:56:04.7020659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\add_runtime_assertions_for_constraints_pass.cpython-39.pyc 2025-09-07T06:56:04.7024123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\collect_tracepoints_pass.cpython-39.pyc 2025-09-07T06:56:04.7037467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\constant_folding.cpython-39.pyc 2025-09-07T06:56:04.7041032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\functionalize_side_effectful_ops_pass.cpython-39.pyc 2025-09-07T06:56:04.7044733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\insert_custom_op_guards.cpython-39.pyc 2025-09-07T06:56:04.7048322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\lift_constants_pass.cpython-39.pyc 2025-09-07T06:56:04.7051836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\remove_runtime_assertions.cpython-39.pyc 2025-09-07T06:56:04.7055399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_autocast_with_hop_pass.cpython-39.pyc 2025-09-07T06:56:04.7059138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_quantized_ops_with_standard_ops_pass.cpython-39.pyc 2025-09-07T06:56:04.7062859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_set_grad_with_hop_pass.cpython-39.pyc 2025-09-07T06:56:04.7066640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_view_ops_with_view_copy_ops_pass.cpython-39.pyc 2025-09-07T06:56:04.7070298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_with_hop_pass_util.cpython-39.pyc 2025-09-07T06:56:04.7074433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\_node_metadata_hook.cpython-39.pyc 2025-09-07T06:56:04.7078114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.7086272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\node_metadata.py 2025-09-07T06:56:04.7089679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\proxy_value.py 2025-09-07T06:56:04.7093092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__init__.py 2025-09-07T06:56:04.7109757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\node_metadata.cpython-39.pyc 2025-09-07T06:56:04.7113476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\proxy_value.cpython-39.pyc 2025-09-07T06:56:04.7116913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.7134830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\dynamic_shapes.py 2025-09-07T06:56:04.7138339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\export_schema.thrift 2025-09-07T06:56:04.7141594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.py 2025-09-07T06:56:04.7145091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.yaml 2025-09-07T06:56:04.7158853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema_check.py 2025-09-07T06:56:04.7163669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\serialize.py 2025-09-07T06:56:04.7169326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\union.py 2025-09-07T06:56:04.7174058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__init__.py 2025-09-07T06:56:04.7181764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\dynamic_shapes.cpython-39.pyc 2025-09-07T06:56:04.7215038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema.cpython-39.pyc 2025-09-07T06:56:04.7220169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema_check.cpython-39.pyc 2025-09-07T06:56:04.7234646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\serialize.cpython-39.pyc 2025-09-07T06:56:04.7238799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\union.cpython-39.pyc 2025-09-07T06:56:04.7242337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.7250303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\converter.cpython-39.pyc 2025-09-07T06:56:04.7254179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\error.cpython-39.pyc 2025-09-07T06:56:04.7258231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\non_strict_utils.cpython-39.pyc 2025-09-07T06:56:04.7271553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\pass_base.cpython-39.pyc 2025-09-07T06:56:04.7274995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\tools.cpython-39.pyc 2025-09-07T06:56:04.7278400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.7282061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\verifier.cpython-39.pyc 2025-09-07T06:56:04.7285616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\wrappers.cpython-39.pyc 2025-09-07T06:56:04.7289258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.7297459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\aot_autograd.py 2025-09-07T06:56:04.7301354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\apis.py 2025-09-07T06:56:04.7304941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\autograd_function.py 2025-09-07T06:56:04.7308432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\batch_norm_replacement.py 2025-09-07T06:56:04.7321838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\benchmark_utils.py 2025-09-07T06:56:04.7325159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compilers.py 2025-09-07T06:56:04.7328527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compile_utils.py 2025-09-07T06:56:04.7332149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\config.py 2025-09-07T06:56:04.7335468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\deprecated.py 2025-09-07T06:56:04.7338736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\eager_transforms.py 2025-09-07T06:56:04.7342423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\functional_call.py 2025-09-07T06:56:04.7345888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\fx_minifier.py 2025-09-07T06:56:04.7349292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\make_functional.py 2025-09-07T06:56:04.7352778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\partitioners.py 2025-09-07T06:56:04.7356981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\predispatch.py 2025-09-07T06:56:04.7360648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pyfunctorch.py 2025-09-07T06:56:04.7364142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\python_key.py 2025-09-07T06:56:04.7367558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pytree_hacks.py 2025-09-07T06:56:04.7371105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\top_operators_github_usage.py 2025-09-07T06:56:04.7374636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\utils.py 2025-09-07T06:56:04.7388032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\vmap.py 2025-09-07T06:56:04.7391459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__init__.py 2025-09-07T06:56:04.7399064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\ac_logging_utils.py 2025-09-07T06:56:04.7402700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\graph_info_provider.py 2025-09-07T06:56:04.7406107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack.py 2025-09-07T06:56:04.7419110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py 2025-09-07T06:56:04.7422537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__init__.py 2025-09-07T06:56:04.7430458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\ac_logging_utils.cpython-39.pyc 2025-09-07T06:56:04.7442587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\graph_info_provider.cpython-39.pyc 2025-09-07T06:56:04.7443537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack.cpython-39.pyc 2025-09-07T06:56:04.7454024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack_evaluator.cpython-39.pyc 2025-09-07T06:56:04.7457387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.7465340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\autograd_cache.py 2025-09-07T06:56:04.7469287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\collect_metadata_analysis.py 2025-09-07T06:56:04.7473721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\descriptors.py 2025-09-07T06:56:04.7485894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\frontend_utils.py 2025-09-07T06:56:04.7489399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\functional_utils.py 2025-09-07T06:56:04.7493058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\fx_utils.py 2025-09-07T06:56:04.7496407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture.py 2025-09-07T06:56:04.7500528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture_wrappers.py 2025-09-07T06:56:04.7504001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_compile.py 2025-09-07T06:56:04.7508097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\input_output_analysis.py 2025-09-07T06:56:04.7511554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\logging_utils.py 2025-09-07T06:56:04.7515063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\runtime_wrappers.py 2025-09-07T06:56:04.7519406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\schemas.py 2025-09-07T06:56:04.7523502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_parametrization.py 2025-09-07T06:56:04.7526999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_utils.py 2025-09-07T06:56:04.7530587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\utils.py 2025-09-07T06:56:04.7533908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__init__.py 2025-09-07T06:56:04.7541507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\autograd_cache.cpython-39.pyc 2025-09-07T06:56:04.7545376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\collect_metadata_analysis.cpython-39.pyc 2025-09-07T06:56:04.7548882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\descriptors.cpython-39.pyc 2025-09-07T06:56:04.7562582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\frontend_utils.cpython-39.pyc 2025-09-07T06:56:04.7566027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\functional_utils.cpython-39.pyc 2025-09-07T06:56:04.7569640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\fx_utils.cpython-39.pyc 2025-09-07T06:56:04.7573067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture.cpython-39.pyc 2025-09-07T06:56:04.7576535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture_wrappers.cpython-39.pyc 2025-09-07T06:56:04.7580123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_compile.cpython-39.pyc 2025-09-07T06:56:04.7583929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\input_output_analysis.cpython-39.pyc 2025-09-07T06:56:04.7587538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\logging_utils.cpython-39.pyc 2025-09-07T06:56:04.7591028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\runtime_wrappers.cpython-39.pyc 2025-09-07T06:56:04.7594731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\schemas.cpython-39.pyc 2025-09-07T06:56:04.7598993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_parametrization.cpython-39.pyc 2025-09-07T06:56:04.7602425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_utils.cpython-39.pyc 2025-09-07T06:56:04.7606317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.7620178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.7629323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\aot_autograd.cpython-39.pyc 2025-09-07T06:56:04.7633552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\apis.cpython-39.pyc 2025-09-07T06:56:04.7636634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\autograd_function.cpython-39.pyc 2025-09-07T06:56:04.7650909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\batch_norm_replacement.cpython-39.pyc 2025-09-07T06:56:04.7653826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\benchmark_utils.cpython-39.pyc 2025-09-07T06:56:04.7657493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compilers.cpython-39.pyc 2025-09-07T06:56:04.7662012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compile_utils.cpython-39.pyc 2025-09-07T06:56:04.7664636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\config.cpython-39.pyc 2025-09-07T06:56:04.7668383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\deprecated.cpython-39.pyc 2025-09-07T06:56:04.7671975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\eager_transforms.cpython-39.pyc 2025-09-07T06:56:04.7675910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\functional_call.cpython-39.pyc 2025-09-07T06:56:04.7679635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\fx_minifier.cpython-39.pyc 2025-09-07T06:56:04.7683185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\make_functional.cpython-39.pyc 2025-09-07T06:56:04.7687031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\partitioners.cpython-39.pyc 2025-09-07T06:56:04.7691417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\predispatch.cpython-39.pyc 2025-09-07T06:56:04.7695295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pyfunctorch.cpython-39.pyc 2025-09-07T06:56:04.7708836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\python_key.cpython-39.pyc 2025-09-07T06:56:04.7712957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pytree_hacks.cpython-39.pyc 2025-09-07T06:56:04.7717127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\top_operators_github_usage.cpython-39.pyc 2025-09-07T06:56:04.7721191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.7724732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\vmap.cpython-39.pyc 2025-09-07T06:56:04.7728600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.7738962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\aoti_call_delegate.py 2025-09-07T06:56:04.7741590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\associative_scan.py 2025-09-07T06:56:04.7745284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\auto_functionalize.py 2025-09-07T06:56:04.7758630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\base_hop.py 2025-09-07T06:56:04.7761869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\cond.py 2025-09-07T06:56:04.7765288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\effects.py 2025-09-07T06:56:04.7768634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\executorch_call_delegate.py 2025-09-07T06:56:04.7772238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flat_apply.py 2025-09-07T06:56:04.7775956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flex_attention.py 2025-09-07T06:56:04.7779494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\foreach_map.py 2025-09-07T06:56:04.7783035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\hints_wrap.py 2025-09-07T06:56:04.7786641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\invoke_subgraph.py 2025-09-07T06:56:04.7790164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\map.py 2025-09-07T06:56:04.7793478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\out_dtype.py 2025-09-07T06:56:04.7796879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\run_const_graph.py 2025-09-07T06:56:04.7800611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\scan.py 2025-09-07T06:56:04.7804139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\schema.py 2025-09-07T06:56:04.7807408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\strict_mode.py 2025-09-07T06:56:04.7810811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\torchbind.py 2025-09-07T06:56:04.7814259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\triton_kernel_wrap.py 2025-09-07T06:56:04.7818178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\utils.py 2025-09-07T06:56:04.7822356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\while_loop.py 2025-09-07T06:56:04.7835548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\wrap.py 2025-09-07T06:56:04.7838946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\_invoke_quant.py 2025-09-07T06:56:04.7842454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__init__.py 2025-09-07T06:56:04.7850441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\aoti_call_delegate.cpython-39.pyc 2025-09-07T06:56:04.7853893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\associative_scan.cpython-39.pyc 2025-09-07T06:56:04.7857393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\auto_functionalize.cpython-39.pyc 2025-09-07T06:56:04.7871814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\base_hop.cpython-39.pyc 2025-09-07T06:56:04.7875066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\cond.cpython-39.pyc 2025-09-07T06:56:04.7878515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\effects.cpython-39.pyc 2025-09-07T06:56:04.7882249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\executorch_call_delegate.cpython-39.pyc 2025-09-07T06:56:04.7885585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flat_apply.cpython-39.pyc 2025-09-07T06:56:04.7888996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flex_attention.cpython-39.pyc 2025-09-07T06:56:04.7892518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\foreach_map.cpython-39.pyc 2025-09-07T06:56:04.7896226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\hints_wrap.cpython-39.pyc 2025-09-07T06:56:04.7899679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\invoke_subgraph.cpython-39.pyc 2025-09-07T06:56:04.7903295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\map.cpython-39.pyc 2025-09-07T06:56:04.7906933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\out_dtype.cpython-39.pyc 2025-09-07T06:56:04.7910415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\run_const_graph.cpython-39.pyc 2025-09-07T06:56:04.7913922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\scan.cpython-39.pyc 2025-09-07T06:56:04.7917583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\schema.cpython-39.pyc 2025-09-07T06:56:04.7931659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\strict_mode.cpython-39.pyc 2025-09-07T06:56:04.7935371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\torchbind.cpython-39.pyc 2025-09-07T06:56:04.7938996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\triton_kernel_wrap.cpython-39.pyc 2025-09-07T06:56:04.7942421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.7946113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\while_loop.cpython-39.pyc 2025-09-07T06:56:04.7949973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\wrap.cpython-39.pyc 2025-09-07T06:56:04.7953186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\_invoke_quant.cpython-39.pyc 2025-09-07T06:56:04.7956639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.7975062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analyze_preserves_zero_mask.py 2025-09-07T06:56:04.7978454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\aoti_eager.py 2025-09-07T06:56:04.7981849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\async_compile.py 2025-09-07T06:56:04.7995748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autotune_process.py 2025-09-07T06:56:04.7998996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\await_utils.py 2025-09-07T06:56:04.8002499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\bounds.py 2025-09-07T06:56:04.8005941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\choices.py 2025-09-07T06:56:04.8009652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codecache.py 2025-09-07T06:56:04.8014810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms.py 2025-09-07T06:56:04.8019038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms_debug.py 2025-09-07T06:56:04.8023325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_analysis.py 2025-09-07T06:56:04.8026173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_lowering.py 2025-09-07T06:56:04.8029815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compiler_bisector.py 2025-09-07T06:56:04.8033435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx.py 2025-09-07T06:56:04.8037762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_async.py 2025-09-07T06:56:04.8041348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_ext.py 2025-09-07T06:56:04.8045690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_subproc.py 2025-09-07T06:56:04.8048825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\config.py 2025-09-07T06:56:04.8053194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\constant_folding.py 2025-09-07T06:56:04.8057754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpp_builder.py 2025-09-07T06:56:04.8060881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpu_vec_isa.py 2025-09-07T06:56:04.8074989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_trees.py 2025-09-07T06:56:04.8078409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_utils.py 2025-09-07T06:56:04.8082496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\custom_graph_pass.py 2025-09-07T06:56:04.8086595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\debug.py 2025-09-07T06:56:04.8089906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\decomposition.py 2025-09-07T06:56:04.8093888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dependencies.py 2025-09-07T06:56:04.8097846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dtype_propagation.py 2025-09-07T06:56:04.8101378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\exc.py 2025-09-07T06:56:04.8105643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\extern_node_serializer.py 2025-09-07T06:56:04.8109368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing.py 2025-09-07T06:56:04.8112687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing_utils.py 2025-09-07T06:56:04.8126422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fuzzer.py 2025-09-07T06:56:04.8130168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_utils.py 2025-09-07T06:56:04.8133578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\graph.py 2025-09-07T06:56:04.8170689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\hooks.py 2025-09-07T06:56:04.8174230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\index_propagation.py 2025-09-07T06:56:04.8177962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\inductor_prims.py 2025-09-07T06:56:04.8181473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ir.py 2025-09-07T06:56:04.8187073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\jagged_lowerings.py 2025-09-07T06:56:04.8190643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel_inputs.py 2025-09-07T06:56:04.8194322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel_template_choice.py 2025-09-07T06:56:04.8198273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\loop_body.py 2025-09-07T06:56:04.8206635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\lowering.py 2025-09-07T06:56:04.8211524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\memory.py 2025-09-07T06:56:04.8215425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\metrics.py 2025-09-07T06:56:04.8219001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_ir.py 2025-09-07T06:56:04.8222719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_lowerings.py 2025-09-07T06:56:04.8226624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mock_cache.py 2025-09-07T06:56:04.8230097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ops_handler.py 2025-09-07T06:56:04.8233716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\optimize_indexing.py 2025-09-07T06:56:04.8237619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\output_code.py 2025-09-07T06:56:04.8241215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\pattern_matcher.py 2025-09-07T06:56:04.8245197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\quantized_lowerings.py 2025-09-07T06:56:04.8268357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_cache.py 2025-09-07T06:56:04.8271860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_gemm_autotune_cache.py 2025-09-07T06:56:04.8275559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\scheduler.py 2025-09-07T06:56:04.8280193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\script.ld 2025-09-07T06:56:04.8283664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\select_algorithm.py 2025-09-07T06:56:04.8287878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\shape_propagation.py 2025-09-07T06:56:04.8291479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\sizevars.py 2025-09-07T06:56:04.8294962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\standalone_compile.py 2025-09-07T06:56:04.8298482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\subgraph_lowering.py 2025-09-07T06:56:04.8301996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_case.py 2025-09-07T06:56:04.8315164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_operators.py 2025-09-07T06:56:04.8318593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\tiling_utils.py 2025-09-07T06:56:04.8322157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\triton_bundler.py 2025-09-07T06:56:04.8325962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\utils.py 2025-09-07T06:56:04.8330145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\virtualized.py 2025-09-07T06:56:04.8333762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\wrapper_benchmark.py 2025-09-07T06:56:04.8337330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__autotune_main__.py 2025-09-07T06:56:04.8340844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__init__.py 2025-09-07T06:56:04.8348198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\device_info.py 2025-09-07T06:56:04.8351807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\profile_analysis.py 2025-09-07T06:56:04.8355378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__init__.py 2025-09-07T06:56:04.8371246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\device_info.cpython-39.pyc 2025-09-07T06:56:04.8375765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\profile_analysis.cpython-39.pyc 2025-09-07T06:56:04.8379134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.8397693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic.py 2025-09-07T06:56:04.8401163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic_utils.py 2025-09-07T06:56:04.8404640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learnedheuristic_interface.py 2025-09-07T06:56:04.8418222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learned_heuristic_controller.py 2025-09-07T06:56:04.8421825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__init__.py 2025-09-07T06:56:04.8428170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py 2025-09-07T06:56:04.8431671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py 2025-09-07T06:56:04.8435052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py 2025-09-07T06:56:04.8447743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py 2025-09-07T06:56:04.8451250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py 2025-09-07T06:56:04.8454622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__init__.py 2025-09-07T06:56:04.8461515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMA100.cpython-39.pyc 2025-09-07T06:56:04.8465102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMH100.cpython-39.pyc 2025-09-07T06:56:04.8469177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingA100.cpython-39.pyc 2025-09-07T06:56:04.8482365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingH100.cpython-39.pyc 2025-09-07T06:56:04.8485957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_PadMMA100.cpython-39.pyc 2025-09-07T06:56:04.8489703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.8497694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic.cpython-39.pyc 2025-09-07T06:56:04.8501839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic_utils.cpython-39.pyc 2025-09-07T06:56:04.8505673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learnedheuristic_interface.cpython-39.pyc 2025-09-07T06:56:04.8519277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learned_heuristic_controller.cpython-39.pyc 2025-09-07T06:56:04.8522878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.8531515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_hipify_utils.py 2025-09-07T06:56:04.8535266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\block_analysis.py 2025-09-07T06:56:04.8538591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\common.py 2025-09-07T06:56:04.8542654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp.py 2025-09-07T06:56:04.8547525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_bmm_template.py 2025-09-07T06:56:04.8560559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_flex_attention_template.py 2025-09-07T06:56:04.8564202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_gemm_template.py 2025-09-07T06:56:04.8568291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_grouped_gemm_template.py 2025-09-07T06:56:04.8572192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_micro_gemm.py 2025-09-07T06:56:04.8575988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template.py 2025-09-07T06:56:04.8579601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template_kernel.py 2025-09-07T06:56:04.8583214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_utils.py 2025-09-07T06:56:04.8586924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu.py 2025-09-07T06:56:04.8590941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py 2025-09-07T06:56:04.8594785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_gpu.py 2025-09-07T06:56:04.8598535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_mps.py 2025-09-07T06:56:04.8602210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpu_device_op_overrides.py 2025-09-07T06:56:04.8605857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda_combined_scheduling.py 2025-09-07T06:56:04.8609601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\debug_utils.py 2025-09-07T06:56:04.8623062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\halide.py 2025-09-07T06:56:04.8627335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\memory_planning.py 2025-09-07T06:56:04.8631040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps.py 2025-09-07T06:56:04.8635052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps_device_op_overrides.py 2025-09-07T06:56:04.8638729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\multi_kernel.py 2025-09-07T06:56:04.8642234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\python_wrapper_mtia.py 2025-09-07T06:56:04.8645941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\segmented_tree.py 2025-09-07T06:56:04.8649622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd.py 2025-09-07T06:56:04.8653644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd_kernel_features.py 2025-09-07T06:56:04.8658234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\subgraph.py 2025-09-07T06:56:04.8661665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton.py 2025-09-07T06:56:04.8666250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_combo_kernel.py 2025-09-07T06:56:04.8679548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_split_scan.py 2025-09-07T06:56:04.8683007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_utils.py 2025-09-07T06:56:04.8686361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper.py 2025-09-07T06:56:04.8690492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper_fxir.py 2025-09-07T06:56:04.8694188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__init__.py 2025-09-07T06:56:04.8700843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_runtime\interface.cpp 2025-09-07T06:56:04.8708967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py 2025-09-07T06:56:04.8712439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_env.py 2025-09-07T06:56:04.8715796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_kernel.py 2025-09-07T06:56:04.8719453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_template.py 2025-09-07T06:56:04.8733637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_cache.py 2025-09-07T06:56:04.8737412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_presets.py 2025-09-07T06:56:04.8741208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_python_evt.py 2025-09-07T06:56:04.8744445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_utils.py 2025-09-07T06:56:04.8748043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\device_op_overrides.py 2025-09-07T06:56:04.8751651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\gemm_template.py 2025-09-07T06:56:04.8755243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\serialization.py 2025-09-07T06:56:04.8758746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__init__.py 2025-09-07T06:56:04.8766060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py 2025-09-07T06:56:04.8769836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py 2025-09-07T06:56:04.8773254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py 2025-09-07T06:56:04.8790651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py 2025-09-07T06:56:04.8796565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py 2025-09-07T06:56:04.8800022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py 2025-09-07T06:56:04.8803732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py 2025-09-07T06:56:04.8811122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cuda.cpython-39.pyc 2025-09-07T06:56:04.8814854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cudart.cpython-39.pyc 2025-09-07T06:56:04.8818451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.8836928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py 2025-09-07T06:56:04.8843788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.8851057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py 2025-09-07T06:56:04.8854883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py 2025-09-07T06:56:04.8861888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\special.cpython-39.pyc 2025-09-07T06:56:04.8865562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.8883463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.8891750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\evt_extensions.cpython-39.pyc 2025-09-07T06:56:04.8895718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\gemm_operation_extensions.cpython-39.pyc 2025-09-07T06:56:04.8899055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.8917544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_cpp_scheduling.cpython-39.pyc 2025-09-07T06:56:04.8921030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_env.cpython-39.pyc 2025-09-07T06:56:04.8924899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_kernel.cpython-39.pyc 2025-09-07T06:56:04.8937699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_template.cpython-39.pyc 2025-09-07T06:56:04.8941365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_cache.cpython-39.pyc 2025-09-07T06:56:04.8944909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_presets.cpython-39.pyc 2025-09-07T06:56:04.8948536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_python_evt.cpython-39.pyc 2025-09-07T06:56:04.8952061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_utils.cpython-39.pyc 2025-09-07T06:56:04.8955590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\device_op_overrides.cpython-39.pyc 2025-09-07T06:56:04.8959143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\gemm_template.cpython-39.pyc 2025-09-07T06:56:04.8962917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\serialization.cpython-39.pyc 2025-09-07T06:56:04.8966565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.8974482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_kernel.py 2025-09-07T06:56:04.8978035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_op_overrides.py 2025-09-07T06:56:04.8981430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_scheduling.py 2025-09-07T06:56:04.8994505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\cutedsl_template.py 2025-09-07T06:56:04.8997757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__init__.py 2025-09-07T06:56:04.9005074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_kernel.cpython-39.pyc 2025-09-07T06:56:04.9008971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_op_overrides.cpython-39.pyc 2025-09-07T06:56:04.9012990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_scheduling.cpython-39.pyc 2025-09-07T06:56:04.9027741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\cutedsl_template.cpython-39.pyc 2025-09-07T06:56:04.9032234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cutedsl\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.9040420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\device_op_overrides.py 2025-09-07T06:56:04.9044209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__init__.py 2025-09-07T06:56:04.9050596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\device_op_overrides.cpython-39.pyc 2025-09-07T06:56:04.9054108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.9061894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_conv_template.py 2025-09-07T06:56:04.9065693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_template.py 2025-09-07T06:56:04.9069142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_template.py 2025-09-07T06:56:04.9072781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py 2025-09-07T06:56:04.9086280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py 2025-09-07T06:56:04.9089774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\compile_command.py 2025-09-07T06:56:04.9093334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_benchmark_request.py 2025-09-07T06:56:04.9096776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py 2025-09-07T06:56:04.9100255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_kernel.py 2025-09-07T06:56:04.9103621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template.py 2025-09-07T06:56:04.9107449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template_buffer.py 2025-09-07T06:56:04.9110981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_utils.py 2025-09-07T06:56:04.9114334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__init__.py 2025-09-07T06:56:04.9120963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_conv_template.cpython-39.pyc 2025-09-07T06:56:04.9124645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_template.cpython-39.pyc 2025-09-07T06:56:04.9128131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_template.cpython-39.pyc 2025-09-07T06:56:04.9141521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_universal_gemm_template.cpython-39.pyc 2025-09-07T06:56:04.9145599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_universal_gemm_template.cpython-39.pyc 2025-09-07T06:56:04.9149500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\compile_command.cpython-39.pyc 2025-09-07T06:56:04.9153155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_benchmark_request.cpython-39.pyc 2025-09-07T06:56:04.9156712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_cpp_scheduling.cpython-39.pyc 2025-09-07T06:56:04.9160176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_kernel.cpython-39.pyc 2025-09-07T06:56:04.9163696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template.cpython-39.pyc 2025-09-07T06:56:04.9167143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template_buffer.cpython-39.pyc 2025-09-07T06:56:04.9170878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_utils.cpython-39.pyc 2025-09-07T06:56:04.9174419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.9182856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\device_op_overrides.py 2025-09-07T06:56:04.9186264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__init__.py 2025-09-07T06:56:04.9192317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\device_op_overrides.cpython-39.pyc 2025-09-07T06:56:04.9195976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.9204392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\aoti_hipify_utils.cpython-39.pyc 2025-09-07T06:56:04.9207939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\block_analysis.cpython-39.pyc 2025-09-07T06:56:04.9211360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\common.cpython-39.pyc 2025-09-07T06:56:04.9225074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp.cpython-39.pyc 2025-09-07T06:56:04.9229869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_bmm_template.cpython-39.pyc 2025-09-07T06:56:04.9233431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_flex_attention_template.cpython-39.pyc 2025-09-07T06:56:04.9237292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_gemm_template.cpython-39.pyc 2025-09-07T06:56:04.9241262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_grouped_gemm_template.cpython-39.pyc 2025-09-07T06:56:04.9245403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_micro_gemm.cpython-39.pyc 2025-09-07T06:56:04.9249229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template.cpython-39.pyc 2025-09-07T06:56:04.9253267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template_kernel.cpython-39.pyc 2025-09-07T06:56:04.9257248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_utils.cpython-39.pyc 2025-09-07T06:56:04.9261214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu.cpython-39.pyc 2025-09-07T06:56:04.9265833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu_array_ref.cpython-39.pyc 2025-09-07T06:56:04.9269956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_gpu.cpython-39.pyc 2025-09-07T06:56:04.9274099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_mps.cpython-39.pyc 2025-09-07T06:56:04.9287924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpu_device_op_overrides.cpython-39.pyc 2025-09-07T06:56:04.9291872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cuda_combined_scheduling.cpython-39.pyc 2025-09-07T06:56:04.9295819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\debug_utils.cpython-39.pyc 2025-09-07T06:56:04.9300290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\halide.cpython-39.pyc 2025-09-07T06:56:04.9304389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\memory_planning.cpython-39.pyc 2025-09-07T06:56:04.9308350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps.cpython-39.pyc 2025-09-07T06:56:04.9312491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps_device_op_overrides.cpython-39.pyc 2025-09-07T06:56:04.9315978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\multi_kernel.cpython-39.pyc 2025-09-07T06:56:04.9329644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\python_wrapper_mtia.cpython-39.pyc 2025-09-07T06:56:04.9333433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\segmented_tree.cpython-39.pyc 2025-09-07T06:56:04.9337086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd.cpython-39.pyc 2025-09-07T06:56:04.9341135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd_kernel_features.cpython-39.pyc 2025-09-07T06:56:04.9344832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\subgraph.cpython-39.pyc 2025-09-07T06:56:04.9348434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton.cpython-39.pyc 2025-09-07T06:56:04.9353502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_combo_kernel.cpython-39.pyc 2025-09-07T06:56:04.9357528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_split_scan.cpython-39.pyc 2025-09-07T06:56:04.9370685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_utils.cpython-39.pyc 2025-09-07T06:56:04.9374370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper.cpython-39.pyc 2025-09-07T06:56:04.9378602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper_fxir.cpython-39.pyc 2025-09-07T06:56:04.9382028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.9425084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\subproc_pool.py 2025-09-07T06:56:04.9428607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\tracked_process_pool.py 2025-09-07T06:56:04.9432157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\utils.py 2025-09-07T06:56:04.9435565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__init__.py 2025-09-07T06:56:04.9442911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__main__.py 2025-09-07T06:56:04.9449889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\subproc_pool.cpython-39.pyc 2025-09-07T06:56:04.9453514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\tracked_process_pool.cpython-39.pyc 2025-09-07T06:56:04.9457137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:04.9470885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.9474321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__main__.cpython-39.pyc 2025-09-07T06:56:04.9483241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\b2b_gemm.py 2025-09-07T06:56:04.9486501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\binary_folding.py 2025-09-07T06:56:04.9489818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\bucketing.py 2025-09-07T06:56:04.9493232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\ddp_fusion.py 2025-09-07T06:56:04.9506570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\decompose_mem_bound_mm.py 2025-09-07T06:56:04.9509968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\dedupe_symint_uses.py 2025-09-07T06:56:04.9513454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\efficient_conv_bn_eval.py 2025-09-07T06:56:04.9517278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\freezing_patterns.py 2025-09-07T06:56:04.9520862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fsdp.py 2025-09-07T06:56:04.9524270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fuse_attention.py 2025-09-07T06:56:04.9527939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\group_batch_fusion.py 2025-09-07T06:56:04.9531546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\joint_graph.py 2025-09-07T06:56:04.9535667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\micro_pipeline_tp.py 2025-09-07T06:56:04.9539874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\misc_patterns.py 2025-09-07T06:56:04.9542726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\mkldnn_fusion.py 2025-09-07T06:56:04.9546687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\numeric_utils.py 2025-09-07T06:56:04.9550888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pad_mm.py 2025-09-07T06:56:04.9553820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\post_grad.py 2025-09-07T06:56:04.9557751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pre_grad.py 2025-09-07T06:56:04.9561338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\quantization.py 2025-09-07T06:56:04.9565755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\reinplace.py 2025-09-07T06:56:04.9580246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\replace_random.py 2025-09-07T06:56:04.9582977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\split_cat.py 2025-09-07T06:56:04.9586912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__init__.py 2025-09-07T06:56:04.9595961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py 2025-09-07T06:56:04.9600625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py 2025-09-07T06:56:04.9604192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py 2025-09-07T06:56:04.9618766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py 2025-09-07T06:56:04.9622382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py 2025-09-07T06:56:04.9626311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py 2025-09-07T06:56:04.9629601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py 2025-09-07T06:56:04.9633131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py 2025-09-07T06:56:04.9636632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py 2025-09-07T06:56:04.9640532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py 2025-09-07T06:56:04.9644218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py 2025-09-07T06:56:04.9648055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py 2025-09-07T06:56:04.9651984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py 2025-09-07T06:56:04.9655766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py 2025-09-07T06:56:04.9659477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py 2025-09-07T06:56:04.9675115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py 2025-09-07T06:56:04.9676008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py 2025-09-07T06:56:04.9676769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py 2025-09-07T06:56:04.9677528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py 2025-09-07T06:56:04.9687891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py 2025-09-07T06:56:04.9691528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py 2025-09-07T06:56:04.9695127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py 2025-09-07T06:56:04.9698795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py 2025-09-07T06:56:04.9702647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py 2025-09-07T06:56:04.9706914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py 2025-09-07T06:56:04.9710705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py 2025-09-07T06:56:04.9714525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py 2025-09-07T06:56:04.9718274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__init__.py 2025-09-07T06:56:04.9728932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_pattern.cpython-39.pyc 2025-09-07T06:56:04.9732892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\bmm_pattern.cpython-39.pyc 2025-09-07T06:56:04.9736355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\mm_pattern.cpython-39.pyc 2025-09-07T06:56:04.9749727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_1.cpython-39.pyc 2025-09-07T06:56:04.9753894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_10.cpython-39.pyc 2025-09-07T06:56:04.9757692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_11.cpython-39.pyc 2025-09-07T06:56:04.9761231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_12.cpython-39.pyc 2025-09-07T06:56:04.9764978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_13.cpython-39.pyc 2025-09-07T06:56:04.9768647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_14.cpython-39.pyc 2025-09-07T06:56:04.9772230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_15.cpython-39.pyc 2025-09-07T06:56:04.9776030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_16.cpython-39.pyc 2025-09-07T06:56:04.9779720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_17.cpython-39.pyc 2025-09-07T06:56:04.9783414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_18.cpython-39.pyc 2025-09-07T06:56:04.9787401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_19.cpython-39.pyc 2025-09-07T06:56:04.9791047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_2.cpython-39.pyc 2025-09-07T06:56:04.9794648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_20.cpython-39.pyc 2025-09-07T06:56:04.9807696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_21.cpython-39.pyc 2025-09-07T06:56:04.9811551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_22.cpython-39.pyc 2025-09-07T06:56:04.9815151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_23.cpython-39.pyc 2025-09-07T06:56:04.9818741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_24.cpython-39.pyc 2025-09-07T06:56:04.9822388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_3.cpython-39.pyc 2025-09-07T06:56:04.9826079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_4.cpython-39.pyc 2025-09-07T06:56:04.9829681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_5.cpython-39.pyc 2025-09-07T06:56:04.9833457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_6.cpython-39.pyc 2025-09-07T06:56:04.9837163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_7.cpython-39.pyc 2025-09-07T06:56:04.9841011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_8.cpython-39.pyc 2025-09-07T06:56:04.9844752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_9.cpython-39.pyc 2025-09-07T06:56:04.9848482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.9860161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\b2b_gemm.cpython-39.pyc 2025-09-07T06:56:04.9863714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\binary_folding.cpython-39.pyc 2025-09-07T06:56:04.9867506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\bucketing.cpython-39.pyc 2025-09-07T06:56:04.9881250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\ddp_fusion.cpython-39.pyc 2025-09-07T06:56:04.9884757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\decompose_mem_bound_mm.cpython-39.pyc 2025-09-07T06:56:04.9888564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\dedupe_symint_uses.cpython-39.pyc 2025-09-07T06:56:04.9892158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\efficient_conv_bn_eval.cpython-39.pyc 2025-09-07T06:56:04.9895632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\freezing_patterns.cpython-39.pyc 2025-09-07T06:56:04.9899280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fsdp.cpython-39.pyc 2025-09-07T06:56:04.9902847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fuse_attention.cpython-39.pyc 2025-09-07T06:56:04.9906468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\group_batch_fusion.cpython-39.pyc 2025-09-07T06:56:04.9910136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\joint_graph.cpython-39.pyc 2025-09-07T06:56:04.9913693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\micro_pipeline_tp.cpython-39.pyc 2025-09-07T06:56:04.9917223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\misc_patterns.cpython-39.pyc 2025-09-07T06:56:04.9920853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\mkldnn_fusion.cpython-39.pyc 2025-09-07T06:56:04.9924679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\numeric_utils.cpython-39.pyc 2025-09-07T06:56:04.9937580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pad_mm.cpython-39.pyc 2025-09-07T06:56:04.9941791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\post_grad.cpython-39.pyc 2025-09-07T06:56:04.9945711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pre_grad.cpython-39.pyc 2025-09-07T06:56:04.9949420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\quantization.cpython-39.pyc 2025-09-07T06:56:04.9953284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\reinplace.cpython-39.pyc 2025-09-07T06:56:04.9956882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\replace_random.cpython-39.pyc 2025-09-07T06:56:04.9960761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\split_cat.cpython-39.pyc 2025-09-07T06:56:04.9964440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:04.9972758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\bmm.py 2025-09-07T06:56:04.9976101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\conv.py 2025-09-07T06:56:04.9979444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm.py 2025-09-07T06:56:04.9983013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_common.py 2025-09-07T06:56:04.9986460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_grouped.py 2025-09-07T06:56:04.9999513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_plus_mm.py 2025-09-07T06:56:05.0003182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__init__.py 2025-09-07T06:56:05.0009758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\common.py 2025-09-07T06:56:05.0013223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_attention.py 2025-09-07T06:56:05.0016647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_cpu.py 2025-09-07T06:56:05.0020163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_decoding.py 2025-09-07T06:56:05.0023574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__init__.py 2025-09-07T06:56:05.0042829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\common.py.jinja 2025-09-07T06:56:05.0046470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_attention.py.jinja 2025-09-07T06:56:05.0049917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja 2025-09-07T06:56:05.0062993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_decode.py.jinja 2025-09-07T06:56:05.0066559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\utilities.py.jinja 2025-09-07T06:56:05.0074306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\common.cpython-39.pyc 2025-09-07T06:56:05.0077562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_attention.cpython-39.pyc 2025-09-07T06:56:05.0081048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_cpu.cpython-39.pyc 2025-09-07T06:56:05.0094688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_decoding.cpython-39.pyc 2025-09-07T06:56:05.0098251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.0106288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\bmm.cpython-39.pyc 2025-09-07T06:56:05.0109675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\conv.cpython-39.pyc 2025-09-07T06:56:05.0113082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm.cpython-39.pyc 2025-09-07T06:56:05.0126275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_common.cpython-39.pyc 2025-09-07T06:56:05.0130088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_grouped.cpython-39.pyc 2025-09-07T06:56:05.0133757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_plus_mm.cpython-39.pyc 2025-09-07T06:56:05.0137950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.0146044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\build_package.py 2025-09-07T06:56:05.0149416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\package.py 2025-09-07T06:56:05.0152604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__init__.py 2025-09-07T06:56:05.0159509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\build_package.cpython-39.pyc 2025-09-07T06:56:05.0163902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\package.cpython-39.pyc 2025-09-07T06:56:05.0168972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.0192690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\autotune_cache.py 2025-09-07T06:56:05.0198139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\benchmarking.py 2025-09-07T06:56:05.0203934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\cache_dir_utils.py 2025-09-07T06:56:05.0209111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\compile_tasks.py 2025-09-07T06:56:05.0505651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\coordinate_descent_tuner.py 2025-09-07T06:56:05.0508653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\debug_utils.py 2025-09-07T06:56:05.0512049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\halide_helpers.py 2025-09-07T06:56:05.0515430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\hints.py 2025-09-07T06:56:05.0518738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\runtime_utils.py 2025-09-07T06:56:05.0522270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\static_cuda_launcher.py 2025-09-07T06:56:05.0526389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_compat.py 2025-09-07T06:56:05.0529164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_helpers.py 2025-09-07T06:56:05.0532862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_heuristics.py 2025-09-07T06:56:05.0537980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__init__.py 2025-09-07T06:56:05.0544334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\autotune_cache.cpython-39.pyc 2025-09-07T06:56:05.0548041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\benchmarking.cpython-39.pyc 2025-09-07T06:56:05.0551916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\cache_dir_utils.cpython-39.pyc 2025-09-07T06:56:05.0895582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\compile_tasks.cpython-39.pyc 2025-09-07T06:56:05.0899002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\coordinate_descent_tuner.cpython-39.pyc 2025-09-07T06:56:05.0902469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\debug_utils.cpython-39.pyc 2025-09-07T06:56:05.0906252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\halide_helpers.cpython-39.pyc 2025-09-07T06:56:05.0909805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\hints.cpython-39.pyc 2025-09-07T06:56:05.0913263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\runtime_utils.cpython-39.pyc 2025-09-07T06:56:05.0916782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\static_cuda_launcher.cpython-39.pyc 2025-09-07T06:56:05.0920278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_compat.cpython-39.pyc 2025-09-07T06:56:05.0923914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_helpers.cpython-39.pyc 2025-09-07T06:56:05.0927445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_heuristics.cpython-39.pyc 2025-09-07T06:56:05.0931546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.0940005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\aten.py 2025-09-07T06:56:05.0943431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\base.py 2025-09-07T06:56:05.0946865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\contiguous_mm.py 2025-09-07T06:56:05.0950365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\decompose_k.py 2025-09-07T06:56:05.1256315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\gemm.py 2025-09-07T06:56:05.1259843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\registry.py 2025-09-07T06:56:05.1263573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\triton.py 2025-09-07T06:56:05.1267662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\triton_addmm.py 2025-09-07T06:56:05.1271194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__init__.py 2025-09-07T06:56:05.1278761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__pycache__\aten.cpython-39.pyc 2025-09-07T06:56:05.1282530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__pycache__\base.cpython-39.pyc 2025-09-07T06:56:05.1285805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__pycache__\contiguous_mm.cpython-39.pyc 2025-09-07T06:56:05.1611774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__pycache__\decompose_k.cpython-39.pyc 2025-09-07T06:56:05.1614349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__pycache__\gemm.cpython-39.pyc 2025-09-07T06:56:05.1618479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__pycache__\registry.cpython-39.pyc 2025-09-07T06:56:05.1622040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__pycache__\triton.cpython-39.pyc 2025-09-07T06:56:05.1626188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__pycache__\triton_addmm.cpython-39.pyc 2025-09-07T06:56:05.1629809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.1643057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\analyze_preserves_zero_mask.cpython-39.pyc 2025-09-07T06:56:05.1646676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\aoti_eager.cpython-39.pyc 2025-09-07T06:56:05.1650459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\async_compile.cpython-39.pyc 2025-09-07T06:56:05.1658908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\autotune_process.cpython-39.pyc 2025-09-07T06:56:05.1662637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\await_utils.cpython-39.pyc 2025-09-07T06:56:05.1666266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\bounds.cpython-39.pyc 2025-09-07T06:56:05.1669929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\choices.cpython-39.pyc 2025-09-07T06:56:05.1673429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\codecache.cpython-39.pyc 2025-09-07T06:56:05.1677986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms.cpython-39.pyc 2025-09-07T06:56:05.1682309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms_debug.cpython-39.pyc 2025-09-07T06:56:05.1686096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_analysis.cpython-39.pyc 2025-09-07T06:56:05.1689809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_lowering.cpython-39.pyc 2025-09-07T06:56:05.1693790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compiler_bisector.cpython-39.pyc 2025-09-07T06:56:05.1697629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx.cpython-39.pyc 2025-09-07T06:56:05.1701675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_async.cpython-39.pyc 2025-09-07T06:56:05.1705821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_ext.cpython-39.pyc 2025-09-07T06:56:05.1714284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_subproc.cpython-39.pyc 2025-09-07T06:56:05.1717909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\config.cpython-39.pyc 2025-09-07T06:56:05.1721861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\constant_folding.cpython-39.pyc 2025-09-07T06:56:05.1725462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpp_builder.cpython-39.pyc 2025-09-07T06:56:05.1729495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpu_vec_isa.cpython-39.pyc 2025-09-07T06:56:05.1733361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_trees.cpython-39.pyc 2025-09-07T06:56:05.1737615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_utils.cpython-39.pyc 2025-09-07T06:56:05.1741568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\custom_graph_pass.cpython-39.pyc 2025-09-07T06:56:05.1749050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\debug.cpython-39.pyc 2025-09-07T06:56:05.1752944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\decomposition.cpython-39.pyc 2025-09-07T06:56:05.1756770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dependencies.cpython-39.pyc 2025-09-07T06:56:05.1760457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dtype_propagation.cpython-39.pyc 2025-09-07T06:56:05.1763975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\exc.cpython-39.pyc 2025-09-07T06:56:05.1767537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\extern_node_serializer.cpython-39.pyc 2025-09-07T06:56:05.1771284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing.cpython-39.pyc 2025-09-07T06:56:05.1774793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing_utils.cpython-39.pyc 2025-09-07T06:56:05.1778669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fuzzer.cpython-39.pyc 2025-09-07T06:56:05.1786171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fx_utils.cpython-39.pyc 2025-09-07T06:56:05.1789680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\graph.cpython-39.pyc 2025-09-07T06:56:05.1793972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\hooks.cpython-39.pyc 2025-09-07T06:56:05.1797959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\index_propagation.cpython-39.pyc 2025-09-07T06:56:05.1801631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\inductor_prims.cpython-39.pyc 2025-09-07T06:56:05.1805014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ir.cpython-39.pyc 2025-09-07T06:56:05.1810403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\jagged_lowerings.cpython-39.pyc 2025-09-07T06:56:05.1814099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\kernel_inputs.cpython-39.pyc 2025-09-07T06:56:05.1824906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\kernel_template_choice.cpython-39.pyc 2025-09-07T06:56:05.1828571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\loop_body.cpython-39.pyc 2025-09-07T06:56:05.1832228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\lowering.cpython-39.pyc 2025-09-07T06:56:05.1851397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\memory.cpython-39.pyc 2025-09-07T06:56:05.1855280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\metrics.cpython-39.pyc 2025-09-07T06:56:05.1858915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_ir.cpython-39.pyc 2025-09-07T06:56:05.1862555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_lowerings.cpython-39.pyc 2025-09-07T06:56:05.1866703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mock_cache.cpython-39.pyc 2025-09-07T06:56:05.1873853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ops_handler.cpython-39.pyc 2025-09-07T06:56:05.1877868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\optimize_indexing.cpython-39.pyc 2025-09-07T06:56:05.1881618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\output_code.cpython-39.pyc 2025-09-07T06:56:05.1885380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\pattern_matcher.cpython-39.pyc 2025-09-07T06:56:05.1889675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\quantized_lowerings.cpython-39.pyc 2025-09-07T06:56:05.1893215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_cache.cpython-39.pyc 2025-09-07T06:56:05.1897154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_gemm_autotune_cache.cpython-39.pyc 2025-09-07T06:56:05.1900647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\scheduler.cpython-39.pyc 2025-09-07T06:56:05.1905768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\select_algorithm.cpython-39.pyc 2025-09-07T06:56:05.1914271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\shape_propagation.cpython-39.pyc 2025-09-07T06:56:05.1917679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\sizevars.cpython-39.pyc 2025-09-07T06:56:05.1921471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\standalone_compile.cpython-39.pyc 2025-09-07T06:56:05.1925016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\subgraph_lowering.cpython-39.pyc 2025-09-07T06:56:05.1928495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_case.cpython-39.pyc 2025-09-07T06:56:05.1932086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_operators.cpython-39.pyc 2025-09-07T06:56:05.1935979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\tiling_utils.cpython-39.pyc 2025-09-07T06:56:05.1939561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\triton_bundler.cpython-39.pyc 2025-09-07T06:56:05.1947168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:05.1951606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\virtualized.cpython-39.pyc 2025-09-07T06:56:05.1955436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\wrapper_benchmark.cpython-39.pyc 2025-09-07T06:56:05.1959034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__autotune_main__.cpython-39.pyc 2025-09-07T06:56:05.1962536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.1973521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\closure.py 2025-09-07T06:56:05.1977256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\computation.py 2025-09-07T06:56:05.1980843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\config.py 2025-09-07T06:56:05.1984203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\debug.py 2025-09-07T06:56:05.1987718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\device_context.py 2025-09-07T06:56:05.1996428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\extract_compiled_graph.py 2025-09-07T06:56:05.1999043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ir_cache.py 2025-09-07T06:56:05.2002436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\metrics.py 2025-09-07T06:56:05.2005930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\tensor_factory_functions.py 2025-09-07T06:56:05.2009797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ts_backend.py 2025-09-07T06:56:05.2013502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__init__.py 2025-09-07T06:56:05.2021383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\closure.cpython-39.pyc 2025-09-07T06:56:05.2024947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\computation.cpython-39.pyc 2025-09-07T06:56:05.2028557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\config.cpython-39.pyc 2025-09-07T06:56:05.2036756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\debug.cpython-39.pyc 2025-09-07T06:56:05.2040205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\device_context.cpython-39.pyc 2025-09-07T06:56:05.2044318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\extract_compiled_graph.cpython-39.pyc 2025-09-07T06:56:05.2048159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ir_cache.cpython-39.pyc 2025-09-07T06:56:05.2051412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\metrics.cpython-39.pyc 2025-09-07T06:56:05.2055611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\tensor_factory_functions.cpython-39.pyc 2025-09-07T06:56:05.2059714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ts_backend.cpython-39.pyc 2025-09-07T06:56:05.2062553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2074498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\autograd.py 2025-09-07T06:56:05.2078590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\custom_ops.py 2025-09-07T06:56:05.2082717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_class_registry.py 2025-09-07T06:56:05.2085972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_impl.py 2025-09-07T06:56:05.2094142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_profile.py 2025-09-07T06:56:05.2097020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\infer_schema.py 2025-09-07T06:56:05.2100482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\simple_registry.py 2025-09-07T06:56:05.2103846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\triton.py 2025-09-07T06:56:05.2107885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\utils.py 2025-09-07T06:56:05.2111496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__init__.py 2025-09-07T06:56:05.2118683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\autograd.cpython-39.pyc 2025-09-07T06:56:05.2123025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\custom_ops.cpython-39.pyc 2025-09-07T06:56:05.2125850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_class_registry.cpython-39.pyc 2025-09-07T06:56:05.2134361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_impl.cpython-39.pyc 2025-09-07T06:56:05.2136966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_profile.cpython-39.pyc 2025-09-07T06:56:05.2140795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\infer_schema.cpython-39.pyc 2025-09-07T06:56:05.2144236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\simple_registry.cpython-39.pyc 2025-09-07T06:56:05.2148311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\triton.cpython-39.pyc 2025-09-07T06:56:05.2152137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:05.2155474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2163379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\scribe.py 2025-09-07T06:56:05.2166749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\structured.py 2025-09-07T06:56:05.2170721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_internal.py 2025-09-07T06:56:05.2174604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_registrations.py 2025-09-07T06:56:05.2182343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__init__.py 2025-09-07T06:56:05.2189718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\scribe.cpython-39.pyc 2025-09-07T06:56:05.2193786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\structured.cpython-39.pyc 2025-09-07T06:56:05.2197563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_internal.cpython-39.pyc 2025-09-07T06:56:05.2205374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_registrations.cpython-39.pyc 2025-09-07T06:56:05.2209237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2216982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\fft.py 2025-09-07T06:56:05.2220627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\linalg.py 2025-09-07T06:56:05.2223731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\random.py 2025-09-07T06:56:05.2227378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_binary_ufuncs_impl.py 2025-09-07T06:56:05.2231216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_casting_dicts.py 2025-09-07T06:56:05.2238526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes.py 2025-09-07T06:56:05.2241724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes_impl.py 2025-09-07T06:56:05.2245302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs.py 2025-09-07T06:56:05.2248694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs_impl.py 2025-09-07T06:56:05.2252373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_getlimits.py 2025-09-07T06:56:05.2255810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ndarray.py 2025-09-07T06:56:05.2259217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_normalizations.py 2025-09-07T06:56:05.2262654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_reductions_impl.py 2025-09-07T06:56:05.2266134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ufuncs.py 2025-09-07T06:56:05.2269479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_unary_ufuncs_impl.py 2025-09-07T06:56:05.2272865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_util.py 2025-09-07T06:56:05.2276360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__init__.py 2025-09-07T06:56:05.2283004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\utils.py 2025-09-07T06:56:05.2286635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__init__.py 2025-09-07T06:56:05.2293437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\utils.cpython-39.pyc 2025-09-07T06:56:05.2297396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2305448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\fft.cpython-39.pyc 2025-09-07T06:56:05.2309183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\linalg.cpython-39.pyc 2025-09-07T06:56:05.2312636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\random.cpython-39.pyc 2025-09-07T06:56:05.2320430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_binary_ufuncs_impl.cpython-39.pyc 2025-09-07T06:56:05.2323980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_casting_dicts.cpython-39.pyc 2025-09-07T06:56:05.2327452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes.cpython-39.pyc 2025-09-07T06:56:05.2330918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes_impl.cpython-39.pyc 2025-09-07T06:56:05.2334345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs.cpython-39.pyc 2025-09-07T06:56:05.2338127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs_impl.cpython-39.pyc 2025-09-07T06:56:05.2341954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_getlimits.cpython-39.pyc 2025-09-07T06:56:05.2345753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ndarray.cpython-39.pyc 2025-09-07T06:56:05.2349409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_normalizations.cpython-39.pyc 2025-09-07T06:56:05.2352969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_reductions_impl.cpython-39.pyc 2025-09-07T06:56:05.2356370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ufuncs.cpython-39.pyc 2025-09-07T06:56:05.2359904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_unary_ufuncs_impl.cpython-39.pyc 2025-09-07T06:56:05.2364760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_util.cpython-39.pyc 2025-09-07T06:56:05.2368254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2379914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\context.py 2025-09-07T06:56:05.2383363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\debug_prims.py 2025-09-07T06:56:05.2386849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\executor.py 2025-09-07T06:56:05.2390221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\rng_prims.py 2025-09-07T06:56:05.2394178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__init__.py 2025-09-07T06:56:05.2405989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\context.cpython-39.pyc 2025-09-07T06:56:05.2409370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\debug_prims.cpython-39.pyc 2025-09-07T06:56:05.2413284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\executor.cpython-39.pyc 2025-09-07T06:56:05.2421239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\rng_prims.cpython-39.pyc 2025-09-07T06:56:05.2424919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2432866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\wrappers.py 2025-09-07T06:56:05.2436989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__init__.py 2025-09-07T06:56:05.2444086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\wrappers.cpython-39.pyc 2025-09-07T06:56:05.2447774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2455229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\fft.py 2025-09-07T06:56:05.2461206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\_conversions.py 2025-09-07T06:56:05.2465105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__init__.py 2025-09-07T06:56:05.2473105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__init__.py 2025-09-07T06:56:05.2480730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2488302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__init__.py 2025-09-07T06:56:05.2494947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__init__.py 2025-09-07T06:56:05.2503097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2510324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2522199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__init__.py 2025-09-07T06:56:05.2529027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2536502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\fft.cpython-39.pyc 2025-09-07T06:56:05.2540136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\_conversions.cpython-39.pyc 2025-09-07T06:56:05.2543739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2557836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\cli_function_profiler.py 2025-09-07T06:56:05.2561606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\compile_time_profiler.py 2025-09-07T06:56:05.2565090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__init__.py 2025-09-07T06:56:05.2576485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-09-07T06:56:05.2580583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\compile_time_profiler.cpython-39.pyc 2025-09-07T06:56:05.2584614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2597509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_impls.py 2025-09-07T06:56:05.2601913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_tensor.py 2025-09-07T06:56:05.2607153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_utils.py 2025-09-07T06:56:05.2613973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\functional_tensor.py 2025-09-07T06:56:05.2618717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\meta_utils.py 2025-09-07T06:56:05.2621849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\schema_check_mode.py 2025-09-07T06:56:05.2625616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\_fake_tensor_utils.py 2025-09-07T06:56:05.2630165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__init__.py 2025-09-07T06:56:05.2636477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_impls.cpython-39.pyc 2025-09-07T06:56:05.2640242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_tensor.cpython-39.pyc 2025-09-07T06:56:05.2644404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_utils.cpython-39.pyc 2025-09-07T06:56:05.2652231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\functional_tensor.cpython-39.pyc 2025-09-07T06:56:05.2655833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\meta_utils.cpython-39.pyc 2025-09-07T06:56:05.2660302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\schema_check_mode.cpython-39.pyc 2025-09-07T06:56:05.2663783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\_fake_tensor_utils.cpython-39.pyc 2025-09-07T06:56:05.2667378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2675502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__init__.py 2025-09-07T06:56:05.2681377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\version.py 2025-09-07T06:56:05.2685014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\_structures.py 2025-09-07T06:56:05.2688517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__init__.py 2025-09-07T06:56:05.2701295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\version.cpython-39.pyc 2025-09-07T06:56:05.2704824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\_structures.cpython-39.pyc 2025-09-07T06:56:05.2708405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2720795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2729126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\functional.cpython-39.pyc 2025-09-07T06:56:05.2733227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\hub.cpython-39.pyc 2025-09-07T06:56:05.2737482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\library.cpython-39.pyc 2025-09-07T06:56:05.2745666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\overrides.cpython-39.pyc 2025-09-07T06:56:05.2750492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\quasirandom.cpython-39.pyc 2025-09-07T06:56:05.2754026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\random.cpython-39.pyc 2025-09-07T06:56:05.2757455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\return_types.cpython-39.pyc 2025-09-07T06:56:05.2760977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\serialization.cpython-39.pyc 2025-09-07T06:56:05.2765067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\storage.cpython-39.pyc 2025-09-07T06:56:05.2769138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\torch_version.cpython-39.pyc 2025-09-07T06:56:05.2772626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\types.cpython-39.pyc 2025-09-07T06:56:05.2776064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\version.cpython-39.pyc 2025-09-07T06:56:05.2779381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_appdirs.cpython-39.pyc 2025-09-07T06:56:05.2782829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_classes.cpython-39.pyc 2025-09-07T06:56:05.2786428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_compile.cpython-39.pyc 2025-09-07T06:56:05.2790040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_custom_ops.cpython-39.pyc 2025-09-07T06:56:05.2793912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_environment.cpython-39.pyc 2025-09-07T06:56:05.2801612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_guards.cpython-39.pyc 2025-09-07T06:56:05.2805344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_jit_internal.cpython-39.pyc 2025-09-07T06:56:05.2808824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_linalg_utils.cpython-39.pyc 2025-09-07T06:56:05.2812374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lobpcg.cpython-39.pyc 2025-09-07T06:56:05.2815802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lowrank.cpython-39.pyc 2025-09-07T06:56:05.2819166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_meta_registrations.cpython-39.pyc 2025-09-07T06:56:05.2825043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_namedtensor_internals.cpython-39.pyc 2025-09-07T06:56:05.2828546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_ops.cpython-39.pyc 2025-09-07T06:56:05.2836288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_python_dispatcher.cpython-39.pyc 2025-09-07T06:56:05.2839610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_size_docs.cpython-39.pyc 2025-09-07T06:56:05.2843218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_sources.cpython-39.pyc 2025-09-07T06:56:05.2846792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_storage_docs.cpython-39.pyc 2025-09-07T06:56:05.2850339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_streambase.cpython-39.pyc 2025-09-07T06:56:05.2854062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor.cpython-39.pyc 2025-09-07T06:56:05.2857839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_docs.cpython-39.pyc 2025-09-07T06:56:05.2862036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_str.cpython-39.pyc 2025-09-07T06:56:05.2865760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_thread_safe_fork.cpython-39.pyc 2025-09-07T06:56:05.2873693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_torch_docs.cpython-39.pyc 2025-09-07T06:56:05.2879945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils.cpython-39.pyc 2025-09-07T06:56:05.2883588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils_internal.cpython-39.pyc 2025-09-07T06:56:05.2887450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_VF.cpython-39.pyc 2025-09-07T06:56:05.2891077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_vmap_internals.cpython-39.pyc 2025-09-07T06:56:05.2894585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_weights_only_unpickler.cpython-39.pyc 2025-09-07T06:56:05.2898335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__config__.cpython-39.pyc 2025-09-07T06:56:05.2901515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__future__.cpython-39.pyc 2025-09-07T06:56:05.2913403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__init__.cpython-39.pyc 2025-09-07T06:56:05.2921075Z 13531 File(s) copied 2025-09-07T06:56:05.4330068Z ********************************************************************** 2025-09-07T06:56:05.4330502Z ** Visual Studio 2022 Developer Command Prompt v17.12.11 2025-09-07T06:56:05.4330867Z ** Copyright (c) 2022 Microsoft Corporation 2025-09-07T06:56:05.4331166Z ********************************************************************** 2025-09-07T06:56:05.8841895Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-09-07T06:56:05.8876634Z 2025-09-07T06:56:05.8877150Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-09-07T06:56:05.8880958Z 2025-09-07T06:56:05.8881465Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-09-07T06:56:05.8884278Z 2025-09-07T06:56:05.8884676Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-09-07T06:56:05.8887479Z 2025-09-07T06:56:05.8888032Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-09-07T06:56:05.8890590Z 2025-09-07T06:56:05.8890866Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-09-07T06:56:05.9072314Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-09-07T06:56:05.9073368Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-2-azure-eastus.actions.githubusercontent.com/139//idtoken/f409845e-2ea6-41ce-a516-e066432415ca/0dd5a3e4-574d-50d4-ae31-2035a3b11fdb?api-version=2.0 2025-09-07T06:56:05.9074444Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-09-07T06:56:05.9074846Z ALLUSERSPROFILE=C:\ProgramData 2025-09-07T06:56:05.9075238Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-09-07T06:56:05.9075666Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-09-07T06:56:05.9075958Z AWS_DEFAULT_REGION=us-east-1 2025-09-07T06:56:05.9076205Z AWS_EXECUTION_ENV=EC2 2025-09-07T06:56:05.9076429Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-09-07T06:56:05.9076677Z CI=true 2025-09-07T06:56:05.9076927Z CommandPromptType=Native 2025-09-07T06:56:05.9077220Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-09-07T06:56:05.9077551Z COMPUTERNAME=EC2AMAZ-F4P7NAP 2025-09-07T06:56:05.9077818Z COMSPEC=C:\Windows\system32\cmd.exe 2025-09-07T06:56:05.9078230Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T06:56:05.9078615Z CONDA_DEFAULT_ENV=base 2025-09-07T06:56:05.9078878Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-09-07T06:56:05.9079268Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T06:56:05.9079634Z CONDA_PARENT_DIR=C:\Jenkins 2025-09-07T06:56:05.9079870Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-09-07T06:56:05.9080142Z CONDA_PROMPT_MODIFIER=(base) 2025-09-07T06:56:05.9080418Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-09-07T06:56:05.9080859Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T06:56:05.9081243Z CONDA_SHLVL=1 2025-09-07T06:56:05.9081440Z CONTINUE_THROUGH_ERROR=True 2025-09-07T06:56:05.9081773Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0 2025-09-07T06:56:05.9082322Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T06:56:05.9082811Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-09-07T06:56:05.9083287Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-09-07T06:56:05.9083771Z CUDA_PATH_V13_0=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0 2025-09-07T06:56:05.9084135Z CUDA_VERSION=cpu 2025-09-07T06:56:05.9084377Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-09-07T06:56:05.9084806Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-09-07T06:56:05.9085206Z CommonProgramW6432=C:\Program Files\Common Files 2025-09-07T06:56:05.9085688Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-09-07T06:56:05.9086113Z DISTUTILS_USE_SDK=1 2025-09-07T06:56:05.9086370Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-09-07T06:56:05.9086680Z EC2LAUNCH_TELEMETRY=1 2025-09-07T06:56:05.9087075Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-09-07T06:56:05.9089282Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-09-07T06:56:05.9091312Z Framework40Version=v4.0 2025-09-07T06:56:05.9091599Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-09-07T06:56:05.9091986Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-09-07T06:56:05.9092319Z FrameworkVersion=v4.0.30319 2025-09-07T06:56:05.9092579Z FrameworkVersion64=v4.0.30319 2025-09-07T06:56:05.9092922Z GITHUB_ACTION=test 2025-09-07T06:56:05.9093135Z GITHUB_ACTIONS=true 2025-09-07T06:56:05.9093328Z GITHUB_ACTION_REF= 2025-09-07T06:56:05.9093548Z GITHUB_ACTION_REPOSITORY= 2025-09-07T06:56:05.9093787Z GITHUB_ACTOR=pytorchmergebot 2025-09-07T06:56:05.9094038Z GITHUB_ACTOR_ID=97764156 2025-09-07T06:56:05.9094285Z GITHUB_API_URL=https://api.github.com 2025-09-07T06:56:05.9094558Z GITHUB_BASE_REF= 2025-09-07T06:56:05.9095006Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T06:56:05.9095512Z GITHUB_EVENT_NAME=push 2025-09-07T06:56:05.9095869Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-09-07T06:56:05.9096319Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-09-07T06:56:05.9096631Z GITHUB_HEAD_REF= 2025-09-07T06:56:05.9096814Z GITHUB_JOB=test 2025-09-07T06:56:05.9097734Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T06:56:05.9098519Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T06:56:05.9099037Z GITHUB_REF=refs/heads/main 2025-09-07T06:56:05.9099270Z GITHUB_REF_NAME=main 2025-09-07T06:56:05.9099480Z GITHUB_REF_PROTECTED=true 2025-09-07T06:56:05.9099713Z GITHUB_REF_TYPE=branch 2025-09-07T06:56:05.9099938Z GITHUB_REPOSITORY=pytorch/pytorch 2025-09-07T06:56:05.9100202Z GITHUB_REPOSITORY_ID=65600975 2025-09-07T06:56:05.9100448Z GITHUB_REPOSITORY_OWNER=pytorch 2025-09-07T06:56:05.9100707Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-09-07T06:56:05.9101042Z GITHUB_RETENTION_DAYS=90 2025-09-07T06:56:05.9101263Z GITHUB_RUN_ATTEMPT=1 2025-09-07T06:56:05.9101471Z GITHUB_RUN_ID=17524754564 2025-09-07T06:56:05.9101697Z GITHUB_RUN_NUMBER=143911 2025-09-07T06:56:05.9101959Z GITHUB_SERVER_URL=https://github.com 2025-09-07T06:56:05.9102274Z GITHUB_SHA=93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:56:05.9102917Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T06:56:05.9103728Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T06:56:05.9104315Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-09-07T06:56:05.9104672Z GITHUB_WORKFLOW=trunk 2025-09-07T06:56:05.9105049Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-09-07T06:56:05.9105561Z GITHUB_WORKFLOW_SHA=93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:56:05.9105973Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:56:05.9106312Z GIT_DEFAULT_BRANCH=main 2025-09-07T06:56:05.9106524Z HOME=C:\Users\runneruser 2025-09-07T06:56:05.9108489Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-09-07T06:56:05.9110732Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-09-07T06:56:05.9111249Z INSTALL_WINDOWS_SDK=1 2025-09-07T06:56:05.9111456Z is_x64_arch=true 2025-09-07T06:56:05.9111641Z JOB_ID=49774387897 2025-09-07T06:56:05.9112007Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T06:56:05.9113322Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-09-07T06:56:05.9115501Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-09-07T06:56:05.9116950Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-09-07T06:56:05.9117349Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-09-07T06:56:05.9117686Z NO_TD=False 2025-09-07T06:56:05.9117877Z NO_TEST_TIMEOUT=False 2025-09-07T06:56:05.9118087Z NUMBER_OF_PROCESSORS=16 2025-09-07T06:56:05.9118299Z NUM_TEST_SHARDS=3 2025-09-07T06:56:05.9118564Z OLDPWD=C:/17524754564/build-results 2025-09-07T06:56:05.9118818Z OS=Windows_NT 2025-09-07T06:56:05.9126521Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;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:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-09-07T06:56:05.9134651Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-09-07T06:56:05.9134994Z Platform=x64 2025-09-07T06:56:05.9135197Z PROCESSOR_ARCHITECTURE=AMD64 2025-09-07T06:56:05.9135574Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-09-07T06:56:05.9135958Z PROCESSOR_LEVEL=6 2025-09-07T06:56:05.9136168Z PROCESSOR_REVISION=5507 2025-09-07T06:56:05.9136400Z PROGRAMFILES=C:\Program Files 2025-09-07T06:56:05.9136685Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-09-07T06:56:05.9137065Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-09-07T06:56:05.9137390Z PROMPT=(base) $P$G 2025-09-07T06:56:05.9137586Z PR_NUMBER= 2025-09-07T06:56:05.9138045Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-09-07T06:56:05.9138668Z PUBLIC=C:\Users\Public 2025-09-07T06:56:05.9139640Z *** 2025-09-07T06:56:05.9139948Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-09-07T06:56:05.9140344Z PYTHON_VERSION=3.9 2025-09-07T06:56:05.9140611Z PYTORCH_FINAL_PACKAGE_DIR=C:/17524754564/build-results/ 2025-09-07T06:56:05.9141072Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\17524754564\build-results\ 2025-09-07T06:56:05.9141417Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-09-07T06:56:05.9141695Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-09-07T06:56:05.9141958Z ProgramData=C:\ProgramData 2025-09-07T06:56:05.9142222Z ProgramFiles(x86)=C:\Program Files (x86) 2025-09-07T06:56:05.9142513Z ProgramW6432=C:\Program Files 2025-09-07T06:56:05.9142742Z REENABLED_ISSUES= 2025-09-07T06:56:05.9142938Z RUNNER_ARCH=X64 2025-09-07T06:56:05.9143139Z RUNNER_ENVIRONMENT=self-hosted 2025-09-07T06:56:05.9143535Z RUNNER_NAME=i-0d07037e5e35aebe8 2025-09-07T06:56:05.9143773Z RUNNER_OS=Windows 2025-09-07T06:56:05.9144009Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-09-07T06:56:05.9144325Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-09-07T06:56:05.9144795Z RUNNER_TRACKING_ID=github_bc49aed5-657f-4109-8687-78fde8961e55 2025-09-07T06:56:05.9145188Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-09-07T06:56:05.9145688Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-09-07T06:56:05.9146192Z SHA1=93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:56:05.9146474Z SHARD_NUMBER=1 2025-09-07T06:56:05.9146658Z SHLVL=2 2025-09-07T06:56:05.9146898Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-09-07T06:56:05.9147230Z SYSTEMDRIVE=C: 2025-09-07T06:56:05.9147416Z SYSTEMROOT=C:\Windows 2025-09-07T06:56:05.9147659Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:56:05.9147933Z TERM=xterm-256color 2025-09-07T06:56:05.9148141Z TEST_CONFIG=default 2025-09-07T06:56:05.9148458Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-09-07T06:56:05.9148854Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-09-07T06:56:05.9149187Z TEST_SHOWLOCALS=False 2025-09-07T06:56:05.9149425Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:56:05.9149732Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T06:56:05.9150090Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-09-07T06:56:05.9150535Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-09-07T06:56:05.9150894Z TORCH_CUDA_ARCH_LIST=8.6 2025-09-07T06:56:05.9151135Z TORCH_SERIALIZATION_DEBUG=1 2025-09-07T06:56:05.9151396Z UCRTVersion=10.0.19041.0 2025-09-07T06:56:05.9151697Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-09-07T06:56:05.9152055Z UPDATEFILE=update.finished 2025-09-07T06:56:05.9152291Z USERDOMAIN=EC2AMAZ-F4P7NAP 2025-09-07T06:56:05.9152528Z USERNAME=runneruser 2025-09-07T06:56:05.9152741Z USERPROFILE=C:\Users\runneruser 2025-09-07T06:56:05.9153035Z USE_CUDA=0 2025-09-07T06:56:05.9153431Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-09-07T06:56:05.9154050Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-09-07T06:56:05.9154715Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\ 2025-09-07T06:56:05.9155472Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.42.34433\ 2025-09-07T06:56:05.9155999Z VCToolsVersion=14.42.34433 2025-09-07T06:56:05.9156225Z VC_PRODUCT=BuildTools 2025-09-07T06:56:05.9156436Z VC_VERSION= 2025-09-07T06:56:05.9156597Z VC_YEAR=2022 2025-09-07T06:56:05.9156889Z VERBOSE_ARG='SilentlyContinue' 2025-09-07T06:56:05.9157170Z VERBOSE_TEST_LOGS=False 2025-09-07T06:56:05.9157399Z VisualStudioVersion=17.0 2025-09-07T06:56:05.9157825Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-09-07T06:56:05.9158296Z VSCMD_ARG_app_plat=Desktop 2025-09-07T06:56:05.9158639Z VSCMD_ARG_HOST_ARCH=x64 2025-09-07T06:56:05.9158854Z VSCMD_ARG_TGT_ARCH=x64 2025-09-07T06:56:05.9159067Z VSCMD_VER=17.12.11 2025-09-07T06:56:05.9159398Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-09-07T06:56:05.9159808Z VS_VERSION=17.4.1 2025-09-07T06:56:05.9159998Z WINDIR=C:\Windows 2025-09-07T06:56:05.9160561Z 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-09-07T06:56:05.9161276Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-09-07T06:56:05.9161693Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-09-07T06:56:05.9162040Z WindowsSDKLibVersion=10.0.19041.0\ 2025-09-07T06:56:05.9162441Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-09-07T06:56:05.9162917Z WindowsSDKVersion=10.0.19041.0\ 2025-09-07T06:56:05.9163414Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-09-07T06:56:05.9164177Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-09-07T06:56:05.9164892Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-09-07T06:56:05.9165380Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-09-07T06:56:05.9165641Z __DOTNET_ADD_64BIT=1 2025-09-07T06:56:05.9165851Z __DOTNET_PREFERRED_BITNESS=64 2025-09-07T06:56:05.9169638Z __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:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;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:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-09-07T06:56:05.9173575Z 2025-09-07T06:56:05.9173770Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T06:56:05.9174163Z echo "setup pytorch env failed" 2025-09-07T06:56:05.9174404Z echo 0 2025-09-07T06:56:05.9174635Z exit /b 2025-09-07T06:56:05.9174796Z ) 2025-09-07T06:56:05.9174896Z 2025-09-07T06:56:05.9175054Z (base) C:\actions-runner\_work\pytorch\pytorch>pushd test 2025-09-07T06:56:05.9175320Z 2025-09-07T06:56:05.9175734Z (base) C:\actions-runner\_work\pytorch\pytorch\test>set GFLAGS_EXE="C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" 2025-09-07T06:56:05.9176253Z 2025-09-07T06:56:05.9176649Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if "1" == "1" (if exist "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" ( 2025-09-07T06:56:05.9177240Z echo Some smoke tests 2025-09-07T06:56:05.9177612Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe +sls 2025-09-07T06:56:05.9178317Z python C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\run_python_nn_smoketests.py 2025-09-07T06:56:05.9178857Z if ERRORLEVEL 1 goto fail 2025-09-07T06:56:05.9179260Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe -sls 2025-09-07T06:56:05.9179690Z if ERRORLEVEL 1 goto fail 2025-09-07T06:56:05.9179908Z ) ) 2025-09-07T06:56:05.9180084Z Some smoke tests 2025-09-07T06:56:05.9180479Z Current Registry Settings for python.exe executable are: 00000002 2025-09-07T06:56:05.9180873Z sls - Show Loader Snaps 2025-09-07T06:56:10.7434881Z Checking that torch is available 2025-09-07T06:56:10.7435243Z Command: python -c import torch 2025-09-07T06:56:10.7435494Z Checking that MKL is available 2025-09-07T06:56:10.7435911Z Command: python -c import torch; exit(0 if torch.backends.mkl.is_available() else 1) 2025-09-07T06:56:10.7541788Z Current Registry Settings for python.exe executable are: 00000000 2025-09-07T06:56:10.7554533Z 2025-09-07T06:56:10.7554911Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Copying over test times file 2025-09-07T06:56:10.7555458Z Copying over test times file 2025-09-07T06:56:10.7556735Z 2025-09-07T06:56:10.7557630Z (base) C:\actions-runner\_work\pytorch\pytorch\test>robocopy /E "C:\17524754564\build-results\\.additional_ci_files" "C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files" 2025-09-07T06:56:10.7712209Z 2025-09-07T06:56:10.7712698Z ------------------------------------------------------------------------------- 2025-09-07T06:56:10.7718319Z ROBOCOPY :: Robust File Copy for Windows 2025-09-07T06:56:10.7718822Z ------------------------------------------------------------------------------- 2025-09-07T06:56:10.7719096Z 2025-09-07T06:56:10.7719216Z Started : Sunday, September 7, 2025 6:56:10 AM 2025-09-07T06:56:10.7719598Z Source : C:\17524754564\build-results\.additional_ci_files\ 2025-09-07T06:56:10.7720045Z Dest : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-09-07T06:56:10.7720353Z 2025-09-07T06:56:10.7720426Z Files : *.* 2025-09-07T06:56:10.7720616Z 2025-09-07T06:56:10.7720853Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-09-07T06:56:10.7721105Z 2025-09-07T06:56:10.7721254Z ------------------------------------------------------------------------------ 2025-09-07T06:56:10.7722518Z 2025-09-07T06:56:10.7728764Z 2 C:\17524754564\build-results\.additional_ci_files\ 2025-09-07T06:56:10.7729684Z *EXTRA File 80170 td_results.json 2025-09-07T06:56:10.7738662Z New File 4.3 m test-class-times.json 2025-09-07T06:56:10.7741473Z 11% 2025-09-07T06:56:10.7744816Z 22% 2025-09-07T06:56:10.7747671Z 34% 2025-09-07T06:56:10.7750908Z 45% 2025-09-07T06:56:10.7753675Z 57% 2025-09-07T06:56:10.7756968Z 68% 2025-09-07T06:56:10.7760008Z 80% 2025-09-07T06:56:10.7762603Z 91% 2025-09-07T06:56:10.7764575Z 100% 2025-09-07T06:56:10.7773407Z New File 1.1 m test-times.json 2025-09-07T06:56:10.7774973Z 20% 2025-09-07T06:56:10.7776515Z 41% 2025-09-07T06:56:10.7778015Z 62% 2025-09-07T06:56:10.7779904Z 83% 2025-09-07T06:56:10.7781950Z 100% 2025-09-07T06:56:10.7782352Z 2025-09-07T06:56:10.7782510Z ------------------------------------------------------------------------------ 2025-09-07T06:56:10.7782922Z 2025-09-07T06:56:10.7784015Z Total Copied Skipped Mismatch FAILED Extras 2025-09-07T06:56:10.7784910Z Dirs : 1 0 1 0 0 0 2025-09-07T06:56:10.7785757Z Files : 2 2 0 0 0 1 2025-09-07T06:56:10.7786614Z Bytes : 5.54 m 5.54 m 0 0 0 78.2 k 2025-09-07T06:56:10.7787460Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-09-07T06:56:10.7787700Z 2025-09-07T06:56:10.7788232Z 2025-09-07T06:56:10.7789229Z Speed : 1938149666 Bytes/sec. 2025-09-07T06:56:10.7790203Z Speed : 110901.813 MegaBytes/min. 2025-09-07T06:56:10.7790583Z Ended : Sunday, September 7, 2025 6:56:10 AM 2025-09-07T06:56:10.7790905Z 2025-09-07T06:56:10.7805068Z 2025-09-07T06:56:10.7805391Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Run nn tests 2025-09-07T06:56:10.7805888Z Run nn tests 2025-09-07T06:56:10.7807099Z 2025-09-07T06:56:10.7808081Z (base) C:\actions-runner\_work\pytorch\pytorch\test>python run_test.py --exclude-jit-executor --exclude-distributed-tests --shard "1" "3" --verbose 2025-09-07T06:56:17.5115423Z Found test times from artifacts 2025-09-07T06:56:17.5881049Z Found test times from artifacts 2025-09-07T06:56:17.5904568Z Running all tests 2025-09-07T06:56:17.6457031Z Running parallel tests on 3 processes 2025-09-07T06:56:17.6473020Z Name: tests to run (est. time: 91.4min) 2025-09-07T06:56:17.6473365Z Serial tests (49): 2025-09-07T06:56:17.6473590Z test_ci_sanity_check_fail 1/1 2025-09-07T06:56:17.6473860Z test_reductions 1/1 2025-09-07T06:56:17.6474083Z test_extension_utils 1/1 2025-09-07T06:56:17.6474326Z inductor/test_flex_attention 1/1 2025-09-07T06:56:17.6474598Z inductor/test_cutlass_backend 1/1 2025-09-07T06:56:17.6474858Z test_cpp_api_parity 1/1 2025-09-07T06:56:17.6475238Z test_fx 1/1 2025-09-07T06:56:17.6475449Z test_transformers_privateuse1 1/1 2025-09-07T06:56:17.6475728Z test_openreg 1/1 2025-09-07T06:56:17.6475973Z inductor/test_benchmark_fusion 1/1 2025-09-07T06:56:17.6476245Z test_show_pickle 1/1 2025-09-07T06:56:17.6476450Z test_utils 1/1 2025-09-07T06:56:17.6476657Z test_tensorexpr 1/1 2025-09-07T06:56:17.6476885Z inductor/test_max_autotune 1/1 2025-09-07T06:56:17.6477141Z test_multiprocessing 1/2 2025-09-07T06:56:17.6477385Z test_multiprocessing 2/2 2025-09-07T06:56:17.6478687Z test_dispatch 1/1 2025-09-07T06:56:17.6478916Z test_namedtuple_return_api 1/1 2025-09-07T06:56:17.6479185Z test_cpp_extensions_mtia_backend 1/1 2025-09-07T06:56:17.6479465Z test_jit_disabled 1/1 2025-09-07T06:56:17.6479677Z test_fake_tensor 1/1 2025-09-07T06:56:17.6479890Z test_cuda_trace 1/1 2025-09-07T06:56:17.6480117Z test_cpp_extensions_stream_and_event 1/1 2025-09-07T06:56:17.6480405Z test_python_dispatch 1/1 2025-09-07T06:56:17.6480653Z test_tensor_creation_ops 1/1 2025-09-07T06:56:17.6481012Z test_cuda_nvml_based_avail 1/1 2025-09-07T06:56:17.6481286Z test_autograd_fallback 1/1 2025-09-07T06:56:17.6481539Z dynamo/test_fake_distributed 1/1 2025-09-07T06:56:17.6481823Z inductor/test_distributed_patterns 1/1 2025-09-07T06:56:17.6482095Z test_autocast 1/1 2025-09-07T06:56:17.6482302Z test_torch 1/1 2025-09-07T06:56:17.6482524Z functorch/test_memory_efficient_fusion 1/1 2025-09-07T06:56:17.6482822Z test_sort_and_select 1/1 2025-09-07T06:56:17.6483052Z test_cpp_extensions_jit 1/1 2025-09-07T06:56:17.6483909Z test_native_mha 1/1 2025-09-07T06:56:17.6484530Z test_cuda_primary_ctx 1/1 2025-09-07T06:56:17.6484764Z test_nn 1/1 2025-09-07T06:56:17.6484960Z nn/test_pooling 1/1 2025-09-07T06:56:17.6485179Z test_multiprocessing_spawn 1/1 2025-09-07T06:56:17.6485445Z nn/test_convolution 1/1 2025-09-07T06:56:17.6485664Z test_overrides 1/1 2025-09-07T06:56:17.6485897Z test_mobile_optimizer 1/1 2025-09-07T06:56:17.6486132Z test_spectral_ops 1/1 2025-09-07T06:56:17.6486389Z distributions/test_distributions 1/1 2025-09-07T06:56:17.6486658Z doctests 1/1 2025-09-07T06:56:17.6486868Z test_autoload_disable 1/1 2025-09-07T06:56:17.6487101Z test_autoload_enable 1/1 2025-09-07T06:56:17.6487358Z test_cpp_extensions_aot_ninja 1/1 2025-09-07T06:56:17.6487647Z test_cpp_extensions_aot_no_ninja 1/1 2025-09-07T06:56:17.6487915Z Parallel tests (111): 2025-09-07T06:56:17.6488146Z inductor/test_aot_inductor 1/1 2025-09-07T06:56:17.6488416Z inductor/test_aot_inductor_arrayref 1/1 2025-09-07T06:56:17.6488716Z inductor/test_cudagraph_trees 1/1 2025-09-07T06:56:17.6488996Z inductor/test_torchinductor_opinfo 1/1 2025-09-07T06:56:17.6490283Z dynamo/test_dynamic_shapes 1/1 2025-09-07T06:56:17.6490544Z inductor/test_minifier 1/1 2025-09-07T06:56:17.6490798Z dynamo/test_repros 1/1 2025-09-07T06:56:17.6491020Z dynamo/test_pgo 1/1 2025-09-07T06:56:17.6491273Z inductor/test_split_cat_fx_aten_passes 1/1 2025-09-07T06:56:17.6491567Z dynamo/test_modes 1/1 2025-09-07T06:56:17.6492583Z inductor/test_control_flow 1/1 2025-09-07T06:56:17.6492871Z dynamo/test_logging 1/1 2025-09-07T06:56:17.6493106Z inductor/test_cpu_repro 1/1 2025-09-07T06:56:17.6493364Z dynamo/test_compiler_bisector 1/1 2025-09-07T06:56:17.6493637Z export/test_retraceability 1/1 2025-09-07T06:56:17.6493908Z inductor/test_triton_syntax 1/1 2025-09-07T06:56:17.6494179Z inductor/test_cpp_wrapper_hipify 1/1 2025-09-07T06:56:17.6494504Z export/test_export_training_ir_to_run_decomp 1/1 2025-09-07T06:56:17.6495922Z dynamo/test_base_output 1/1 2025-09-07T06:56:17.6496189Z inductor/test_flex_decoding 1/1 2025-09-07T06:56:17.6496480Z inductor/test_ck_backend 1/1 2025-09-07T06:56:17.6496752Z dynamo/test_skip_guard_eval_unsafe 1/1 2025-09-07T06:56:17.6497041Z inductor/test_inductor_annotations 1/1 2025-09-07T06:56:17.6497408Z inductor/test_debug_trace 1/1 2025-09-07T06:56:17.6497668Z inductor/test_best_config 1/1 2025-09-07T06:56:17.6497933Z inductor/test_pad_mm 1/1 2025-09-07T06:56:17.6498164Z dynamo/test_modules 1/1 2025-09-07T06:56:17.6498405Z inductor/test_triton_wrapper 1/1 2025-09-07T06:56:17.6498665Z dynamo/test_metrics_context 1/1 2025-09-07T06:56:17.6498921Z inductor/test_fx_fusion 1/1 2025-09-07T06:56:17.6499164Z dynamo/test_frame_init 1/1 2025-09-07T06:56:17.6499421Z inductor/test_coordinate_descent_tuner 1/1 2025-09-07T06:56:17.6499707Z dynamo/test_sdpa 1/1 2025-09-07T06:56:17.6499924Z xpu/test_fusion 1/1 2025-09-07T06:56:17.6500142Z dynamo/test_recompiles 1/1 2025-09-07T06:56:17.6500373Z inductor/test_fp8 1/1 2025-09-07T06:56:17.6501231Z dynamo/test_fx_passes_pre_grad 1/1 2025-09-07T06:56:17.6501908Z inductor/test_op_completeness 1/1 2025-09-07T06:56:17.6502179Z dynamo/test_utils 1/1 2025-09-07T06:56:17.6502403Z dynamo/test_reconstruct 1/1 2025-09-07T06:56:17.6502739Z inductor/test_cpu_cpp_wrapper 1/1 2025-09-07T06:56:17.6503024Z dynamo/test_autograd_function 1/1 2025-09-07T06:56:17.6503283Z inductor/test_alignment 1/1 2025-09-07T06:56:17.6503543Z functorch/test_ops 5/8 2025-09-07T06:56:17.6503783Z inductor/test_group_batch_fusion 1/1 2025-09-07T06:56:17.6504069Z inductor/test_quantization 1/1 2025-09-07T06:56:17.6504340Z inductor/test_cooperative_reductions 1/1 2025-09-07T06:56:17.6504631Z inductor/test_codegen_triton 1/1 2025-09-07T06:56:17.6504909Z inductor/test_custom_post_grad_passes 1/1 2025-09-07T06:56:17.6505271Z test_meta 4/5 2025-09-07T06:56:17.6505457Z test_meta 5/5 2025-09-07T06:56:17.6505654Z xpu/test_gemm 1/1 2025-09-07T06:56:17.6505892Z higher_order_ops/test_invoke_quant 1/1 2025-09-07T06:56:17.6506171Z dynamo/test_unittest 1/1 2025-09-07T06:56:17.6527108Z functorch/test_minifier 1/1 2025-09-07T06:56:17.6527378Z test_legacy_vmap 1/1 2025-09-07T06:56:17.6527632Z torch_np/numpy_tests/core/test_einsum 1/1 2025-09-07T06:56:17.6527939Z inductor/test_benchmarking 1/1 2025-09-07T06:56:17.6528207Z torch_np/test_basic 1/1 2025-09-07T06:56:17.6528439Z test_segment_reductions 1/1 2025-09-07T06:56:17.6528691Z test_ops_fwd_gradients 1/2 2025-09-07T06:56:17.6528935Z inductor/test_multi_kernel 1/1 2025-09-07T06:56:17.6529204Z inductor/test_op_dtype_prop 1/1 2025-09-07T06:56:17.6529474Z inductor/test_cutlass_evt 1/1 2025-09-07T06:56:17.6529791Z inductor/test_torchinductor_codegen_config_overrides 1/1 2025-09-07T06:56:17.6530137Z xpu/test_conv 1/1 2025-09-07T06:56:17.6530357Z inductor/test_binary_folding 1/1 2025-09-07T06:56:17.6530655Z test_ops_gradients 2/2 2025-09-07T06:56:17.6530872Z test_jiterator 1/1 2025-09-07T06:56:17.6531098Z dynamo/test_optimizers 1/1 2025-09-07T06:56:17.6531351Z inductor/test_custom_lowering 1/1 2025-09-07T06:56:17.6531632Z inductor/test_needs_exact_strides 1/1 2025-09-07T06:56:17.6533283Z dynamo/test_base_hop 1/1 2025-09-07T06:56:17.6533521Z dynamo/test_backends 1/1 2025-09-07T06:56:17.6533926Z dynamo/test_cudagraphs 1/1 2025-09-07T06:56:17.6534171Z dynamo/test_comptime 1/1 2025-09-07T06:56:17.6534561Z cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic 1/1 2025-09-07T06:56:17.6534969Z test_modules 2/2 2025-09-07T06:56:17.6535181Z test_cuda_sanitizer 1/1 2025-09-07T06:56:17.6535420Z inductor/test_unbacked_symints 1/1 2025-09-07T06:56:17.6535721Z torch_np/numpy_tests/core/test_indexing 1/1 2025-09-07T06:56:17.6536018Z nn/test_lazy_modules 1/1 2025-09-07T06:56:17.6536262Z test_fx_reinplace_pass 1/1 2025-09-07T06:56:17.6536535Z torch_np/numpy_tests/lib/test_type_check 1/1 2025-09-07T06:56:17.6536849Z inductor/test_custom_partitioner_fn 1/1 2025-09-07T06:56:17.6537135Z test_type_info 1/1 2025-09-07T06:56:17.6537366Z lazy/test_functionalization 1/1 2025-09-07T06:56:17.6537703Z test_functionalization_of_rng_ops 1/1 2025-09-07T06:56:17.6539401Z test_subclass 1/1 2025-09-07T06:56:17.6539629Z test_decomp 1/17 2025-09-07T06:56:17.6539828Z test_decomp 6/17 2025-09-07T06:56:17.6540031Z test_decomp 7/17 2025-09-07T06:56:17.6540233Z test_decomp 10/17 2025-09-07T06:56:17.6540430Z test_decomp 15/17 2025-09-07T06:56:17.6540640Z test_decomp 16/17 2025-09-07T06:56:17.6540853Z export/test_experimental 1/1 2025-09-07T06:56:17.6541112Z dynamo/test_torchrec 1/1 2025-09-07T06:56:17.6541345Z inductor/test_mmdecomp 1/1 2025-09-07T06:56:17.6541588Z dynamo/test_ctx_manager 1/1 2025-09-07T06:56:17.6541828Z dynamo/test_recompile_ux 1/1 2025-09-07T06:56:17.6542100Z functorch/test_vmap_registrations 1/1 2025-09-07T06:56:17.6542394Z torch_np/numpy_tests/core/test_dtype 1/1 2025-09-07T06:56:17.6542709Z torch_np/numpy_tests/core/test_shape_base 1/1 2025-09-07T06:56:17.6543007Z dynamo/test_hooks 1/1 2025-09-07T06:56:17.6543230Z nn/test_packed_sequence 1/1 2025-09-07T06:56:17.6545444Z export/test_verifier 1/1 2025-09-07T06:56:17.6545699Z export/test_sparse 1/1 2025-09-07T06:56:17.6545925Z test_ops 5/9 2025-09-07T06:56:17.6546107Z test_ops 6/9 2025-09-07T06:56:17.6546292Z test_ops 9/9 2025-09-07T06:56:17.6546490Z dynamo/test_python_autograd 1/1 2025-09-07T06:56:17.6546758Z Name: excluded (est. time: 0.0min) 2025-09-07T06:56:17.6546999Z Serial tests (0): 2025-09-07T06:56:17.6547198Z Parallel tests (0): 2025-09-07T06:56:17.6547510Z Running test_ci_sanity_check_fail 1/1 ... [2025-09-07 06:56:17.652664] 2025-09-07T06:56:17.6547890Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T06:56:17.6548863Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ci_sanity_check_fail.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 06:56:17.653880] 2025-09-07T06:56:17.6551929Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T06:56:17.6552717Z Ignoring disabled issues: [''] 2025-09-07T06:56:33.5243093Z Running test_reductions 1/1 ... [2025-09-07 06:56:33.519098] 2025-09-07T06:56:33.5243510Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T06:56:33.5248887Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_reductions.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 06:56:33.519098] 2025-09-07T06:56:33.5249979Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T06:56:33.5250424Z Uploading artifacts took 0.00 seconds 2025-09-07T07:01:26.0605472Z 2025-09-07T07:01:26.0606431Z test_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_reductions_1.1_9b4de589e0572772_.log 2025-09-07T07:01:26.2233882Z Running 4673 items in this shard: test/test_reductions.py::TestReductionsCPU::test_accreal_type_cpu, test/test_reductions.py::TestReductionsCPU::test_all_any_cpu, test/test_reductions.py::TestReductionsCPU::test_all_any_empty_cpu, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_all_any_vs_numpy_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_all_any_with_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_all_issue117215_cpu, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_amin_amax_some_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_aminmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_aminmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_aminmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_aminmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_argminmax_axis_with_dim_one_cpu, test/test_reductions.py::TestReductionsCPU::test_argminmax_large_axis_cpu, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_argminmax_multiple_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_bincount_cpu, test/test_reductions.py::TestReductionsCPU::test_bucketization_cpu, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_cumprod_integer_upcast_cpu, test/test_reductions.py::TestReductionsCPU::test_cumsum_integer_upcast_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_arg_reduction_scalar_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_default_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_empty_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_duplicate_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsorted_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_unsupported_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_multi_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_ndim_limit_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_none_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_offbounds_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_max_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mean_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_median_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_min_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_mode_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_nanmedian_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_norm_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_fns_fn_name_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_lastdim_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_lastdim_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_dim_reduction_less_than_64_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_all_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_any_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_keepdim_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_std_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_var_cpu, test/test_reductions.py::TestReductionsCPU::test_dim_single_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_all_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_any_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_empty_slice_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_all_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_any_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice__refs_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_all_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_any_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_count_nonzero_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_hash_tensor_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_linalg_vector_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_amax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_amin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_argmax_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_argmin_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_logsumexp_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_norm_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_masked_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_nanmean_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_nansum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_prod_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_std_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_std_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_sum_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_var_cpu, test/test_reductions.py::TestReductionsCPU::test_empty_tensor_nonempty_slice_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_histc_cpu, test/test_reductions.py::TestReductionsCPU::test_histc_lowp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_histc_lowp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cuda_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cuda_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cuda_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_corner_cases_cuda_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_histc_min_max_errors_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_histogram_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_histogram_error_handling_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_histogramdd_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_identity_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_invalid_0dim_aminmax_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_invalid_0dim_aminmax_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_logcumsumexp_complex_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_logcumsumexp_complex_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_logsumexp_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_logsumexp_integral_promotion_cpu, test/test_reductions.py::TestReductionsCPU::test_max_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_max_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_max_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_max_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_max_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_max_elementwise_cpu, test/test_reductions.py::TestReductionsCPU::test_max_mixed_devices_cpu, test/test_reductions.py::TestReductionsCPU::test_max_with_inf_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_max_with_inf_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_max_with_inf_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_max_with_inf_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_mean_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_mean_int_with_optdtype_cpu, test/test_reductions.py::TestReductionsCPU::test_mean_out_is_alias_of_return_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_mean_out_is_alias_of_return_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_mean_out_is_alias_of_return_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_mean_out_is_alias_of_return_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_median_corner_cases_cpu, test/test_reductions.py::TestReductionsCPU::test_median_nan_values_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_median_nan_values_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_median_real_values_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_median_real_values_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_median_real_values_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_median_real_values_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_min_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_min_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_min_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_min_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_min_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_min_elementwise_cpu, test/test_reductions.py::TestReductionsCPU::test_min_max_nan_cpu, test/test_reductions.py::TestReductionsCPU::test_min_mixed_devices_cpu, test/test_reductions.py::TestReductionsCPU::test_min_with_inf_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_min_with_inf_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_min_with_inf_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_min_with_inf_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_minmax_illegal_dtype_cpu, test/test_reductions.py::TestReductionsCPU::test_mode_boolean_cpu, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_mode_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_mode_large_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_mode_wrong_device_cpu, test/test_reductions.py::TestReductionsCPU::test_mode_wrong_dtype_cpu, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_omit_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nan_policy_propagate_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_nanmean_integral_types_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_nansum_complex_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_nansum_complex_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_nansum_out_dtype_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_nansum_vs_numpy_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_all_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_expanded_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_innermost_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_outermost_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_noncontiguous_transposed_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_numpy_named_args_cpu, test/test_reductions.py::TestReductionsCPU::test_prod_bool_cpu, test/test_reductions.py::TestReductionsCPU::test_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_prod_gpu_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_prod_gpu_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_prod_integer_upcast_cpu, test/test_reductions.py::TestReductionsCPU::test_prod_lowp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_prod_lowp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_quantile_backward_cpu, test/test_reductions.py::TestReductionsCPU::test_quantile_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_quantile_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_quantile_error_cpu, test/test_reductions.py::TestReductionsCPU::test_reduce_dtype_cpu, test/test_reductions.py::TestReductionsCPU::test_reduction_empty_any_all_cpu, test/test_reductions.py::TestReductionsCPU::test_reduction_split_cpu, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_input_corner_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_input_corner_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_input_corner_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_input_corner_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_output_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_output_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_output_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reduction_vectorize_along_output_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reductions_large_half_tensors_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reductions_large_half_tensors_cpu_complex32, test/test_reductions.py::TestReductionsCPU::test_reductions_large_half_tensors_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_duplicate_values_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_extremal_values_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_1D_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_2D_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_large_input_64bit_indexing_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_scalar_input_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_ref_small_input_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_reference_masked_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_repeated_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype__refs_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_all_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_any_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_count_nonzero_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_hash_tensor_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_linalg_vector_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_amin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmax_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_argmin_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_logsumexp_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_norm_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_norm_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_norm_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_norm_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_std_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_masked_var_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_mean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nanmean_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nanmean_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nanmean_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nanmean_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_nansum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_prod_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_std_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_sum_cpu_uint8, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_result_dtype_var_unbiased_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_std_correction_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_std_correction_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_std_correction_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_std_correction_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_std_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_std_mean_all_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_std_mean_correction_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_std_mean_correction_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_std_mean_correction_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_std_mean_correction_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_std_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_std_mean_some_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_std_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_std_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_std_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_std_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_all_cpu_bool, test/test_reductions.py::TestReductionsCPU::test_sum_all_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_cpu_device_mismatch_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_dim_reduction_uint8_overflow_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_integer_upcast_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_noncontig_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_noncontig_lowp_cpu_bfloat16, test/test_reductions.py::TestReductionsCPU::test_sum_noncontig_lowp_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_sum_out_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_parallel_cpu, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_float16, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_int16, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_int32, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_int64, test/test_reductions.py::TestReductionsCPU::test_sum_vs_numpy_cpu_int8, test/test_reductions.py::TestReductionsCPU::test_tensor_compare_ops_argmax_argmix_kthvalue_dim_empty_cpu, test/test_reductions.py::TestReductionsCPU::test_tensor_compare_ops_empty_cpu, test/test_reductions.py::TestReductionsCPU::test_tensor_reduce_ops_empty_cpu, test/test_reductions.py::TestReductionsCPU::test_var_correction_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_var_correction_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_var_correction_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_var_correction_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_var_cpu, test/test_reductions.py::TestReductionsCPU::test_var_dim_cpu, test/test_reductions.py::TestReductionsCPU::test_var_large_input_cpu, test/test_reductions.py::TestReductionsCPU::test_var_mean_all_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_var_mean_correction_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_var_mean_correction_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_var_mean_correction_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_var_mean_correction_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_var_mean_cpu, test/test_reductions.py::TestReductionsCPU::test_var_mean_some_dims_cpu, test/test_reductions.py::TestReductionsCPU::test_var_stability2_cpu, test/test_reductions.py::TestReductionsCPU::test_var_stability_cpu, test/test_reductions.py::TestReductionsCPU::test_var_unbiased_cpu, test/test_reductions.py::TestReductionsCPU::test_var_vs_numpy_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_var_vs_numpy_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_var_vs_numpy_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_var_vs_numpy_cpu_float64, test/test_reductions.py::TestReductionsCPU::test_warn_invalid_degrees_of_freedom_cpu_complex128, test/test_reductions.py::TestReductionsCPU::test_warn_invalid_degrees_of_freedom_cpu_complex64, test/test_reductions.py::TestReductionsCPU::test_warn_invalid_degrees_of_freedom_cpu_float32, test/test_reductions.py::TestReductionsCPU::test_warn_invalid_degrees_of_freedom_cpu_float64 2025-09-07T07:01:26.3792705Z 2025-09-07T07:01:26.3792940Z Running test_extension_utils 1/1 ... [2025-09-07 07:01:26.069910] 2025-09-07T07:01:26.3793394Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:01:26.3794418Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_extension_utils.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:01:26.071001] 2025-09-07T07:01:29.9602807Z 2025-09-07T07:01:29.9603990Z test_extension_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_extension_utils_1.1_94e4ffc749280253_.log 2025-09-07T07:01:29.9605408Z Running 2 items in this shard: test/test_extension_utils.py::TestExtensionUtils::test_external_module_register, test/test_extension_utils.py::TestExtensionUtils::test_external_module_register_with_renamed_backend 2025-09-07T07:01:29.9606290Z 2025-09-07T07:01:29.9608967Z Running inductor/test_flex_attention 1/1 ... [2025-09-07 07:01:29.955611] 2025-09-07T07:01:29.9609444Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:01:29.9615391Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_flex_attention.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:01:29.955611] 2025-09-07T07:01:44.6183416Z 2025-09-07T07:01:44.6184383Z inductor/test_flex_attention 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_flex_attention_1.1_673ac8d79fad8f96_.log 2025-09-07T07:01:44.6185086Z 2025-09-07T07:01:44.6189834Z Running inductor/test_cutlass_backend 1/1 ... [2025-09-07 07:01:44.618779] 2025-09-07T07:01:44.6190296Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:01:44.6196276Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cutlass_backend.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:01:44.618779] 2025-09-07T07:01:54.3493274Z 2025-09-07T07:01:54.3494263Z inductor/test_cutlass_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cutlass_backend_1.1_dec1db554800d8e0_.log 2025-09-07T07:01:54.3495001Z 2025-09-07T07:01:54.3499339Z Running test_cpp_api_parity 1/1 ... [2025-09-07 07:01:54.349580] 2025-09-07T07:01:54.3499768Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:01:54.3505769Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_api_parity.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:01:54.350151] 2025-09-07T07:02:42.8299305Z 2025-09-07T07:02:42.8300304Z test_cpp_api_parity 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_api_parity_1.1_bbaab66604c5d9a8_.log 2025-09-07T07:02:42.8479848Z Running 488 items in this shard: test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCELoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_BCEWithLogitsLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_circular_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_circular_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad1, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad1_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad1size1, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad1size1_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad2size1, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad2size1_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_same_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_valid, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_pad_valid_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_reflect_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_reflect_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_replicate_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_replicate_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_stride, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_stride_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_zero_batch, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_zero_batch_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_zeros_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv1d_zeros_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_circular_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_circular_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_padded, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_padded_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_strided, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_strided_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_with_multiplier, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_depthwise_with_multiplier_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_groups_thnn, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_groups_thnn_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_same, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_same_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_same_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_same_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_valid, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_pad_valid_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_padding, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_padding_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_reflect_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_reflect_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_replicate_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_replicate_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_strided, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_strided_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_zero_batch, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_zero_batch_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_zeros_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv2d_zeros_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_1x1x1_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_1x1x1_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_circular_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_circular_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_dilated_strided, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_dilated_strided_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_same, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_same_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_same_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_same_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_valid, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_pad_valid_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_replicate_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_replicate_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_stride, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_stride_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_stride_padding, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_stride_padding_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_zero_batch, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_zero_batch_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_zeros_stride2_pad2, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Conv3d_zeros_stride2_pad2_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose1d_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_groups, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_groups_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose2d_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose3d_dilated, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ConvTranspose3d_dilated_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CosineEmbeddingLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CrossMapLRN2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_CrossMapLRN2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_discontiguous, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_discontiguous_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_max, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_max_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_max_padding_idx, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_max_padding_idx_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_mean_padding_idx, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_mean_padding_idx_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sparse, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sparse_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sum_padding_idx, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_EmbeddingBag_sum_padding_idx_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_discontiguous, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_discontiguous_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_sparse, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Embedding_sparse_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Flatten, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Flatten_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Flatten_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Flatten_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_int_input, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_int_input_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_no_batch_dim_input, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_no_batch_dim_input_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_no_batch_dim_int_input, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Fold_no_batch_dim_int_input_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_HingeEmbeddingLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_LayerNorm_3d_no_affine_large_feature, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_LayerNorm_3d_no_affine_large_feature_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_no_bias, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Linear_no_bias_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MarginRankingLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelMarginLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_MultiLabelSoftMarginLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_NLLLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_broadcast_lhs, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_broadcast_lhs_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_broadcast_rhs, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_broadcast_rhs_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_with_non_default_args, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PairwiseDistance_with_non_default_args_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PixelShuffle, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PixelShuffle_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PixelUnshuffle, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_PixelUnshuffle_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_with_up_down, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_with_up_down_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_with_up_down_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_RReLU_with_up_down_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_complex, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_complex_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_ReplicationPad3d_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SampleModule_has_parity, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SampleModule_has_parity_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SampleModule_no_parity, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SampleModule_no_parity_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_SoftMarginLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerDecoderLayer_gelu_activation, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerDecoderLayer_gelu_activation_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerDecoderLayer_relu_activation, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerDecoderLayer_relu_activation_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerEncoderLayer_gelu_activation, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerEncoderLayer_gelu_activation_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerEncoderLayer_relu_activation, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TransformerEncoderLayer_relu_activation_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Transformer_multilayer_coder, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Transformer_multilayer_coder_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_mean, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_mean_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_none, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_none_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_sum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_TripletMarginLoss_no_batch_dim_sum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unflatten_no_batch_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unflatten_no_batch_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unfold, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unfold_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unfold_int_input, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_Unfold_int_input_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_weights_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_weights_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_weights_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCELoss_weights_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_legacy_enum, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_legacy_enum_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_BCEWithLogitsLoss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HingeEmbeddingLoss_margin_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HingeEmbeddingLoss_margin_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HingeEmbeddingLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HingeEmbeddingLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HuberLoss_delta, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_HuberLoss_delta_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_log_target, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_log_target_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_scalar_log_target, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_no_reduce_scalar_log_target_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_with_log_target_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_with_log_target_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_with_target_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_KLDivLoss_with_target_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_complex, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_complex_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_L1Loss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MSELoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MSELoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MSELoss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MSELoss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_0d_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_0d_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_1d_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_1d_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_index_neg, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_index_neg_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelMarginLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelSoftMarginLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelSoftMarginLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelSoftMarginLoss_weights_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiLabelSoftMarginLoss_weights_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_1d_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_1d_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_margin_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_margin_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_p_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_p_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_weights_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_MultiMarginLoss_weights_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_ignore_index, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_ignore_index_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_weights, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss2d_no_reduce_weights_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_ignore_index, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_ignore_index_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_weights, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLossNd_no_reduce_weights_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_ignore_index, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_ignore_index_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_ignore_index, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_ignore_index_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_ignore_index_neg, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_NLLLoss_no_reduce_weights_ignore_index_neg_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_PoissonNLLLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_PoissonNLLLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_beta, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_beta_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_no_reduce_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_no_reduce_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_zero_beta, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SmoothL1Loss_zero_beta_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SoftMarginLoss_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_SoftMarginLoss_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_2d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_2d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_shared_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_shared_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_skewed_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_skewed_2d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_skewed_2d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_scale_tuple_skewed_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_tuple_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_tuple_2d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_tuple_2d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bicubic_tuple_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_2d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_2d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_shared_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_shared_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_skewed_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_skewed_2d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_skewed_2d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_scale_tuple_skewed_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_tuple_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_tuple_2d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_tuple_2d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_bilinear_tuple_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_1d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_scale_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_scale_1d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_scale_1d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_scale_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_tuple_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_linear_tuple_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_1d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_1d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_launch_configs, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_launch_configs_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_2d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_3d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_3d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_scale_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_1d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_1d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_2d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_2d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_nearest_tuple_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_3d_zero_dim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_3d_zero_dim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_scale_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_scale_3d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_scale_3d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_scale_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_tuple_3d, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_tuple_3d_align_corners, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_tuple_3d_align_corners_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_interpolate_trilinear_tuple_3d_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_dim0, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_dim0_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_dim3, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_dim3_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_lastdim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_lastdim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_spatial, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_spatial_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_spatial_special, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_log_softmax_spatial_special_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_multimarginloss_1d_input_0d_target_no_reduce, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_multimarginloss_1d_input_0d_target_no_reduce_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_sample_functional_has_parity, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_sample_functional_has_parity_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_sample_functional_no_parity, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_sample_functional_no_parity_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_dim0, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_dim0_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_dim3, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_dim3_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_scalar, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_functional_scalar_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_lastdim, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_lastdim_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_lastdim_dtype, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_lastdim_dtype_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_dtype, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_dtype_cuda, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_special, test/test_cpp_api_parity.py::TestCppApiParity::test_torch_nn_functional_softmax_spatial_special_cuda 2025-09-07T07:02:42.8660397Z 2025-09-07T07:02:42.8660568Z Running test_fx 1/1 ... [2025-09-07 07:02:42.831189] 2025-09-07T07:02:42.8660954Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:02:42.8661878Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:02:42.831770] 2025-09-07T07:03:34.1469599Z 2025-09-07T07:03:34.1470407Z test_fx 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_1.1_2d370a456b936a97_.log 2025-09-07T07:03:34.1884024Z Running 1154 items in this shard: test/test_fx.py::TestCommonPass::test_correctness_CSEPass_MutationInput_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_MutationMetadata_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_MutationTorchTensorCall_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_Mutation_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_ReturnList_cpu, test/test_fx.py::TestCommonPass::test_correctness_CSEPass_TakeList_cpu, test/test_fx.py::TestCommonPass::test_correctness_factory_CSEPass_FactoryFunctionCall_cpu, test/test_fx.py::TestCommonPass::test_correctness_factory_CSEPass_MutationFactory_cpu, test/test_fx.py::TestCSEPass::test_banned_list, test/test_fx.py::TestCSEPass::test_empty, test/test_fx.py::TestCSEPass::test_immutable_list_multiple_entries, test/test_fx.py::TestCSEPass::test_immutable_list_type, test/test_fx.py::TestCSEPass::test_kwarg, test/test_fx.py::TestCSEPass::test_nested_immutable_list_type, test/test_fx.py::TestCSEPass::test_nochange, test/test_fx.py::TestCSEPass::test_rand_like, test/test_fx.py::TestCSEPass::test_rand_n, test/test_fx.py::TestCSEPass::test_random, test/test_fx.py::TestCSEPass::test_simple, test/test_fx.py::TestCSEPass::test_simple_2, test/test_fx.py::TestCSEPass::test_simple_multiple_same_ops, test/test_fx.py::TestCSEPass::test_two_args, test/test_fx.py::TestCSEPass::test_two_args_default, test/test_fx.py::TestDCE::test_dead_chain, test/test_fx.py::TestDCE::test_dead_getattr, test/test_fx.py::TestDCE::test_dead_placeholder, test/test_fx.py::TestDCE::test_dead_placeholder_with_user, test/test_fx.py::TestDCE::test_impure_custom, test/test_fx.py::TestDCE::test_impure_kwargs, test/test_fx.py::TestDCE::test_impure_nodes_args, test/test_fx.py::TestDCE::test_impure_random, test/test_fx.py::TestDCE::test_keep_collectives, test/test_fx.py::TestDCE::test_keep_collectives_no_overload, test/test_fx.py::TestDCE::test_keep_module_with_side_effects, test/test_fx.py::TestDCE::test_keep_setitem, test/test_fx.py::TestDCE::test_keep_torch_assert, test/test_fx.py::TestDCE::test_simple, test/test_fx.py::TestConstFold::test_check_inline_non_const, test/test_fx.py::TestConstFold::test_check_inline_non_const_mult_return, test/test_fx.py::TestConstFold::test_check_skip_folding_quant_dequant_pattern, test/test_fx.py::TestConstFold::test_const_fold_basic_one_attr_name_collision, test/test_fx.py::TestConstFold::test_const_fold_basic_one_attr_no_name_collision, test/test_fx.py::TestConstFold::test_const_fold_basic_placeholder_reordered, test/test_fx.py::TestConstFold::test_const_fold_basic_two_attr, test/test_fx.py::TestConstFold::test_const_fold_basic_two_attr_three_input, test/test_fx.py::TestConstFold::test_const_fold_has_inlined_call_module_node, test/test_fx.py::TestConstFold::test_const_fold_module_attr, test/test_fx.py::TestConstFold::test_const_fold_multi_const_folded_attrs, test/test_fx.py::TestConstFold::test_const_fold_noop, test/test_fx.py::TestConstFold::test_const_fold_submod_hierarchy, test/test_fx.py::TestConstFold::test_const_fold_tensor_meta, test/test_fx.py::TestConstFold::test_const_fold_unused_placeholder, test/test_fx.py::TestConstFold::test_dict_output, test/test_fx.py::TestConstFold::test_fold_module, test/test_fx.py::TestConstFold::test_retain_node_meta, test/test_fx.py::TestConstFold::test_three_outputs, test/test_fx.py::TestConstFold::test_two_outputs, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_dim_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_ndim_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_nelement_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_numel_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_shape_const, test/test_fx.py::TestConstParamShapeInControlFlow::test_param_size_const, test/test_fx.py::AnnotationsTest::test_annotate, test/test_fx.py::AnnotationsTest::test_annotations, test/test_fx.py::AnnotationsTest::test_broadcasting1, test/test_fx.py::AnnotationsTest::test_broadcasting2, test/test_fx.py::AnnotationsTest::test_broadcasting3, test/test_fx.py::AnnotationsTest::test_consistency, test/test_fx.py::AnnotationsTest::test_precision, test/test_fx.py::TypeCheckerTest::test_flatten_fully_static, test/test_fx.py::TypeCheckerTest::test_resnet50, test/test_fx.py::TypeCheckerTest::test_symbolic_add_with_broadcast, test/test_fx.py::TypeCheckerTest::test_symbolic_add_with_broadcast_2, test/test_fx.py::TypeCheckerTest::test_type_check_add_false, test/test_fx.py::TypeCheckerTest::test_type_check_add_true, test/test_fx.py::TypeCheckerTest::test_type_check_add_with_broadcast, test/test_fx.py::TypeCheckerTest::test_type_check_add_with_scalar, test/test_fx.py::TypeCheckerTest::test_type_check_batch_norm_2D, test/test_fx.py::TypeCheckerTest::test_type_check_batch_norm_2D_broadcast, test/test_fx.py::TypeCheckerTest::test_type_check_batch_norm_2D_false, test/test_fx.py::TypeCheckerTest::test_type_check_batch_norm_symbolic, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D_2, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D_2_fully_static, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D_maxpool2d_flatten, test/test_fx.py::TypeCheckerTest::test_type_check_conv2D_types, test/test_fx.py::TypeCheckerTest::test_type_check_flatten, test/test_fx.py::TypeCheckerTest::test_type_check_flatten3, test/test_fx.py::TypeCheckerTest::test_type_check_flatten_2, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_dyn_false, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_dyn_true, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_dyn_true_param_false, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_false, test/test_fx.py::TypeCheckerTest::test_type_check_reshape_true, test/test_fx.py::TypeCheckerTest::test_type_check_symbolic_inferenceconv2D_maxpool2d_flatten, test/test_fx.py::TypeCheckerTest::test_type_check_transpose_False, test/test_fx.py::TypeCheckerTest::test_type_check_transpose_true, test/test_fx.py::TypeCheckerTest::test_type_maxpool2d_fully_static, test/test_fx.py::TypeCheckerTest::test_type_typechecl_maxpool2d_3dinput, test/test_fx.py::TypeCheckerTest::test_typecheck_basicblock, test/test_fx.py::TestMatcher::test_matcher_with_name_node_map_function, test/test_fx.py::TestMatcher::test_matcher_with_name_node_map_module, test/test_fx.py::TestMatcher::test_split_to_graph_and_name_node_map, test/test_fx.py::TestMatcher::test_subgraph_matcher_ignore_literals, test/test_fx.py::TestMatcher::test_subgraph_matcher_with_attributes, test/test_fx.py::TestMatcher::test_subgraph_matcher_with_list, test/test_fx.py::TestMatcher::test_subgraph_matcher_with_list_bad, test/test_fx.py::TestMatcher::test_variatic_arg_matching, test/test_fx.py::TestPassManager::test_pass_manager, test/test_fx.py::TestPassManager::test_pass_manager_bad_checks, test/test_fx.py::TestPassManager::test_pass_manager_checks, test/test_fx.py::TestPassManager::test_pass_manager_error, test/test_fx.py::TestPassManager::test_this_before_that_pass_constraint, test/test_fx.py::TestPassManager::test_topological_sort, test/test_fx.py::TestSourceMatcher::test_legalize_slice, test/test_fx.py::TestSourceMatcher::test_module_partitioner_conv_relu_maxpool, test/test_fx.py::TestSourceMatcher::test_module_partitioner_conv_relu_maxpool_torch_fn_export_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_conv_relu_maxpool_torch_fn_export_strict_True, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_conv_relu_conv, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_conv_relu_conv_torch_fn_export_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_conv_relu_conv_torch_fn_export_strict_True, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_linear_relu_linear, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_linear_relu_linear_torch_fn_export_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_functional_linear_relu_linear_torch_fn_export_strict_True, test/test_fx.py::TestSourceMatcher::test_module_partitioner_linear_relu_linear, test/test_fx.py::TestSourceMatcher::test_module_partitioner_linear_relu_linear_torch_fn_export_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_linear_relu_linear_torch_fn_export_strict_True, test/test_fx.py::TestSourceMatcher::test_module_partitioner_weight_tied_strict_False, test/test_fx.py::TestSourceMatcher::test_module_partitioner_weight_tied_strict_True, test/test_fx.py::TestSubgraphRewriter::test_matching_pattern_with_list_type_arg, test/test_fx.py::TestSubgraphRewriter::test_matching_variable_arguments, test/test_fx.py::TestSubgraphRewriter::test_replace_pattern_with_callback, test/test_fx.py::TestSubgraphRewriter::test_replace_pattern_with_filters, test/test_fx.py::TestSubgraphRewriter::test_replaced_nodes, test/test_fx.py::TestSubgraphRewriter::test_replacement_with_attrs, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_annotations_int, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_call_method, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_correct_output_replacement, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_graph_argument_order, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_internal_pattern_nodes_cannot_have_users_that_are_not_matched, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_local_revert, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_multiple_pattern_match, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_nodes_with_kwargs, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_pattern_is_entire_graph, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_pattern_output_pattern_node_can_have_users_that_are_not_matched, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_placeholder_matching, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_preserves_logic, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_replace_consecutive_submodules, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_replace_with_duplicated_outputs, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_replace_with_multiple_outputs, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_replaces_referenced_submodules, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_single_pattern_match, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_traced_as_callable, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_oneliner_pattern, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_overlapping_matches, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_trivial_replacement, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_unused_args, test/test_fx.py::TestSubgraphRewriter::test_subgraph_rewriter_with_unused_results, test/test_fx.py::TestFX::test_all_input_nodes, test/test_fx.py::TestFX::test_annotation_with_future, test/test_fx.py::TestFX::test_annotations_empty_tuple, test/test_fx.py::TestFX::test_annotations_with_forward_references, test/test_fx.py::TestFX::test_annotations_with_no_forward_references, test/test_fx.py::TestFX::test_annotations_with_non_torch_reference_and_internal_forward_references, test/test_fx.py::TestFX::test_annotations_with_non_torch_reference_and_no_internal_forward_references, test/test_fx.py::TestFX::test_args_kwargs, test/test_fx.py::TestFX::test_args_kwargs_no_self, test/test_fx.py::TestFX::test_assert, test/test_fx.py::TestFX::test_ast_rewriter_reassigns_submodules, test/test_fx.py::TestFX::test_ast_rewriter_rewrites_assert, test/test_fx.py::TestFX::test_ast_rewriter_rewrites_assert_with_message, test/test_fx.py::TestFX::test_ast_rewriter_wrap, test/test_fx.py::TestFX::test_ast_rewriter_wrap_fn_directly, test/test_fx.py::TestFX::test_ast_rewriter_wrap_with_submodule, test/test_fx.py::TestFX::test_ast_rewriter_wrapped_via_decorator, test/test_fx.py::TestFX::test_ast_rewriter_wrapped_via_decorator_and_transformed, test/test_fx.py::TestFX::test_autowrap_functions, test/test_fx.py::TestFX::test_concrete_arg_none_assert, test/test_fx.py::TestFX::test_construct_root_dict, test/test_fx.py::TestFX::test_control_flow_tracing, test/test_fx.py::TestFX::test_copy_it, test/test_fx.py::TestFX::test_copy_no_remap, test/test_fx.py::TestFX::test_ctx_mgr, test/test_fx.py::TestFX::test_custom_codegen, test/test_fx.py::TestFX::test_custom_codegen_with_transformer, test/test_fx.py::TestFX::test_custom_import, test/test_fx.py::TestFX::test_custom_proxy_dynamic_value, test/test_fx.py::TestFX::test_custom_proxy_input_dependent_control_flow, test/test_fx.py::TestFX::test_custom_proxy_type, test/test_fx.py::TestFX::test_custom_proxy_type_literal, test/test_fx.py::TestFX::test_custom_traceback_not_raised_when_exception_source_is_submodule, test/test_fx.py::TestFX::test_custom_traceback_raised_when_exception_source_is_graphmodule, test/test_fx.py::TestFX::test_deepcopy_graph_with_tracer_cls, test/test_fx.py::TestFX::test_deepcopy_graphmodule, test/test_fx.py::TestFX::test_deepcopy_graphmodule_with_transform, test/test_fx.py::TestFX::test_deepcopy_no_recursion, test/test_fx.py::TestFX::test_deepcopy_recursion_depth, test/test_fx.py::TestFX::test_deepcopy_tracer, test/test_fx.py::TestFX::test_deepcopy_with_submods_params, test/test_fx.py::TestFX::test_delete_unused_submodules_leaf, test/test_fx.py::TestFX::test_delete_unused_values, test/test_fx.py::TestFX::test_dict, test/test_fx.py::TestFX::test_direct_param_use, test/test_fx.py::TestFX::test_disallow_override, test/test_fx.py::TestFX::test_ellipsis, test/test_fx.py::TestFX::test_empty_graph_codegen, test/test_fx.py::TestFX::test_enum, test/test_fx.py::TestFX::test_erase_node_error, test/test_fx.py::TestFX::test_example_shape_prop, test/test_fx.py::TestFX::test_find_uses, test/test_fx.py::TestFX::test_fn_type_annotation_empty, test/test_fx.py::TestFX::test_fn_type_annotations, test/test_fx.py::TestFX::test_fx_and_or, test/test_fx.py::TestFX::test_fx_create_arg, test/test_fx.py::TestFX::test_fx_shifts, test/test_fx.py::TestFX::test_fx_stateless, test/test_fx.py::TestFX::test_get_torch_func_signature, test/test_fx.py::TestFX::test_getitem, test/test_fx.py::TestFX::test_getitem_subproc, test/test_fx.py::TestFX::test_graph_edit_with_proxy, test/test_fx.py::TestFX::test_graph_fns, test/test_fx.py::TestFX::test_graph_module, test/test_fx.py::TestFX::test_graph_module_init_buffer_param_copied_dict_init, test/test_fx.py::TestFX::test_graph_module_init_buffer_param_copied_mod_init, test/test_fx.py::TestFX::test_graph_module_replicate_for_dp, test/test_fx.py::TestFX::test_graph_unique_names, test/test_fx.py::TestFX::test_graph_unique_names_manual, test/test_fx.py::TestFX::test_immutable_dict_pytree_ops, test/test_fx.py::TestFX::test_immutable_list_pytree_ops, test/test_fx.py::TestFX::test_imul_code_print, test/test_fx.py::TestFX::test_inf_nan, test/test_fx.py::TestFX::test_inf_nan_kwds, test/test_fx.py::TestFX::test_informative_co_filename, test/test_fx.py::TestFX::test_inline_graph, test/test_fx.py::TestFX::test_insert_arg, test/test_fx.py::TestFX::test_insertion_point, test/test_fx.py::TestFX::test_interpreter, test/test_fx.py::TestFX::test_interpreter_default_args, test/test_fx.py::TestFX::test_interpreter_gc_values, test/test_fx.py::TestFX::test_interpreter_noop_resnet18, test/test_fx.py::TestFX::test_interpreter_not_enough_args, test/test_fx.py::TestFX::test_interpreter_onthefly_swap, test/test_fx.py::TestFX::test_interpreter_other_graph, test/test_fx.py::TestFX::test_interpreter_partial_eval, test/test_fx.py::TestFX::test_interpreter_run_node_override, test/test_fx.py::TestFX::test_interpreter_star_args, test/test_fx.py::TestFX::test_interpreter_with_codegen, test/test_fx.py::TestFX::test_layout, test/test_fx.py::TestFX::test_leaf_module, test/test_fx.py::TestFX::test_lineno_map, test/test_fx.py::TestFX::test_matmul_tracing, test/test_fx.py::TestFX::test_metadata_on_ph, test/test_fx.py::TestFX::test_module_deepcopy_edit_nodes, test/test_fx.py::TestFX::test_move_before, test/test_fx.py::TestFX::test_multi_insert_point, test/test_fx.py::TestFX::test_multiple_default_args, test/test_fx.py::TestFX::test_named_tuple_inlined, test/test_fx.py::TestFX::test_namedtuple_return_qualname, test/test_fx.py::TestFX::test_namedtuple_return_trace, test/test_fx.py::TestFX::test_native_callable, test/test_fx.py::TestFX::test_nn_module_stack, test/test_fx.py::TestFX::test_no_mutation, test/test_fx.py::TestFX::test_node_tagging, test/test_fx.py::TestFX::test_nonetype_annotation, test/test_fx.py::TestFX::test_partial_trace, test/test_fx.py::TestFX::test_pickle_custom_import, test/test_fx.py::TestFX::test_pickle_graphmodule, test/test_fx.py::TestFX::test_pickle_nonetype_annotation, test/test_fx.py::TestFX::test_pickle_torch_custom_ops, test/test_fx.py::TestFX::test_prepend_self, test/test_fx.py::TestFX::test_pretty_print, test/test_fx.py::TestFX::test_pretty_print_graph, test/test_fx.py::TestFX::test_pretty_print_node, test/test_fx.py::TestFX::test_pretty_print_targets, test/test_fx.py::TestFX::test_print_graph, test/test_fx.py::TestFX::test_profiler_ranges_side_effect, test/test_fx.py::TestFX::test_proxy_deepcopy_with_tracer, test/test_fx.py::TestFX::test_proxy_deepcopy_without_tracer, test/test_fx.py::TestFX::test_pytree, test/test_fx.py::TestFX::test_pytree_concrete, test/test_fx.py::TestFX::test_reassign_args_kwargs_uses, test/test_fx.py::TestFX::test_regular_and_default_args, test/test_fx.py::TestFX::test_remove_uses, test/test_fx.py::TestFX::test_remove_uses_with_custom_filter, test/test_fx.py::TestFX::test_replace_input, test/test_fx.py::TestFX::test_replace_uses, test/test_fx.py::TestFX::test_reserved_getattr, test/test_fx.py::TestFX::test_return_tuple, test/test_fx.py::TestFX::test_return_type_exists, test/test_fx.py::TestFX::test_return_type_exists_pre_pep585, test/test_fx.py::TestFX::test_script_method_trace, test/test_fx.py::TestFX::test_script_tensor_constant, test/test_fx.py::TestFX::test_sequential, test/test_fx.py::TestFX::test_shape_prop_aggregate, test/test_fx.py::TestFX::test_shape_prop_layout, test/test_fx.py::TestFX::test_shape_prop_layout_3d, test/test_fx.py::TestFX::test_shape_prop_unbacked_sym, test/test_fx.py::TestFX::test_single_default_arg, test/test_fx.py::TestFX::test_snake_case, test/test_fx.py::TestFX::test_sqrt, test/test_fx.py::TestFX::test_stack_traces, test/test_fx.py::TestFX::test_stack_traces_with_transformer, test/test_fx.py::TestFX::test_string_literal_return, test/test_fx.py::TestFX::test_submodule_manipulation_API, test/test_fx.py::TestFX::test_symbolic_trace_assert, test/test_fx.py::TestFX::test_symbolic_trace_sequential, test/test_fx.py::TestFX::test_tensor_attribute, test/test_fx.py::TestFX::test_tensor_attribute_coalseced, test/test_fx.py::TestFX::test_tensor_constant, test/test_fx.py::TestFX::test_throw_out_variant, test/test_fx.py::TestFX::test_torch_custom_ops, test/test_fx.py::TestFX::test_torch_fx_getattr, test/test_fx.py::TestFX::test_torch_fx_len, test/test_fx.py::TestFX::test_torch_op_overloads, test/test_fx.py::TestFX::test_torchbind_class_attribute_in_fx, test/test_fx.py::TestFX::test_torchbind_class_attribute_in_fx_tensor_arg, test/test_fx.py::TestFX::test_trace_buffer_slice, test/test_fx.py::TestFX::test_trace_dict_int_keys, test/test_fx.py::TestFX::test_trace_dict_proxy_keys, test/test_fx.py::TestFX::test_trace_fn_constant, test/test_fx.py::TestFX::test_trace_function, test/test_fx.py::TestFX::test_trace_multiple_funcs, test/test_fx.py::TestFX::test_trace_return_dataclass, test/test_fx.py::TestFX::test_trace_return_dataclass_nested, test/test_fx.py::TestFX::test_trace_return_namedtuple, test/test_fx.py::TestFX::test_tracing_graphmodules_as_leaf_submodules, test/test_fx.py::TestFX::test_transformer_multi_outputs, test/test_fx.py::TestFX::test_transformer_noop, test/test_fx.py::TestFX::test_transformer_op_swap, test/test_fx.py::TestFX::test_transformer_preserves_nn_module_stack_for_get_attr, test/test_fx.py::TestFX::test_tuple_no_subscript, test/test_fx.py::TestFX::test_typename_print, test/test_fx.py::TestFX::test_typename_print_pre_pep585, test/test_fx.py::TestFX::test_unpack, test/test_fx.py::TestFX::test_unpack_dict_better_error, test/test_fx.py::TestFX::test_unpack_list_better_error, test/test_fx.py::TestFX::test_update_args_api, test/test_fx.py::TestFX::test_update_args_kwargs_yells_at_you, test/test_fx.py::TestFX::test_update_kwargs_api, test/test_fx.py::TestFX::test_user_friendly_call_provenance_with_function, test/test_fx.py::TestFX::test_user_friendly_call_provenance_with_module, test/test_fx.py::TestFX::test_varargs_concrete, test/test_fx.py::TestFX::test_wrap, test/test_fx.py::TestFX::test_wrap_decorated_function, test/test_fx.py::TestFX::test_wrap_fn_directly, test/test_fx.py::TestFX::test_wrap_with_submodule, test/test_fx.py::TestFX::test_wrapped_method, test/test_fx.py::TestFX::test_wrapped_retrace, test/test_fx.py::TestFX::test_wrapped_via_decorator, test/test_fx.py::TestFX::test_wrapped_via_decorator_and_transformed, test/test_fx.py::TestFX::test_wrong_target_type, test/test_fx.py::TestFX::test_wrong_topo, test/test_fx.py::TestFXAPIBackwardCompatibility::test_adding_side_effect_function, test/test_fx.py::TestFXAPIBackwardCompatibility::test_class_member_back_compat, test/test_fx.py::TestFXAPIBackwardCompatibility::test_function_back_compat, test/test_fx.py::TestFXAPIBackwardCompatibility::test_preserve_unused_attr_after_unpickle, test/test_fx.py::TestFXAPIBackwardCompatibility::test_public_api_surface, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_avg_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_avg_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_avg_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool1d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool2d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_adaptive_max_pool3d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_affine_grid, test/test_fx.py::TestFunctionalTracing::test_nn_functional_alpha_dropout, test/test_fx.py::TestFunctionalTracing::test_nn_functional_avg_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_avg_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_avg_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_batch_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_bilinear, test/test_fx.py::TestFunctionalTracing::test_nn_functional_binary_cross_entropy, test/test_fx.py::TestFunctionalTracing::test_nn_functional_binary_cross_entropy_with_logits, test/test_fx.py::TestFunctionalTracing::test_nn_functional_celu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_celu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_channel_shuffle, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv_tbc, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv_transpose1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv_transpose2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_conv_transpose3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_cosine_embedding_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_cosine_similarity, test/test_fx.py::TestFunctionalTracing::test_nn_functional_cross_entropy, test/test_fx.py::TestFunctionalTracing::test_nn_functional_ctc_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_dropout, test/test_fx.py::TestFunctionalTracing::test_nn_functional_dropout1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_dropout2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_dropout3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_elu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_elu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_embedding, test/test_fx.py::TestFunctionalTracing::test_nn_functional_embedding_bag, test/test_fx.py::TestFunctionalTracing::test_nn_functional_feature_alpha_dropout, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fold, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fractional_max_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fractional_max_pool2d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fractional_max_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_fractional_max_pool3d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_gaussian_nll_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_gelu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_glu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_grid_sample, test/test_fx.py::TestFunctionalTracing::test_nn_functional_group_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_gumbel_softmax, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardshrink, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardsigmoid, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardswish, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardtanh, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hardtanh_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_hinge_embedding_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_huber_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_instance_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_interpolate, test/test_fx.py::TestFunctionalTracing::test_nn_functional_kl_div, test/test_fx.py::TestFunctionalTracing::test_nn_functional_l1_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_layer_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_leaky_relu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_leaky_relu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_linear, test/test_fx.py::TestFunctionalTracing::test_nn_functional_local_response_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_log_softmax, test/test_fx.py::TestFunctionalTracing::test_nn_functional_logsigmoid, test/test_fx.py::TestFunctionalTracing::test_nn_functional_lp_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_lp_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_lp_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_margin_ranking_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool1d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool2d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_pool3d_with_indices, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_unpool1d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_unpool2d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_max_unpool3d, test/test_fx.py::TestFunctionalTracing::test_nn_functional_mish, test/test_fx.py::TestFunctionalTracing::test_nn_functional_mse_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_multi_head_attention_forward, test/test_fx.py::TestFunctionalTracing::test_nn_functional_multi_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_multilabel_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_multilabel_soft_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_native_channel_shuffle, test/test_fx.py::TestFunctionalTracing::test_nn_functional_nll_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_normalize, test/test_fx.py::TestFunctionalTracing::test_nn_functional_one_hot, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pad, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pairwise_distance, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pdist, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pixel_shuffle, test/test_fx.py::TestFunctionalTracing::test_nn_functional_pixel_unshuffle, test/test_fx.py::TestFunctionalTracing::test_nn_functional_poisson_nll_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_prelu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_relu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_relu6, test/test_fx.py::TestFunctionalTracing::test_nn_functional_relu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_rms_norm, test/test_fx.py::TestFunctionalTracing::test_nn_functional_rrelu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_rrelu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_scaled_dot_product_attention, test/test_fx.py::TestFunctionalTracing::test_nn_functional_selu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_selu_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_silu, test/test_fx.py::TestFunctionalTracing::test_nn_functional_smooth_l1_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_soft_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_softmax, test/test_fx.py::TestFunctionalTracing::test_nn_functional_softmin, test/test_fx.py::TestFunctionalTracing::test_nn_functional_softplus, test/test_fx.py::TestFunctionalTracing::test_nn_functional_softshrink, test/test_fx.py::TestFunctionalTracing::test_nn_functional_threshold, test/test_fx.py::TestFunctionalTracing::test_nn_functional_threshold_, test/test_fx.py::TestFunctionalTracing::test_nn_functional_triplet_margin_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_triplet_margin_with_distance_loss, test/test_fx.py::TestFunctionalTracing::test_nn_functional_unfold, test/test_fx.py::TestFunctionalTracing::test_nn_functional_upsample, test/test_fx.py::TestFunctionalTracing::test_nn_functional_upsample_bilinear, test/test_fx.py::TestFunctionalTracing::test_nn_functional_upsample_nearest, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_H_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_T_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___getitem___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___radd___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rdiv___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rmatmul___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rmod___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rmul___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rpow___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive___rsub___cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__batch_norm_with_update_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__chunk_cat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__native_batch_norm_legit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__segment_reduce_lengths_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__segment_reduce_offsets_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__softmax_backward_data_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__unsafe_masked_index_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_abs_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_acos_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_acosh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_add_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addbmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addcdiv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addcmul_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addmm_decomposed_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addmv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_addr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_alias_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_all_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_allclose_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_amax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_amin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_aminmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_angle_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_any_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_arange_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_argmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_argmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_argsort_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_argwhere_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_as_strided_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_as_strided_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_as_strided_partial_views_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_as_strided_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_asin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_asinh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atan2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atan_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atanh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atleast_1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atleast_2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_atleast_3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_baddbmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bernoulli_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bfloat16_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_block_diag_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bool_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_broadcast_shapes_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_broadcast_tensors_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_broadcast_to_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_bucketize_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_byte_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cartesian_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cauchy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cdist_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cdouble_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ceil_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cfloat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_chalf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_char_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cholesky_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cholesky_inverse_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cholesky_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_chunk_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_clamp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_clamp_max_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_clamp_min_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_clone_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_column_stack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_combinations_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_complex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_conj_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_conj_physical_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_constant_pad_nd_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_contiguous_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_copysign_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_corrcoef_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cos_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cosh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_count_nonzero_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cov_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cross_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cummax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cummin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cumprod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cumsum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_cumulative_trapezoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_deg2rad_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diag_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diag_embed_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diagflat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diagonal_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diagonal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diagonal_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_diff_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_digamma_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_dist_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_div_floor_rounding_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_div_no_rounding_mode_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_div_trunc_rounding_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_dot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_double_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_dsplit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_dstack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_einsum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_empty_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_empty_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_empty_permuted_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_empty_strided_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_eq_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_equal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_erf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_erfc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_erfinv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_exp2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_exp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_expand_as_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_expand_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_expand_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_expm1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_exponential_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_eye_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_fft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_fft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_fftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_fftshift_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_hfft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_hfft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_hfftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ifft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ifft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ifftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ifftshift_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ihfft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ihfft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_ihfftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_irfft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_irfft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_irfftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_rfft2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_rfft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fft_rfftn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fill_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_flatten_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_flip_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fliplr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_flipud_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_float_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_float_power_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_floor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_floor_divide_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_fmod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_frac_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_frexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_full_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_full_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_gather_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ge_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_geometric_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_geqrf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_gradient_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_grid_sampler_2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_grid_sampler_3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_gt_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_half_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_hash_tensor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_heaviside_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_histc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_histogram_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_histogramdd_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_hsplit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_hstack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_hypot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_i0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_igamma_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_igammac_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_add_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_fill_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_put_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_reduce_amax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_reduce_amin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_reduce_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_reduce_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_index_select_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_inner_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_int_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isclose_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isfinite_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isinf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isnan_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isneginf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isposinf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_isreal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_item_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_binary_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_jiterator_unary_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_kron_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_kthvalue_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ldexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_le_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lerp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lgamma_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_cholesky_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_cholesky_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_cond_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_cross_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_det_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_diagonal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_eig_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_eigh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_eigvals_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_eigvalsh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_householder_product_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_inv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_inv_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_ldl_factor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_ldl_factor_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_ldl_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lstsq_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lu_factor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lu_factor_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_lu_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_matrix_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_matrix_power_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_matrix_rank_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_multi_dot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_pinv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_pinv_hermitian_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_pinv_singular_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_qr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_slogdet_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_solve_ex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_solve_triangular_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_svd_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_svdvals_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_tensorinv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_tensorsolve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_vander_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_vecdot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linalg_vector_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linspace_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_linspace_tensor_overload_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log10_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log1p_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log_normal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log_softmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_log_softmax_with_dtype_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logaddexp2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logaddexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logcumsumexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logdet_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logical_and_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logical_not_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logical_or_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logical_xor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logspace_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logspace_tensor_overload_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_logsumexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_long_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lt_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lu_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_lu_unpack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mH_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mT_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_amax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_amin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_argmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_argmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_cumprod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_cumsum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_fill_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_log_softmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_logaddexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_logsumexp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_median_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_normalize_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_select_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_softmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_softmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_std_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_sum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_masked_var_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_matmul_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_matrix_exp_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_max_binary_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_max_reduction_no_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_max_reduction_with_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_maximum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_median_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_min_binary_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_min_reduction_no_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_min_reduction_with_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_minimum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mode_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_movedim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_msort_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mul_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_multinomial_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mv_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nan_to_num_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nanmean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nanmedian_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nanquantile_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nansum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_narrow_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_narrow_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_native_batch_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_native_dropout_backward_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_native_layer_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ne_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_neg_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_empty_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_empty_strided_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_full_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_ones_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_new_zeros_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nextafter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_batch_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_bilinear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_celu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_cross_entropy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_ctc_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_dropout2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_dropout3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_dropout_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_elu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_embedding_bag_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_embedding_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_gelu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_glu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_grid_sample_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_group_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hardshrink_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hardswish_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hardtanh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_huber_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_instance_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_area_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_kl_div_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_l1_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_layer_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_leaky_relu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_linear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_local_response_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_logsigmoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_pool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_pool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_pool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_mish_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_mse_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_nll_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_normalize_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_circular_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_constant_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_reflect_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_replicate_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pdist_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_prelu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_relu6_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_relu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_rms_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_rrelu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_selu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_silu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softmin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softplus_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softshrink_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_softsign_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_tanhshrink_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_threshold_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_unfold_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nonzero_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_nonzero_static_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_norm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_norm_fro_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_norm_inf_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_norm_nuc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_normal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_normal_in_place_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_normal_number_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ones_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ones_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ormqr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_outer_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_pca_lowrank_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_permute_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_permute_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_pinverse_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polar_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_positive_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_pow_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_put_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_qr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_quantile_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rad2deg_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rand_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_randint_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_randint_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_randn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_randn_like_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_ravel_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_real_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_reciprocal_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_remainder_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_renorm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_repeat_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_repeat_interleave_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_reshape_as_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_reshape_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_resize__cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_resize_as__cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_resolve_conj_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_resolve_neg_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_roll_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rot90_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_round_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_round_decimals_0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_round_decimals_3_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_round_decimals_neg_3_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rsqrt_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_rsub_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scalar_tensor_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_add_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_amax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_amin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_prod_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_scatter_reduce_sum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_searchsorted_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_select_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_select_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sgn_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_short_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sigmoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sign_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_bartlett_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_blackman_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_cosine_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_exponential_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_gaussian_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_general_cosine_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_general_hamming_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_hamming_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_hann_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_kaiser_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signal_windows_nuttall_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_signbit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sin_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sinc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sinh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_slice_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_slice_scatter_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_softmax_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_softmax_with_dtype_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sort_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sparse_mm_reduce_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sparse_sampled_addmm_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_airy_ai_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_bessel_j0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_bessel_j1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_bessel_y0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_bessel_y1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_chebyshev_polynomial_w_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_entr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_erfcx_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_hermite_polynomial_h_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_hermite_polynomial_he_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_i0e_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_i1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_i1e_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_legendre_polynomial_p_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_log_ndtr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_modified_bessel_i0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_modified_bessel_i1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_modified_bessel_k0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_modified_bessel_k1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_ndtr_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_ndtri_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_spherical_bessel_j0_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_xlog1py_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_special_zeta_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_split_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_split_list_args_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_split_with_sizes_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_split_with_sizes_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sqrt_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_square_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_squeeze_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_squeeze_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_squeeze_multiple_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_stack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_std_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_std_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_std_mean_unbiased_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_std_unbiased_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_stft_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sub_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sum_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_sum_to_size_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_svd_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_svd_lowrank_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_t_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_t_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_take_along_dim_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_take_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tan_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tanh_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tensor_split_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tensordot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tile_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_to_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_to_sparse_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_topk_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_trace_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_transpose_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_transpose_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_trapezoid_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_trapz_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_triangular_solve_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_tril_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_triu_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_true_divide_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_trunc_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unbind_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unbind_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unflatten_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unfold_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unfold_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_uniform_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unique_consecutive_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unique_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unsafe_chunk_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unsafe_split_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unsqueeze_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_unsqueeze_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_var_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_var_mean_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_var_mean_unbiased_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_var_unbiased_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_vdot_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_view_as_complex_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_view_as_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_view_copy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_view_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_vsplit_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_vstack_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_where_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_xlogy_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_zero__cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_zeros_cpu_float32, test/test_fx.py::TestOperatorSignaturesCPU::test_get_torch_func_signature_exhaustive_zeros_like_cpu_float32 2025-09-07T07:03:34.2282019Z 2025-09-07T07:03:34.2282278Z Running test_transformers_privateuse1 1/1 ... [2025-09-07 07:03:34.144602] 2025-09-07T07:03:34.6676313Z Processing c:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg 2025-09-07T07:03:34.6716930Z Preparing metadata (pyproject.toml): started 2025-09-07T07:03:35.1969084Z Preparing metadata (pyproject.toml): finished with status 'done' 2025-09-07T07:03:35.2016760Z Requirement already satisfied: torch in c:\jenkins\miniconda3\lib\site-packages (from torch_openreg==0.0.1) (2.9.0a0+git93fb23d) 2025-09-07T07:03:35.2103969Z Requirement already satisfied: filelock in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (3.19.1) 2025-09-07T07:03:35.2110871Z Requirement already satisfied: typing-extensions>=4.10.0 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (4.12.2) 2025-09-07T07:03:35.2119242Z Requirement already satisfied: sympy>=1.13.3 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (1.14.0) 2025-09-07T07:03:35.2126031Z Requirement already satisfied: networkx>=2.5.1 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (2.8.8) 2025-09-07T07:03:35.2130073Z Requirement already satisfied: jinja2 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (3.1.6) 2025-09-07T07:03:35.2136661Z Requirement already satisfied: fsspec>=0.8.5 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (2025.9.0) 2025-09-07T07:03:35.3269857Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\jenkins\miniconda3\lib\site-packages (from sympy>=1.13.3->torch->torch_openreg==0.0.1) (1.2.1) 2025-09-07T07:03:35.3311384Z Requirement already satisfied: MarkupSafe>=2.0 in c:\jenkins\miniconda3\lib\site-packages (from jinja2->torch->torch_openreg==0.0.1) (3.0.2) 2025-09-07T07:03:35.3388664Z Building wheels for collected packages: torch_openreg 2025-09-07T07:03:35.3405910Z Building wheel for torch_openreg (pyproject.toml): started 2025-09-07T07:04:37.1198606Z Building wheel for torch_openreg (pyproject.toml): still running... 2025-09-07T07:04:49.5291859Z Building wheel for torch_openreg (pyproject.toml): finished with status 'done' 2025-09-07T07:04:49.5318060Z Created wheel for torch_openreg: filename=torch_openreg-0.0.1-cp39-cp39-win_amd64.whl size=256305 sha256=376036a48cb6aaecd06d6989179c7368fe5f3f573d5d5b73256ed07e9dcfd906 2025-09-07T07:04:49.5320096Z Stored in directory: C:\Users\runneruser\AppData\Local\Temp\pip-ephem-wheel-cache-vvsg_qvr\wheels\a3\02\d6\fcff31a5b6c8f4b16d9cce5925622a3a846f25a7021a1a6d51 2025-09-07T07:04:49.5354906Z Successfully built torch_openreg 2025-09-07T07:04:50.3502565Z Installing collected packages: torch_openreg 2025-09-07T07:04:50.3819138Z Successfully installed torch_openreg-0.0.1 2025-09-07T07:04:50.4601109Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:04:50.4608703Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_transformers_privateuse1.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:04:50.460419] 2025-09-07T07:04:54.4464505Z 2025-09-07T07:04:54.4465373Z test_transformers_privateuse1 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_transformers_privateuse1_1.1_7a47076f728ed7ee_.log 2025-09-07T07:04:54.4467758Z Running 3 items in this shard: test/test_transformers_privateuse1.py::TestSDPAPrivateUse1Only::test_fused_sdp_choice_privateuseone, test/test_transformers_privateuse1.py::TestSDPAPrivateUse1Only::test_scaled_dot_product_fused_attention_overrideable, test/test_transformers_privateuse1.py::TestSDPAPrivateUse1Only::test_scaled_dot_product_fused_attention_overrideable_backward 2025-09-07T07:04:54.4469327Z 2025-09-07T07:04:54.4471143Z Running test_openreg 1/1 ... [2025-09-07 07:04:54.446131] 2025-09-07T07:04:54.9862314Z Processing c:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions\open_registration_extension\torch_openreg 2025-09-07T07:04:54.9899008Z Preparing metadata (pyproject.toml): started 2025-09-07T07:04:55.4577641Z Preparing metadata (pyproject.toml): finished with status 'done' 2025-09-07T07:04:55.4625890Z Requirement already satisfied: torch in c:\jenkins\miniconda3\lib\site-packages (from torch_openreg==0.0.1) (2.9.0a0+git93fb23d) 2025-09-07T07:04:55.4714727Z Requirement already satisfied: filelock in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (3.19.1) 2025-09-07T07:04:55.4721885Z Requirement already satisfied: typing-extensions>=4.10.0 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (4.12.2) 2025-09-07T07:04:55.4730692Z Requirement already satisfied: sympy>=1.13.3 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (1.14.0) 2025-09-07T07:04:55.4737262Z Requirement already satisfied: networkx>=2.5.1 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (2.8.8) 2025-09-07T07:04:55.4741311Z Requirement already satisfied: jinja2 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (3.1.6) 2025-09-07T07:04:55.4748093Z Requirement already satisfied: fsspec>=0.8.5 in c:\jenkins\miniconda3\lib\site-packages (from torch->torch_openreg==0.0.1) (2025.9.0) 2025-09-07T07:04:55.5902375Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\jenkins\miniconda3\lib\site-packages (from sympy>=1.13.3->torch->torch_openreg==0.0.1) (1.2.1) 2025-09-07T07:04:55.5945081Z Requirement already satisfied: MarkupSafe>=2.0 in c:\jenkins\miniconda3\lib\site-packages (from jinja2->torch->torch_openreg==0.0.1) (3.0.2) 2025-09-07T07:04:55.6031995Z Building wheels for collected packages: torch_openreg 2025-09-07T07:04:55.6050509Z Building wheel for torch_openreg (pyproject.toml): started 2025-09-07T07:05:55.6692717Z Building wheel for torch_openreg (pyproject.toml): still running... 2025-09-07T07:06:11.9642397Z Building wheel for torch_openreg (pyproject.toml): finished with status 'done' 2025-09-07T07:06:11.9671623Z Created wheel for torch_openreg: filename=torch_openreg-0.0.1-cp39-cp39-win_amd64.whl size=256303 sha256=17a8933b98262768b53d69ca2cc7b09228457ec4bbdac97f0656a1433d7bc316 2025-09-07T07:06:11.9712471Z Stored in directory: C:\Users\runneruser\AppData\Local\Temp\pip-ephem-wheel-cache-6wekssyx\wheels\a3\02\d6\fcff31a5b6c8f4b16d9cce5925622a3a846f25a7021a1a6d51 2025-09-07T07:06:11.9713277Z Successfully built torch_openreg 2025-09-07T07:06:12.7801662Z Installing collected packages: torch_openreg 2025-09-07T07:06:12.7803271Z Attempting uninstall: torch_openreg 2025-09-07T07:06:12.7812777Z Found existing installation: torch_openreg 0.0.1 2025-09-07T07:06:12.7833408Z Can't uninstall 'torch_openreg'. No files were found to uninstall. 2025-09-07T07:06:12.8149632Z Successfully installed torch_openreg-0.0.1 2025-09-07T07:06:12.8931652Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:06:12.8938754Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_openreg.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:06:12.886071] 2025-09-07T07:06:19.0793148Z 2025-09-07T07:06:19.0794621Z test_openreg 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_openreg_1.1_b2e80adff2815be7_.log 2025-09-07T07:06:19.0805097Z Running 44 items in this shard: test/test_openreg.py::TestPrivateUse1::test_backend_dispatchstub, test/test_openreg.py::TestPrivateUse1::test_backend_generate_methods, test/test_openreg.py::TestPrivateUse1::test_backend_module_function, test/test_openreg.py::TestPrivateUse1::test_backend_module_methods, test/test_openreg.py::TestPrivateUse1::test_backend_module_registration, test/test_openreg.py::TestPrivateUse1::test_backend_name, test/test_openreg.py::TestPrivateUse1::test_backend_operator_registration, test/test_openreg.py::TestPrivateUse1::test_backend_packed_sequence_methods, test/test_openreg.py::TestPrivateUse1::test_backend_storage_methods, test/test_openreg.py::TestPrivateUse1::test_backend_tensor_methods, test/test_openreg.py::TestPrivateUse1::test_backend_tensor_type, test/test_openreg.py::TestPrivateUse1::test_backend_type_methods, test/test_openreg.py::TestOpenReg::test_autograd_init, test/test_openreg.py::TestOpenReg::test_compile_autograd_function_aliasing, test/test_openreg.py::TestOpenReg::test_compile_autograd_function_returns_self, test/test_openreg.py::TestOpenReg::test_copy_same_device, test/test_openreg.py::TestOpenReg::test_cross_device_copy, test/test_openreg.py::TestOpenReg::test_cross_diff_devices_copy, test/test_openreg.py::TestOpenReg::test_data_dependent_output, test/test_openreg.py::TestOpenReg::test_event_elapsed_time, test/test_openreg.py::TestOpenReg::test_event_wait_stream, test/test_openreg.py::TestOpenReg::test_expand, test/test_openreg.py::TestOpenReg::test_factory, test/test_openreg.py::TestOpenReg::test_fake_tensor, test/test_openreg.py::TestOpenReg::test_generator, test/test_openreg.py::TestOpenReg::test_manual_seed, test/test_openreg.py::TestOpenReg::test_named_tensor, test/test_openreg.py::TestOpenReg::test_open_device_cpu_serialization, test/test_openreg.py::TestOpenReg::test_open_device_dlpack, test/test_openreg.py::TestOpenReg::test_open_device_numpy_serialization, test/test_openreg.py::TestOpenReg::test_pin_memory, test/test_openreg.py::TestOpenReg::test_printing, test/test_openreg.py::TestOpenReg::test_quantize, test/test_openreg.py::TestOpenReg::test_record_event, test/test_openreg.py::TestOpenReg::test_resize, test/test_openreg.py::TestOpenReg::test_rewrapped_storage, test/test_openreg.py::TestOpenReg::test_rng_state, test/test_openreg.py::TestOpenReg::test_scalar_type_fallback, test/test_openreg.py::TestOpenReg::test_serialization, test/test_openreg.py::TestOpenReg::test_stream_synchronize, test/test_openreg.py::TestOpenReg::test_stream_wait_event, test/test_openreg.py::TestOpenReg::test_stream_wait_stream, test/test_openreg.py::TestOpenReg::test_tensor_type_fallback, test/test_openreg.py::TestOpenReg::test_tensorlist_type_fallback 2025-09-07T07:06:19.0815274Z 2025-09-07T07:06:19.0815573Z Running inductor/test_benchmark_fusion 1/1 ... [2025-09-07 07:06:19.078080] 2025-09-07T07:06:19.0816052Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:06:19.0817101Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_benchmark_fusion.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:06:19.078080] 2025-09-07T07:06:29.0923205Z 2025-09-07T07:06:29.0924209Z inductor/test_benchmark_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_benchmark_fusion_1.1_c4f160f1ab9aef8d_.log 2025-09-07T07:06:29.0924925Z 2025-09-07T07:06:29.0928908Z Running test_show_pickle 1/1 ... [2025-09-07 07:06:29.092138] 2025-09-07T07:06:29.0929329Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:06:29.0935217Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_show_pickle.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:06:29.092138] 2025-09-07T07:06:32.6635165Z 2025-09-07T07:06:32.6636158Z test_show_pickle 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_show_pickle_1.1_b20ef9010e31059e_.log 2025-09-07T07:06:32.6637111Z Running 1 items in this shard: test/test_show_pickle.py::TestShowPickle::test_scripted_model 2025-09-07T07:06:32.6637511Z 2025-09-07T07:06:32.6641150Z Running test_utils 1/1 ... [2025-09-07 07:06:32.663816] 2025-09-07T07:06:32.6641546Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:06:32.6647294Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_utils.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:06:32.663816] 2025-09-07T07:11:55.0131368Z 2025-09-07T07:11:55.0132169Z test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_utils_1.1_fbacac305d8672e8_.log 2025-09-07T07:11:55.2152803Z Running 6047 items in this shard: test/test_utils.py::TestCheckpoint::test_checkpoint, test/test_utils.py::TestCheckpoint::test_checkpoint_module_list, test/test_utils.py::TestCheckpoint::test_checkpoint_no_tensors, test/test_utils.py::TestCheckpoint::test_checkpoint_non_tensor, test/test_utils.py::TestCheckpoint::test_checkpoint_non_tensor_inputs_outputs, test/test_utils.py::TestCheckpoint::test_checkpoint_not_preserve_rng_state_and_without_reentrant, test/test_utils.py::TestCheckpoint::test_checkpoint_partial_grad, test/test_utils.py::TestCheckpoint::test_checkpoint_rng_cpu, test/test_utils.py::TestCheckpoint::test_checkpoint_rng_cuda, test/test_utils.py::TestCheckpoint::test_checkpoint_sequential_deprecated_multiple_args, test/test_utils.py::TestCheckpoint::test_checkpoint_sequential_deprecated_no_args, test/test_utils.py::TestCheckpoint::test_checkpoint_trigger, test/test_utils.py::TestCheckpoint::test_checkpoint_valid, test/test_utils.py::TestCheckpoint::test_checkpointing_without_reentrant_early_free, test/test_utils.py::TestCheckpoint::test_get_device_states_recursive, test/test_utils.py::TestCheckpoint::test_infer_device_state_recursive_meta, test/test_utils.py::TestCheckpoint::test_infer_device_state_recursive_multi_cuda, test/test_utils.py::TestDataLoaderUtils::test_multi_drop, test/test_utils.py::TestDataLoaderUtils::test_multi_keep, test/test_utils.py::TestDataLoaderUtils::test_random_seed, test/test_utils.py::TestDataLoaderUtils::test_single_drop, test/test_utils.py::TestDataLoaderUtils::test_single_keep, test/test_utils.py::TestBottleneck::test_bottleneck_cpu_only, test/test_utils.py::TestBottleneck::test_bottleneck_cuda, test/test_utils.py::TestCollectEnv::test_smoke, test/test_utils.py::TestHipify::test_import_hipify, test/test_utils.py::TestHipifyTrie::test_add_and_search_trie, test/test_utils.py::TestHipifyTrie::test_add_multiple_and_search_trie, test/test_utils.py::TestHipifyTrie::test_char_export_trie_to_regex, test/test_utils.py::TestHipifyTrie::test_export_trie_to_regex, test/test_utils.py::TestHipifyTrie::test_prefix_words_export_trie_to_regex, test/test_utils.py::TestHipifyTrie::test_quote_escape, test/test_utils.py::TestHipifyTrie::test_single_export_trie_to_regex, test/test_utils.py::TestHipifyTrie::test_special_char_export_trie_to_regex, test/test_utils.py::TestAssert::test_assert_scriptable, test/test_utils.py::TestAssert::test_assert_true, test/test_utils.py::TestStandaloneCPPJIT::test_load_standalone, test/test_utils.py::TestRenderUtils::test_basic, test/test_utils.py::TestDeviceUtilsCPU::test_basic_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_decorator_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_decorator_generator_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_H_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_T_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___getitem___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___radd___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rand___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rdiv___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmatmul___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmod___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmod___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmod___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmod___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rmul___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___ror___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rpow___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rsub___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops___rxor___cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__batch_norm_with_update_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__batch_norm_with_update_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__batch_norm_with_update_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__batch_norm_with_update_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__chunk_cat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__native_batch_norm_legit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__native_batch_norm_legit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__native_batch_norm_legit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__native_batch_norm_legit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_lengths_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_lengths_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_lengths_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_lengths_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_offsets_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_offsets_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_offsets_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__segment_reduce_offsets_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__softmax_backward_data_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__softmax_backward_data_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__softmax_backward_data_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__softmax_backward_data_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__upsample_bilinear2d_aa_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__upsample_bilinear2d_aa_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops__upsample_bilinear2d_aa_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_abs_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acos_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_acosh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_add_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addbmm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcdiv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addcmul_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmm_decomposed_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addmv_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_addr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_alias_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_all_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_allclose_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_amin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_aminmax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_angle_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_any_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_arange_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argmin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argsort_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_argwhere_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_partial_views_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_as_strided_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_asinh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atan_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atanh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_1d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_2d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_atleast_3d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_baddbmm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bernoulli_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bernoulli_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bernoulli_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bernoulli_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bfloat16_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bincount_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_and_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_left_shift_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_not_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_or_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_right_shift_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bitwise_xor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_block_diag_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bmm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bool_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_shapes_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_tensors_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_broadcast_to_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_bucketize_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_byte_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cartesian_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cauchy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cauchy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cauchy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cauchy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdist_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdist_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cdouble_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ceil_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cfloat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chalf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_char_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_inverse_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_inverse_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_inverse_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_inverse_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cholesky_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_chunk_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_max_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clamp_min_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_clone_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_column_stack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_combinations_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_complex_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_complex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_complex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_conj_physical_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_constant_pad_nd_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_contiguous_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_copysign_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_corrcoef_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cos_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cosh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_count_nonzero_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cov_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cross_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cummin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumprod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumsum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_cumulative_trapezoid_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_deg2rad_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diag_embed_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagflat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diagonal_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_diff_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_digamma_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dist_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_floor_rounding_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_no_rounding_mode_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_div_trunc_rounding_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dot_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_double_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dsplit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_dstack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_einsum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_permuted_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_empty_strided_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eq_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_equal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfc_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_erfinv_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_as_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expand_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_expm1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exponential_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exponential_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exponential_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_exponential_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float8_e4m3fn, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float8_e4m3fnuz, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float8_e5m2, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_float8_e5m2fnuz, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_eye_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_fftshift_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_hfftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ifftshift_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_ihfftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_irfftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfft_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fft_rfftn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fill_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flatten_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flip_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fliplr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_flipud_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_float_power_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_floor_divide_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_fmod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frac_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frac_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frac_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frac_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_frexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_uint16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_uint32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_full_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gather_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gcd_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ge_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geometric_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geqrf_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geqrf_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geqrf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_geqrf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gradient_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_grid_sampler_3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_gt_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_half_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hash_tensor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_heaviside_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histc_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histc_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histogram_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histogram_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histogramdd_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_histogramdd_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hsplit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hstack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hypot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hypot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hypot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_hypot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_i0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igamma_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igamma_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igamma_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igamma_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igammac_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igammac_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igammac_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_igammac_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_imag_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_imag_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_imag_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_add_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_fill_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_put_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_amin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_mean_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_reduce_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_index_select_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_inner_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_int_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isclose_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isfinite_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isinf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isnan_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isneginf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isposinf_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_isreal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_istft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_istft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_item_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_2inputs_2outputs_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_binary_return_by_ref_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_jiterator_unary_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kron_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_kthvalue_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lcm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ldexp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_le_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lerp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lgamma_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cholesky_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cond_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cond_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cond_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cond_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_cross_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_det_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_det_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_det_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_det_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_diagonal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eig_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eig_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eig_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eig_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvals_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvals_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvals_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvals_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvalsh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvalsh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvalsh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_eigvalsh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_householder_product_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_householder_product_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_householder_product_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_householder_product_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_inv_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_factor_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_ldl_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_grad_oriented_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_grad_oriented_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_grad_oriented_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lstsq_grad_oriented_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_factor_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_lu_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_power_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_power_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_power_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_power_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_hermitian_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_hermitian_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_hermitian_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_matrix_rank_hermitian_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_multi_dot_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_norm_subgradients_at_zero_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_hermitian_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_hermitian_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_hermitian_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_hermitian_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_singular_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_singular_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_singular_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_pinv_singular_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_qr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_qr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_qr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_qr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_slogdet_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_slogdet_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_slogdet_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_slogdet_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_ex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_ex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_ex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_ex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_triangular_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_triangular_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_triangular_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_solve_triangular_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svd_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svd_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svd_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svd_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svdvals_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svdvals_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svdvals_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_svdvals_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorinv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorinv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorinv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorinv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorsolve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorsolve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorsolve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_tensorsolve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vander_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vecdot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linalg_vector_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_linspace_tensor_overload_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log10_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log1p_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_normal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_normal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_normal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_normal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_log_softmax_with_dtype_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp2_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logaddexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logcumsumexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logdet_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logdet_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logdet_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logdet_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_and_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_not_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_or_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logical_xor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logspace_tensor_overload_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_logsumexp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_long_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lt_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_unpack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_unpack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_unpack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_lu_unpack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mH_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mT_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_amin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_argmin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumprod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_cumsum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_fill_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_log_softmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_log_softmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_log_softmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_log_softmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logaddexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logaddexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logaddexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logaddexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_logsumexp_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_median_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_median_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_median_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_median_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_normalize_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_select_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_softmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_std_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_sum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_masked_var_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matmul_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_matrix_exp_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_binary_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_pool2d_with_indices_backward_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_pool2d_with_indices_backward_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_pool2d_with_indices_backward_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_no_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_max_reduction_with_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_maximum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_median_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_list_of_tensors_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_meshgrid_variadic_tensors_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_binary_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_no_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_min_reduction_with_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_minimum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mm_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mode_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_movedim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_msort_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mul_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_multinomial_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_multinomial_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_multinomial_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_multinomial_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mv_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nan_to_num_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanmedian_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanquantile_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nanquantile_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nansum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_narrow_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_batch_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_batch_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_batch_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_batch_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_dropout_backward_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_layer_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_layer_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_layer_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_native_layer_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ne_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_neg_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_empty_strided_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_full_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_ones_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_new_zeros_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nextafter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nextafter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nextafter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nextafter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_alpha_dropout_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_alpha_dropout_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_alpha_dropout_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_alpha_dropout_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool1d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_avg_pool3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_batch_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_batch_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_batch_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_batch_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_bilinear_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_celu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_celu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_celu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_celu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_channel_shuffle_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv1d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose1d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_conv_transpose3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_similarity_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_similarity_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_similarity_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cosine_similarity_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cross_entropy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cross_entropy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cross_entropy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_cross_entropy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_ctc_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_ctc_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_dropout_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_elu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_elu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_elu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_elu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_bag_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_bag_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_bag_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_bag_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_embedding_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_fractional_max_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gaussian_nll_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gaussian_nll_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gaussian_nll_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gelu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gelu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gelu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_gelu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_glu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_glu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_glu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_glu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_grid_sample_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_grid_sample_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_grid_sample_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_grid_sample_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_group_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_group_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_group_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_group_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardshrink_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardshrink_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardshrink_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardshrink_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardsigmoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardsigmoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardsigmoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardsigmoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardswish_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardswish_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardswish_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardswish_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hardtanh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hinge_embedding_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hinge_embedding_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_hinge_embedding_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_huber_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_huber_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_huber_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_huber_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_instance_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_instance_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_instance_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_instance_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_area_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_area_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_area_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_area_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bicubic_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_bilinear_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_linear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_linear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_linear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_linear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_nearest_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_trilinear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_trilinear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_interpolate_trilinear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_kl_div_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_kl_div_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_kl_div_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_kl_div_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_l1_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_layer_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_layer_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_layer_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_layer_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_leaky_relu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_leaky_relu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_leaky_relu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_leaky_relu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_linear_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_local_response_norm_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_logsigmoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_logsigmoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_logsigmoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_logsigmoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_margin_ranking_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool2d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_pool3d_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_grad_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_grad_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool1d_grad_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_grad_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_grad_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool2d_grad_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_grad_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_grad_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_max_unpool3d_grad_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mish_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mish_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mish_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mish_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mse_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mse_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mse_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_mse_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_head_attention_forward_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_head_attention_forward_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_head_attention_forward_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multi_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_nll_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_nll_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_nll_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_nll_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_normalize_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_one_hot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_circular_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_constant_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_reflect_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pad_replicate_negative_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pairwise_distance_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pdist_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pdist_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_shuffle_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_pixel_unshuffle_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_poisson_nll_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_prelu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_prelu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_prelu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_prelu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu6_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_relu_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rms_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rrelu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rrelu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_rrelu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_selu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_selu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_selu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_selu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_complex_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_complex_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_silu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_smooth_l1_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_smooth_l1_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_smooth_l1_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_soft_margin_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_soft_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_soft_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softmin_with_dtype_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softplus_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softplus_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softplus_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softplus_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softshrink_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softshrink_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softshrink_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softshrink_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_softsign_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_tanhshrink_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_threshold_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_unfold_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_bilinear_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nn_functional_upsample_nearest_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_nonzero_static_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_fro_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_inf_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_nuc_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_nuc_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_nuc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_norm_nuc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_in_place_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_number_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_number_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_number_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_normal_number_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ones_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ormqr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ormqr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ormqr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ormqr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_outer_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pca_lowrank_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pca_lowrank_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pca_lowrank_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pca_lowrank_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_permute_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pinverse_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pinverse_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pinverse_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pinverse_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polar_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polar_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_2_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_3_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_polygamma_polygamma_n_4_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_positive_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_pow_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_put_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_qr_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_qr_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_qr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_qr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_quantile_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_quantile_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rad2deg_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rand_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randint_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_randn_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_ravel_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_real_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reciprocal_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_remainder_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_renorm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_repeat_interleave_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_as_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_reshape_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize__cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resize_as__cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_conj_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_resolve_neg_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_roll_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rot90_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_0_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_0_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_3_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_3_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_3_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_neg_3_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_neg_3_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_round_decimals_neg_3_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsqrt_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_rsub_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scalar_tensor_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_add_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amax_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_amin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_mean_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_prod_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_scatter_reduce_sum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_searchsorted_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_select_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sgn_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_short_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sigmoid_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sign_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_bartlett_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_bartlett_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_blackman_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_blackman_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_cosine_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_cosine_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_exponential_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_exponential_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_gaussian_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_gaussian_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_general_cosine_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_general_cosine_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_general_hamming_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_general_hamming_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_hamming_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_hamming_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_hann_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_hann_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_kaiser_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_kaiser_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_nuttall_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signal_windows_nuttall_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_signbit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sin_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinc_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sinh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_slice_scatter_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_softmax_with_dtype_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sort_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_mm_reduce_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_mm_reduce_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_mm_reduce_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_mm_reduce_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_sampled_addmm_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_sampled_addmm_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_sampled_addmm_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sparse_sampled_addmm_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_airy_ai_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_j1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_bessel_y1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_t_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_u_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_v_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_chebyshev_polynomial_w_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_entr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_erfcx_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_h_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_hermite_polynomial_he_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i0e_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_i1e_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_laguerre_polynomial_l_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_legendre_polynomial_p_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_log_ndtr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_i1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_modified_bessel_k1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtr_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_ndtri_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_scaled_modified_bessel_k1_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_spherical_bessel_j0_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_xlog1py_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_special_zeta_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_list_args_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_split_with_sizes_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sqrt_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_square_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_squeeze_multiple_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_mean_unbiased_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_std_unbiased_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stft_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stft_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stft_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_stft_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sub_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_sum_to_size_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_lowrank_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_lowrank_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_lowrank_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_svd_lowrank_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_t_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_along_dim_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_take_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tan_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tanh_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensor_split_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tensordot_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tile_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_to_sparse_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_topk_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch__scaled_mm_cpu_float8_e4m3fn, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch__scaled_mm_cpu_float8_e5m2, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trace_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_transpose_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapezoid_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trapz_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triangular_solve_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triangular_solve_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triangular_solve_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triangular_solve_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_indices_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_tril_indices_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_indices_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_triu_indices_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_true_divide_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_trunc_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unbind_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unflatten_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unfold_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_uniform_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_consecutive_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_uint16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_uint32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_uint64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unique_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unravel_index_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_chunk_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsafe_split_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_unsqueeze_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_mean_unbiased_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_var_unbiased_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vdot_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_complex_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_complex_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_complex_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_real_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_as_real_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_copy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_view_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vsplit_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_vstack_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_where_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_xlogy_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zero__cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_bfloat16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_bool, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_complex128, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_complex32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_complex64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_float16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_float32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_float64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_int16, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_int32, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_int64, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_int8, test/test_utils.py::TestDeviceUtilsCPU::test_device_mode_ops_zeros_like_cpu_uint8, test/test_utils.py::TestDeviceUtilsCPU::test_get_default_device_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_get_default_device_more_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_nn_module_cpu, test/test_utils.py::TestDeviceUtilsCPU::test_set_default_device_cpu, test/test_utils.py::TestCppExtensionUtils::test_cc_compiler_is_ok, test/test_utils.py::TestCppExtensionUtils::test_cpp_compiler_is_ok, test/test_utils.py::TestTraceback::test_basic, test/test_utils.py::TestTraceback::test_captured_traceback, test/test_utils.py::TestTraceback::test_captured_traceback_format_all, test/test_utils.py::TestTraceback::test_captured_traceback_format_all_cached, test/test_utils.py::TestTraceback::test_format_traceback_short, test/test_utils.py::TestTryImport::test_import_existing, test/test_utils.py::TestTryImport::test_import_imported, test/test_utils.py::TestTryImport::test_import_missing, test/test_utils.py::TestDeprecate::test_deprecated 2025-09-07T07:11:55.4181721Z 2025-09-07T07:11:55.4181934Z Running test_tensorexpr 1/1 ... [2025-09-07 07:11:55.024058] 2025-09-07T07:11:55.4182362Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:11:55.4183927Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensorexpr.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:11:55.024658] 2025-09-07T07:12:28.8917199Z 2025-09-07T07:12:28.8918117Z test_tensorexpr 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensorexpr_1.1_6a49b93fdd060bc4_.log 2025-09-07T07:12:28.8936941Z Running 74 items in this shard: test/test_tensorexpr.py::TestTensorExprFuser::test_add_const_rhs, test/test_tensorexpr.py::TestTensorExprFuser::test_add_sub, test/test_tensorexpr.py::TestTensorExprFuser::test_alias_analysis_input_and_module, test/test_tensorexpr.py::TestTensorExprFuser::test_alias_analysis_inputs, test/test_tensorexpr.py::TestTensorExprFuser::test_alias_analysis_module, test/test_tensorexpr.py::TestTensorExprFuser::test_all_combos, test/test_tensorexpr.py::TestTensorExprFuser::test_alpha, test/test_tensorexpr.py::TestTensorExprFuser::test_binary_ops, test/test_tensorexpr.py::TestTensorExprFuser::test_bitwise_ops, test/test_tensorexpr.py::TestTensorExprFuser::test_broadcast, test/test_tensorexpr.py::TestTensorExprFuser::test_broadcast3, test/test_tensorexpr.py::TestTensorExprFuser::test_broadcast_2, test/test_tensorexpr.py::TestTensorExprFuser::test_broadcast_big2, test/test_tensorexpr.py::TestTensorExprFuser::test_cat, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_empty_tensors, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_negative_dim, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_only, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_promote_inputs, test/test_tensorexpr.py::TestTensorExprFuser::test_cat_with_constant_dim, test/test_tensorexpr.py::TestTensorExprFuser::test_char, test/test_tensorexpr.py::TestTensorExprFuser::test_chunk, test/test_tensorexpr.py::TestTensorExprFuser::test_clamp, test/test_tensorexpr.py::TestTensorExprFuser::test_constant, test/test_tensorexpr.py::TestTensorExprFuser::test_double, test/test_tensorexpr.py::TestTensorExprFuser::test_double_intrinsics, test/test_tensorexpr.py::TestTensorExprFuser::test_dynamic_shape, test/test_tensorexpr.py::TestTensorExprFuser::test_easy, test/test_tensorexpr.py::TestTensorExprFuser::test_eq, test/test_tensorexpr.py::TestTensorExprFuser::test_exp_pow, test/test_tensorexpr.py::TestTensorExprFuser::test_four_arg, test/test_tensorexpr.py::TestTensorExprFuser::test_ge, test/test_tensorexpr.py::TestTensorExprFuser::test_gt, test/test_tensorexpr.py::TestTensorExprFuser::test_guard_fails, test/test_tensorexpr.py::TestTensorExprFuser::test_half_bn_relu, test/test_tensorexpr.py::TestTensorExprFuser::test_half_gelu, test/test_tensorexpr.py::TestTensorExprFuser::test_int64_promotion, test/test_tensorexpr.py::TestTensorExprFuser::test_int_output, test/test_tensorexpr.py::TestTensorExprFuser::test_le, test/test_tensorexpr.py::TestTensorExprFuser::test_loop, test/test_tensorexpr.py::TestTensorExprFuser::test_lt, test/test_tensorexpr.py::TestTensorExprFuser::test_mask, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max_reduction, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max_reduction2, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max_reduction_dim1, test/test_tensorexpr.py::TestTensorExprFuser::test_min_max_reduction_dim1_2, test/test_tensorexpr.py::TestTensorExprFuser::test_multi_rand, test/test_tensorexpr.py::TestTensorExprFuser::test_multioutput, test/test_tensorexpr.py::TestTensorExprFuser::test_multiple_outputs, test/test_tensorexpr.py::TestTensorExprFuser::test_nans, test/test_tensorexpr.py::TestTensorExprFuser::test_ne, test/test_tensorexpr.py::TestTensorExprFuser::test_promotion, test/test_tensorexpr.py::TestTensorExprFuser::test_propagated_mem_layout, test/test_tensorexpr.py::TestTensorExprFuser::test_rand_like, test/test_tensorexpr.py::TestTensorExprFuser::test_rank_two, test/test_tensorexpr.py::TestTensorExprFuser::test_relu, test/test_tensorexpr.py::TestTensorExprFuser::test_remainder, test/test_tensorexpr.py::TestTensorExprFuser::test_reps, test/test_tensorexpr.py::TestTensorExprFuser::test_round_2, test/test_tensorexpr.py::TestTensorExprFuser::test_scalar, test/test_tensorexpr.py::TestTensorExprFuser::test_short, test/test_tensorexpr.py::TestTensorExprFuser::test_simple_add, test/test_tensorexpr.py::TestTensorExprFuser::test_sin_pow, test/test_tensorexpr.py::TestTensorExprFuser::test_slice, test/test_tensorexpr.py::TestTensorExprFuser::test_sliced_stride, test/test_tensorexpr.py::TestTensorExprFuser::test_softmax_cpu, test/test_tensorexpr.py::TestTensorExprFuser::test_softmax_cuda, test/test_tensorexpr.py::TestTensorExprFuser::test_strided_output_preserved, test/test_tensorexpr.py::TestTensorExprFuser::test_three_arg, test/test_tensorexpr.py::TestTensorExprFuser::test_three_arg2, test/test_tensorexpr.py::TestTensorExprFuser::test_transpose, test/test_tensorexpr.py::TestTensorExprFuser::test_unary_ops, test/test_tensorexpr.py::TestTensorExprFuser::test_unsqueeze, test/test_tensorexpr.py::TestTensorExprFuser::test_where 2025-09-07T07:12:28.8955199Z 2025-09-07T07:12:28.8955446Z Running inductor/test_max_autotune 1/1 ... [2025-09-07 07:12:28.887986] 2025-09-07T07:12:28.8955874Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:12:28.8956898Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_max_autotune.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:12:28.887986] 2025-09-07T07:12:38.5087245Z 2025-09-07T07:12:38.5088200Z inductor/test_max_autotune 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_max_autotune_1.1_5739d7778e309d36_.log 2025-09-07T07:12:38.5088916Z 2025-09-07T07:12:38.5094695Z Running test_multiprocessing 1/2 ... [2025-09-07 07:12:38.508922] 2025-09-07T07:12:38.5095378Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:12:38.5103076Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_multiprocessing.py', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:12:38.510094] 2025-09-07T07:15:08.9883235Z 2025-09-07T07:15:08.9884139Z test_multiprocessing 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_multiprocessing_1.2_779fa64f6d222cf6_.log 2025-09-07T07:15:08.9891796Z Running 23 items in this shard: test/test_multiprocessing.py::TestMultiprocessing::test_cuda_bad_call, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_memory_allocation, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_parameter_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_small_tensors, test/test_multiprocessing.py::TestMultiprocessing::test_empty_shared, test/test_multiprocessing.py::TestMultiprocessing::test_empty_tensor_sharing_cuda, test/test_multiprocessing.py::TestMultiprocessing::test_empty_tensor_sharing_meta, test/test_multiprocessing.py::TestMultiprocessing::test_event_handle_exporter, test/test_multiprocessing.py::TestMultiprocessing::test_event_handle_importer, test/test_multiprocessing.py::TestMultiprocessing::test_event_multiprocess, test/test_multiprocessing.py::TestMultiprocessing::test_fd_pool, test/test_multiprocessing.py::TestMultiprocessing::test_fd_preserve_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_fs, test/test_multiprocessing.py::TestMultiprocessing::test_inherit_tensor, test/test_multiprocessing.py::TestMultiprocessing::test_integer_parameter_serialization_cuda, test/test_multiprocessing.py::TestMultiprocessing::test_is_shared, test/test_multiprocessing.py::TestMultiprocessing::test_is_shared_cuda, test/test_multiprocessing.py::TestMultiprocessing::test_leaf_variable_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_meta_simple, test/test_multiprocessing.py::TestMultiprocessing::test_parameter_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_rebuild_cuda_tensor, test/test_multiprocessing.py::TestMultiprocessing::test_set_thread_name, test/test_multiprocessing.py::TestMultiprocessing::test_variable_sharing 2025-09-07T07:15:08.9899132Z 2025-09-07T07:15:08.9899370Z Running test_multiprocessing 2/2 ... [2025-09-07 07:15:08.988920] 2025-09-07T07:15:08.9899781Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:15:08.9900789Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_multiprocessing.py', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:15:08.988970] 2025-09-07T07:24:43.9328532Z 2025-09-07T07:24:43.9329756Z test_multiprocessing 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_multiprocessing_2.2_6deac8c8bc537687_.log 2025-09-07T07:24:43.9337017Z Running 19 items in this shard: test/test_multiprocessing.py::TestMultiprocessing::test_autograd_errors, test/test_multiprocessing.py::TestMultiprocessing::test_autograd_fine_with_spawn, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_ipc_deadlock, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_send_many, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_simple, test/test_multiprocessing.py::TestMultiprocessing::test_cuda_variable_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_empty_tensor_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_event, test/test_multiprocessing.py::TestMultiprocessing::test_event_handle_multi_gpu, test/test_multiprocessing.py::TestMultiprocessing::test_fd_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_fs_is_shared, test/test_multiprocessing.py::TestMultiprocessing::test_fs_pool, test/test_multiprocessing.py::TestMultiprocessing::test_fs_preserve_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_fs_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_integer_parameter_serialization_cpu, test/test_multiprocessing.py::TestMultiprocessing::test_mixed_types_cuda_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_non_leaf_variable_sharing, test/test_multiprocessing.py::TestMultiprocessing::test_tensor_sharing_meta, test/test_multiprocessing.py::TestMultiprocessing::test_wrong_cuda_fork 2025-09-07T07:24:43.9343711Z 2025-09-07T07:24:43.9343891Z Running test_dispatch 1/1 ... [2025-09-07 07:24:43.933480] 2025-09-07T07:24:43.9344342Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:24:43.9345416Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dispatch.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:24:43.934134] 2025-09-07T07:24:43.9346695Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T07:24:43.9347332Z Uploading artifacts took 0.00 seconds 2025-09-07T07:25:44.2355010Z 2025-09-07T07:25:44.2355826Z test_dispatch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_dispatch_1.1_370b557e8f07f2cb_.log 2025-09-07T07:25:44.2364992Z Running 32 items in this shard: test/test_dispatch.py::TestDispatch::test_all_invariants, test/test_dispatch.py::TestDispatch::test_computed_table, test/test_dispatch.py::TestDispatch::test_computed_table_with_ambiguous_autogradother, test/test_dispatch.py::TestDispatch::test_computed_table_with_autograd, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_autograd_defaultbackend, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_autograd_math, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_autograd_math_defaultbackend, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_defaultbackend, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_math, test/test_dispatch.py::TestDispatch::test_computed_table_with_cpu_math_autogradcpu_fallthrough, test/test_dispatch.py::TestDispatch::test_computed_table_with_math, test/test_dispatch.py::TestDispatch::test_def, test/test_dispatch.py::TestDispatch::test_def_impl_schema_mismatch, test/test_dispatch.py::TestDispatch::test_def_only, test/test_dispatch.py::TestDispatch::test_def_with_explicit_alias, test/test_dispatch.py::TestDispatch::test_def_with_inference, test/test_dispatch.py::TestDispatch::test_dispatch_print_registrations_for_dispatch_key_invalid, test/test_dispatch.py::TestDispatch::test_find_dangling_impls, test/test_dispatch.py::TestDispatch::test_find_dangling_impls_ext, test/test_dispatch.py::TestDispatch::test_impl_only, test/test_dispatch.py::TestDispatch::test_multiple_def_alias_defaulting, test/test_dispatch.py::TestDispatch::test_multiple_def_alias_mismatch, test/test_dispatch.py::TestDispatch::test_multiple_def_error, test/test_dispatch.py::TestDispatch::test_multiple_fallback, test/test_dispatch.py::TestDispatch::test_overwrite_math, test/test_dispatch.py::TestPythonDispatcher::test_autogradother, test/test_dispatch.py::TestPythonDispatcher::test_basic, test/test_dispatch.py::TestPythonDispatcher::test_defaultbackend_autogradcpu, test/test_dispatch.py::TestPythonDispatcher::test_defaultbackend_math, test/test_dispatch.py::TestPythonDispatcher::test_duplicate_registrations, test/test_dispatch.py::TestPythonDispatcher::test_math_autogradcpu, test/test_dispatch.py::TestPythonDispatcher::test_quantized_structured_not_implemented 2025-09-07T07:25:44.2373620Z 2025-09-07T07:25:44.2373830Z Running test_namedtuple_return_api 1/1 ... [2025-09-07 07:25:44.233025] 2025-09-07T07:25:44.2374278Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:25:44.2375296Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_namedtuple_return_api.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:25:44.233025] 2025-09-07T07:25:50.2573419Z 2025-09-07T07:25:50.2574365Z test_namedtuple_return_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_namedtuple_return_api_1.1_abbfa83f5f1f7c15_.log 2025-09-07T07:25:50.2576022Z Running 3 items in this shard: test/test_namedtuple_return_api.py::TestNamedTupleAPI::test_import_return_types, test/test_namedtuple_return_api.py::TestNamedTupleAPI::test_namedtuple_return, test/test_namedtuple_return_api.py::TestNamedTupleAPI::test_native_functions_yaml 2025-09-07T07:25:50.2577130Z 2025-09-07T07:25:50.2579376Z Running test_cpp_extensions_mtia_backend 1/1 ... [2025-09-07 07:25:50.252572] 2025-09-07T07:25:50.2579850Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:25:50.2585545Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_mtia_backend.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:25:50.252572] 2025-09-07T07:25:53.8229253Z 2025-09-07T07:25:53.8230212Z test_cpp_extensions_mtia_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_mtia_backend_1.1_97a4c56233648005_.log 2025-09-07T07:25:53.8232999Z Running 5 items in this shard: test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_device_context, test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_get_device_module, test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_stream_basic, test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_stream_context, test/test_cpp_extensions_mtia_backend.py::TestCppExtensionMTIABackend::test_stream_context_different_device 2025-09-07T07:25:53.8235058Z 2025-09-07T07:25:53.8235347Z Running test_jit_disabled 1/1 ... [2025-09-07 07:25:53.820667] 2025-09-07T07:25:53.8235755Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:25:53.8241567Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jit_disabled.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:25:53.820667] 2025-09-07T07:25:57.9501062Z 2025-09-07T07:25:57.9502089Z test_jit_disabled 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jit_disabled_1.1_f292c7ed54a30351_.log 2025-09-07T07:25:57.9503574Z Running 3 items in this shard: test/test_jit_disabled.py::TestJitDisabled::test_attribute, test/test_jit_disabled.py::TestJitDisabled::test_recursive_script, test/test_jit_disabled.py::TestJitDisabled::test_script_module_construction 2025-09-07T07:25:57.9504514Z 2025-09-07T07:25:57.9506863Z Running test_fake_tensor 1/1 ... [2025-09-07 07:25:57.948019] 2025-09-07T07:25:57.9507263Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:25:57.9513467Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fake_tensor.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:25:57.948019] 2025-09-07T07:26:14.4720138Z 2025-09-07T07:26:14.4721282Z test_fake_tensor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fake_tensor_1.1_38722cfc1617f1f6_.log 2025-09-07T07:26:14.4830713Z Running 290 items in this shard: test/test_fake_tensor.py::FakeTensorTest::test__adaptive_avg_pool2d_backward, test/test_fake_tensor.py::FakeTensorTest::test_alias_call, test/test_fake_tensor.py::FakeTensorTest::test_allow_meta, test/test_fake_tensor.py::FakeTensorTest::test_aten_copy_multi_device, test/test_fake_tensor.py::FakeTensorTest::test_aten_index_multi_device, test/test_fake_tensor.py::FakeTensorTest::test_aten_slice_scatter_multi_device, test/test_fake_tensor.py::FakeTensorTest::test_basic, test/test_fake_tensor.py::FakeTensorTest::test_batch_tensor, test/test_fake_tensor.py::FakeTensorTest::test_binary_op_type_promotion, test/test_fake_tensor.py::FakeTensorTest::test_constructor, test/test_fake_tensor.py::FakeTensorTest::test_convert_fake_to_real, test/test_fake_tensor.py::FakeTensorTest::test_cpu_fallback, test/test_fake_tensor.py::FakeTensorTest::test_cuda_initialized, test/test_fake_tensor.py::FakeTensorTest::test_cuda_lstm, test/test_fake_tensor.py::FakeTensorTest::test_cudnn_rnn_with_fallback, test/test_fake_tensor.py::FakeTensorTest::test_cudnn_rnn_without_fallback, test/test_fake_tensor.py::FakeTensorTest::test_custom_op_fallback, test/test_fake_tensor.py::FakeTensorTest::test_data_dependent_operator, test/test_fake_tensor.py::FakeTensorTest::test_deepcopy, test/test_fake_tensor.py::FakeTensorTest::test_device_inplace_copy, test/test_fake_tensor.py::FakeTensorTest::test_embedding_bag_meta, test/test_fake_tensor.py::FakeTensorTest::test_export_numpy, test/test_fake_tensor.py::FakeTensorTest::test_fake_device, test/test_fake_tensor.py::FakeTensorTest::test_fake_dispatch_keys, test/test_fake_tensor.py::FakeTensorTest::test_fake_grad_copy, test/test_fake_tensor.py::FakeTensorTest::test_fake_mode_error, test/test_fake_tensor.py::FakeTensorTest::test_fast_div, test/test_fake_tensor.py::FakeTensorTest::test_from_numpy, test/test_fake_tensor.py::FakeTensorTest::test_fsdp_flat_param, test/test_fake_tensor.py::FakeTensorTest::test_full, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_complex128, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_complex64, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float32, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float64, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float8_e4m3fn, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float8_e4m3fnuz, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float8_e5m2, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_float8_e5m2fnuz, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_int16, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_int32, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_int64, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_int8, test/test_fake_tensor.py::FakeTensorTest::test_index_cuda_with_cpu_uint8, test/test_fake_tensor.py::FakeTensorTest::test_index_put_error, test/test_fake_tensor.py::FakeTensorTest::test_jagged_fake_to_fake_preserved, test/test_fake_tensor.py::FakeTensorTest::test_like_constructor, test/test_fake_tensor.py::FakeTensorTest::test_mixed_real_and_fake_inputs, test/test_fake_tensor.py::FakeTensorTest::test_mode, test/test_fake_tensor.py::FakeTensorTest::test_nan_to_num, test/test_fake_tensor.py::FakeTensorTest::test_nanmean_out, test/test_fake_tensor.py::FakeTensorTest::test_new, test/test_fake_tensor.py::FakeTensorTest::test_no_tag_func, test/test_fake_tensor.py::FakeTensorTest::test_non_kwarg_device, test/test_fake_tensor.py::FakeTensorTest::test_non_overlapping_stride_zero, test/test_fake_tensor.py::FakeTensorTest::test_non_parameter_grad, test/test_fake_tensor.py::FakeTensorTest::test_normalize_device, test/test_fake_tensor.py::FakeTensorTest::test_op_with_zero_dim_bypassed, test/test_fake_tensor.py::FakeTensorTest::test_out_multi_device, test/test_fake_tensor.py::FakeTensorTest::test_parameter_instantiation, test/test_fake_tensor.py::FakeTensorTest::test_parameter_view, test/test_fake_tensor.py::FakeTensorTest::test_print_in_fake_mode, test/test_fake_tensor.py::FakeTensorTest::test_randperm, test/test_fake_tensor.py::FakeTensorTest::test_recursive_invocation, test/test_fake_tensor.py::FakeTensorTest::test_repr, test/test_fake_tensor.py::FakeTensorTest::test_same_shape_env_preserved, test/test_fake_tensor.py::FakeTensorTest::test_scalar_inputs, test/test_fake_tensor.py::FakeTensorTest::test_scan_reverse_False, test/test_fake_tensor.py::FakeTensorTest::test_scan_reverse_True, test/test_fake_tensor.py::FakeTensorTest::test_setitem, test/test_fake_tensor.py::FakeTensorTest::test_shape_take_not_device, test/test_fake_tensor.py::FakeTensorTest::test_split_return_self, test/test_fake_tensor.py::FakeTensorTest::test_throw, test/test_fake_tensor.py::FakeTensorTest::test_tolist, test/test_fake_tensor.py::FakeTensorTest::test_type_as, test/test_fake_tensor.py::FakeTensorTest::test_unbind_copy_out, test/test_fake_tensor.py::FakeTensorTest::test_unsqueeze_copy, test/test_fake_tensor.py::FakeTensorTest::test_upsample_bilinear_small_channels, test/test_fake_tensor.py::FakeTensorTest::test_zero_dim, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test__adaptive_avg_pool2d_backward_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_alias_call_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_allow_meta_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_aten_copy_multi_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_aten_index_multi_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_aten_slice_scatter_multi_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_basic_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_batch_tensor_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_binary_op_type_promotion_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_constructor_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_convert_fake_to_real_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cpu_fallback_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cuda_initialized_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cuda_lstm_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cudnn_rnn_with_fallback_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_cudnn_rnn_without_fallback_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_custom_op_fallback_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_data_dependent_operator_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_deepcopy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_device_inplace_copy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_embedding_bag_meta_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_export_numpy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fake_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fake_dispatch_keys_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fake_grad_copy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fake_mode_error_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fast_div_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_from_numpy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_fsdp_flat_param_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_full_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_complex128_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_complex64_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float32_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float64_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float8_e4m3fn_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float8_e4m3fnuz_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float8_e5m2_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_float8_e5m2fnuz_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_int16_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_int32_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_int64_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_int8_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_cuda_with_cpu_uint8_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_index_put_error_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_jagged_fake_to_fake_preserved_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_like_constructor_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_mixed_real_and_fake_inputs_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_mode_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_nan_to_num_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_nanmean_out_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_new_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_no_tag_func_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_non_kwarg_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_non_overlapping_stride_zero_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_non_parameter_grad_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_normalize_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_op_with_zero_dim_bypassed_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_out_multi_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_parameter_instantiation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_parameter_view_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_print_in_fake_mode_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_randperm_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_recursive_invocation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_repr_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_same_shape_env_preserved_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_scalar_inputs_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_scan_reverse_False_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_scan_reverse_True_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_setitem_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_shape_take_not_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_split_return_self_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_throw_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_tolist_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_type_as_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_unbind_copy_out_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_unsqueeze_copy_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_upsample_bilinear_small_channels_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorTest::test_zero_dim_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorConstHandling::test_aliased_const_write, test/test_fake_tensor.py::FakeTensorConstHandling::test_constant_invalidation, test/test_fake_tensor.py::FakeTensorConstHandling::test_constant_propagate_through_functions, test/test_fake_tensor.py::FakeTensorConstHandling::test_fake_tensor_batch_norm_cpu, test/test_fake_tensor.py::FakeTensorConstHandling::test_fake_tensor_in_intlist_repro, test/test_fake_tensor.py::FakeTensorConstHandling::test_inplace_add, test/test_fake_tensor.py::FakeTensorConstHandling::test_inplace_view_invalidation, test/test_fake_tensor.py::FakeTensorConstHandling::test_shared_storage_invalidation, test/test_fake_tensor.py::FakeTensorConstHandling::test_shared_storages, test/test_fake_tensor.py::FakeTensorConstHandling::test_simple, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_aliased_const_write_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_constant_invalidation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_constant_propagate_through_functions_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_fake_tensor_batch_norm_cpu_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_fake_tensor_in_intlist_repro_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_inplace_add_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_inplace_view_invalidation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_shared_storage_invalidation_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_shared_storages_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConstHandling::test_simple_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyCatCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyCubeCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyMulCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyMulScalarCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyNMSCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyNonzeroCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpySortCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpySplitCopyCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyTakeCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorOpInfoTestCPU::test_fake_NumpyViewCopyCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyCatCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyCubeCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyMulCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyMulScalarCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyNMSCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyNonzeroCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpySortCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpySplitCopyCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyTakeCustomOp_cpu_float32, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOpInfoTestCPU::test_fake_propagate_real_tensors_NumpyViewCopyCustomOp_cpu_float32, test/test_fake_tensor.py::FakeTensorConverterTest::test_dead_key, test/test_fake_tensor.py::FakeTensorConverterTest::test_dead_weak_ref, test/test_fake_tensor.py::FakeTensorConverterTest::test_memoized_conversion_from_meta, test/test_fake_tensor.py::FakeTensorConverterTest::test_memoized_conversion_to_meta, test/test_fake_tensor.py::FakeTensorConverterTest::test_multiple_modes, test/test_fake_tensor.py::FakeTensorConverterTest::test_no_active_mode, test/test_fake_tensor.py::FakeTensorConverterTest::test_no_ref_cycle, test/test_fake_tensor.py::FakeTensorConverterTest::test_separate_mode_error, test/test_fake_tensor.py::FakeTensorConverterTest::test_separate_tensor_storages_non_view, test/test_fake_tensor.py::FakeTensorConverterTest::test_separate_tensor_storages_view, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_dead_key_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_dead_weak_ref_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_memoized_conversion_from_meta_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_memoized_conversion_to_meta_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_multiple_modes_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_no_active_mode_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_no_ref_cycle_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_separate_mode_error_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_separate_tensor_storages_non_view_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorConverterTest::test_separate_tensor_storages_view_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_conv_c1_backward, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_cross_entropy_loss, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_embedding_bag_private, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_fake_gpu_no_init, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_flash_attention, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_like_ops, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_module_to, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_no_dispatch_with_like_function, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_non_kwarg_only_device, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_sparse_new, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_str_storage, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_tensor_constructors_all_have_kwarg_device, test/test_fake_tensor.py::FakeTensorOperatorInvariants::test_tensor_new, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_conv_c1_backward_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_cross_entropy_loss_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_embedding_bag_private_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_fake_gpu_no_init_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_flash_attention_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_like_ops_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_module_to_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_no_dispatch_with_like_function_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_non_kwarg_only_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_sparse_new_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_str_storage_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_tensor_constructors_all_have_kwarg_device_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorOperatorInvariants::test_tensor_new_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorPropTest::test_fake_tensor_prop_on_nn_module, test/test_fake_tensor.py::FakeTensorPropTest::test_fake_tensor_prop_on_nn_module_with_optional_args, test/test_fake_tensor.py::FakeTensorPropTest::test_nan_to_num, test/test_fake_tensor.py::FakeTensorPropTest::test_nonzero_stride, test/test_fake_tensor.py::FakeTensorPropTest::test_torch_load_with_fake_mode, test/test_fake_tensor.py::FakeTensorPropTest::test_unbacked_shape_realloc, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_fake_tensor_prop_on_nn_module_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_fake_tensor_prop_on_nn_module_with_optional_args_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_nan_to_num_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_nonzero_stride_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_torch_load_with_fake_mode_propagate_real_tensors, test/test_fake_tensor.py::PropagateRealTensorsFakeTensorPropTest::test_unbacked_shape_realloc_propagate_real_tensors, test/test_fake_tensor.py::FakeTensorSerialization::test_serialization, test/test_fake_tensor.py::FakeTensorSerialization::test_serialization_with_tracing, test/test_fake_tensor.py::FakeTensorDispatchCache::test__upsample_bilinear2d_aa_backward_dynamic_shapes, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_aten_index, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_bypass, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_default_device, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_default_dtype, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_dispatch_key_set, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_hit, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_inplace_op, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_constants, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_device, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_dtype, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_is_conj, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_is_inference, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_is_neg, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_memory_format, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_requires_grad, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_shape, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_storage_offset, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_key_stride, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_tuple_outputs, test/test_fake_tensor.py::FakeTensorDispatchCache::test_cache_view_op, test/test_fake_tensor.py::FakeTensorDispatchCache::test_fft_hfft2_issue145522, test/test_fake_tensor.py::FakeTensorDispatchCache::test_from_buffer, test/test_fake_tensor.py::FakeTensorDispatchCache::test_inference_mode, test/test_fake_tensor.py::FakeTensorDispatchCache::test_invoke_subgraph, test/test_fake_tensor.py::FakeTensorDispatchCache::test_invoke_subgraph_cacheable_inplace, test/test_fake_tensor.py::FakeTensorDispatchCache::test_meta_tensor_to_fake_cpu, test/test_fake_tensor.py::FakeTensorDispatchCache::test_shape_env_settings, test/test_fake_tensor.py::FakeTensorDispatchCache::test_unbacked_output, test/test_fake_tensor.py::FakeTensorDispatchCache::test_wrapper_tensor_subclass_different_device, test/test_fake_tensor.py::FakeTensorPreferDeviceType::test_fake_tensor_prefer_device_type, test/test_fake_tensor.py::FakeTensorPreferDeviceType::test_fake_tensor_prefer_device_type_cpu_only 2025-09-07T07:26:14.4941498Z 2025-09-07T07:26:14.4941736Z Running test_cuda_trace 1/1 ... [2025-09-07 07:26:14.473015] 2025-09-07T07:26:14.4942127Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:26:14.4943162Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_trace.py', '--shard-id=1', '--num-shards=1', '-v', '--subprocess', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:26:14.473586] 2025-09-07T07:26:17.9795450Z 2025-09-07T07:26:17.9796274Z test_cuda_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_trace_1.1_137a17c07dacde90_.log 2025-09-07T07:26:17.9796999Z Running 0 items in this shard: 2025-09-07T07:26:17.9797186Z 2025-09-07T07:26:17.9801778Z Running test_cpp_extensions_stream_and_event 1/1 ... [2025-09-07 07:26:17.970371] 2025-09-07T07:26:17.9802271Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:26:17.9807724Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_stream_and_event.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:26:17.970371] 2025-09-07T07:26:21.5112421Z 2025-09-07T07:26:21.5113792Z test_cpp_extensions_stream_and_event 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_stream_and_event_1.1_be45a660630d0ed2_.log 2025-09-07T07:26:21.5115030Z Running 1 items in this shard: test/test_cpp_extensions_stream_and_event.py::TestCppExtensionStreamAndEvent::test_stream_event 2025-09-07T07:26:21.5115561Z 2025-09-07T07:26:21.5118301Z Running test_python_dispatch 1/1 ... [2025-09-07 07:26:21.509792] 2025-09-07T07:26:21.5118705Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:26:21.5124666Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_python_dispatch.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:26:21.509792] 2025-09-07T07:26:33.4322956Z 2025-09-07T07:26:33.4324090Z test_python_dispatch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_python_dispatch_1.1_80767d2ec9dac184_.log 2025-09-07T07:26:33.4364922Z Running 119 items in this shard: test/test_python_dispatch.py::TestDispatcherPythonBindings::test_call_boxed, test/test_python_dispatch.py::TestPythonRegistration::test_alias_analysis, test/test_python_dispatch.py::TestPythonRegistration::test_create_new_library, test/test_python_dispatch.py::TestPythonRegistration::test_create_new_library_fragment_no_existing, test/test_python_dispatch.py::TestPythonRegistration::test_create_new_library_fragment_with_existing, test/test_python_dispatch.py::TestPythonRegistration::test_dispatcher_error_filenames, test/test_python_dispatch.py::TestPythonRegistration::test_dispatchkeyset_eq, test/test_python_dispatch.py::TestPythonRegistration::test_dispatchkeyset_pickle, test/test_python_dispatch.py::TestPythonRegistration::test_error_for_unsupported_ns_or_kind, test/test_python_dispatch.py::TestPythonRegistration::test_error_if_fn_not_callable, test/test_python_dispatch.py::TestPythonRegistration::test_extend_library_with_dispatch_key_arg, test/test_python_dispatch.py::TestPythonRegistration::test_fallback, test/test_python_dispatch.py::TestPythonRegistration::test_fallback_fallthrough, test/test_python_dispatch.py::TestPythonRegistration::test_fallback_keyset, test/test_python_dispatch.py::TestPythonRegistration::test_fallthrough_for_dense_key_with_meta_in_tls, test/test_python_dispatch.py::TestPythonRegistration::test_finalizer, test/test_python_dispatch.py::TestPythonRegistration::test_override_aten_ops_with_multiple_libraries, test/test_python_dispatch.py::TestPythonRegistration::test_override_cpu_sum, test/test_python_dispatch.py::TestPythonRegistration::test_override_cuda_with_jiterator, test/test_python_dispatch.py::TestPythonRegistration::test_register_fallthrough, test/test_python_dispatch.py::TestPythonRegistration::test_returning_symint, test/test_python_dispatch.py::TestPythonDispatch::test_all_same_mode, test/test_python_dispatch.py::TestPythonDispatch::test_autograd_in_attr, test/test_python_dispatch.py::TestPythonDispatch::test_basic, test/test_python_dispatch.py::TestPythonDispatch::test_capture_logs_with_torch_dispatch_mode, test/test_python_dispatch.py::TestPythonDispatch::test_construct_int_tensor, test/test_python_dispatch.py::TestPythonDispatch::test_custom_autograd, test/test_python_dispatch.py::TestPythonDispatch::test_custom_dispatch_mode_not_supports_higher_order_operators, test/test_python_dispatch.py::TestPythonDispatch::test_custom_dispatch_mode_supports_higher_order_operators, test/test_python_dispatch.py::TestPythonDispatch::test_custom_size_policy_dynamic_shapes, test/test_python_dispatch.py::TestPythonDispatch::test_data_ptr_respects_numel_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_deepcopy_non_wrapper_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_deepcopy_wrapper_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_deepcopy_wrapper_subclass_with_clone_returning_different_type, test/test_python_dispatch.py::TestPythonDispatch::test_detach_appears_twice_when_called_once, test/test_python_dispatch.py::TestPythonDispatch::test_device_slowpath, test/test_python_dispatch.py::TestPythonDispatch::test_dim_slowpath, test/test_python_dispatch.py::TestPythonDispatch::test_dispatch_super_call, test/test_python_dispatch.py::TestPythonDispatch::test_dispatch_super_call_list_arg, test/test_python_dispatch.py::TestPythonDispatch::test_dispatch_super_dont_autograd, test/test_python_dispatch.py::TestPythonDispatch::test_dispatch_uint64, test/test_python_dispatch.py::TestPythonDispatch::test_error_using_class_method_on_mode, test/test_python_dispatch.py::TestPythonDispatch::test_exception_handling, test/test_python_dispatch.py::TestPythonDispatch::test_fancy_strides, test/test_python_dispatch.py::TestPythonDispatch::test_format, test/test_python_dispatch.py::TestPythonDispatch::test_get_cur_mode, test/test_python_dispatch.py::TestPythonDispatch::test_get_mode_stack, test/test_python_dispatch.py::TestPythonDispatch::test_index_put_where_only_index_is_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_invalid_ret, test/test_python_dispatch.py::TestPythonDispatch::test_is_contiguous_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_kwarg_only, test/test_python_dispatch.py::TestPythonDispatch::test_kwarg_only_and_positional_default, test/test_python_dispatch.py::TestPythonDispatch::test_layout_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_like, test/test_python_dispatch.py::TestPythonDispatch::test_list_ret, test/test_python_dispatch.py::TestPythonDispatch::test_make_fx_with_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_make_subclass_with_modes, test/test_python_dispatch.py::TestPythonDispatch::test_make_wrapper_subclass_noalloc, test/test_python_dispatch.py::TestPythonDispatch::test_make_wrapper_subclass_propagates_metadata, test/test_python_dispatch.py::TestPythonDispatch::test_maybe_tuple_bug, test/test_python_dispatch.py::TestPythonDispatch::test_mode_detection, test/test_python_dispatch.py::TestPythonDispatch::test_mode_with_make_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_multiple_ops_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_nested_push_logging_tensor_mode, test/test_python_dispatch.py::TestPythonDispatch::test_nesting_same_mode, test/test_python_dispatch.py::TestPythonDispatch::test_new_ones, test/test_python_dispatch.py::TestPythonDispatch::test_none_wrapping, test/test_python_dispatch.py::TestPythonDispatch::test_notimplemented_mode, test/test_python_dispatch.py::TestPythonDispatch::test_optional_tensor_list, test/test_python_dispatch.py::TestPythonDispatch::test_out, test/test_python_dispatch.py::TestPythonDispatch::test_produce_real_type, test/test_python_dispatch.py::TestPythonDispatch::test_record_stream, test/test_python_dispatch.py::TestPythonDispatch::test_return_and_correct_aliasing_gives_correct_stride, test/test_python_dispatch.py::TestPythonDispatch::test_return_stream, test/test_python_dispatch.py::TestPythonDispatch::test_set_data, test/test_python_dispatch.py::TestPythonDispatch::test_shallow_copy_and_detach, test/test_python_dispatch.py::TestPythonDispatch::test_sizes_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_standard_is_not_subclass, test/test_python_dispatch.py::TestPythonDispatch::test_storage, test/test_python_dispatch.py::TestPythonDispatch::test_storage_can_be_converted_to_python_object, test/test_python_dispatch.py::TestPythonDispatch::test_strides_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_subclass_creation, test/test_python_dispatch.py::TestPythonDispatch::test_subclass_priority, test/test_python_dispatch.py::TestPythonDispatch::test_sym_sizes_strides_slow_path, test/test_python_dispatch.py::TestPythonDispatch::test_tolist_numpy_with_torch_dispatch_mode, test/test_python_dispatch.py::TestPythonDispatch::test_torch_dispatch_mode_basic, test/test_python_dispatch.py::TestPythonDispatch::test_torch_dispatch_mode_respects_no_dispatch, test/test_python_dispatch.py::TestPythonDispatch::test_torch_dispatch_mode_subclass_priority, test/test_python_dispatch.py::TestPythonDispatch::test_torch_dispatch_mode_unrelated_tensors, test/test_python_dispatch.py::TestPythonDispatch::test_version, test/test_python_dispatch.py::TestPythonDispatch::test_view_returns_alias_under_torch_dispatch, test/test_python_dispatch.py::TestPythonDispatch::test_with_mode_created_separately, test/test_python_dispatch.py::TestPythonDispatch::test_with_nested_modes, test/test_python_dispatch.py::TestPythonDispatch::test_wrapper_subclass_extra_dispatch_keys, test/test_python_dispatch.py::TestPythonDispatch::test_wrapper_subclass_multiprocessing_preserves_dtype, test/test_python_dispatch.py::TestPythonDispatch::test_wrapper_subclass_reentrant_dispatch_with_mode, test/test_python_dispatch.py::TestPythonDispatch::test_wrapper_subclass_serializes, test/test_python_dispatch.py::TestPythonDispatcher::test_basic, test/test_python_dispatch.py::TestPythonDispatcher::test_lstsq, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_cat_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_conv2d_cpu, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyCatCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyCubeCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyMulCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyMulScalarCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyNMSCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyNonzeroCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpySortCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpySplitCopyCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyTakeCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_custom_NumpyViewCopyCustomOp_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_fft_fft2_cpu, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_mul_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_native_batch_norm_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_out_op_cpu, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_split_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_split_list_args_cpu_float32, test/test_python_dispatch.py::TestWrapperSubclassAliasingCPU::test_wrapper_subclass_aliasing_view_cpu_float32 2025-09-07T07:26:33.4405322Z 2025-09-07T07:26:33.4405528Z Running test_tensor_creation_ops 1/1 ... [2025-09-07 07:26:33.418816] 2025-09-07T07:26:33.4405949Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:26:33.4406970Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensor_creation_ops.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:26:33.418816] 2025-09-07T07:27:09.3574149Z 2025-09-07T07:27:09.3575297Z test_tensor_creation_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensor_creation_ops_1.1_3af2cf0c6c62d8d0_.log 2025-09-07T07:27:09.3832209Z Running 646 items in this shard: test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_device_vs_cpu_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_device_vs_cpu_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_device_vs_cpu_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_device_vs_cpu_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_inference_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_lowp_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_arange_lowp_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_as_strided_neg_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_as_tensor_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_block_diag_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_block_diag_scipy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cartesian_prod_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat2_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat2_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat2_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_all_dtypes_and_devices_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_big_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_empty_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_empty_legacy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_in_channels_last_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_mem_overlap_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_misaligned_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_multi_batch_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_channels_last_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_uint16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_uint32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_uint64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_fast_path_dim0_dim1_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_out_memory_format_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_preserve_channels_last_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_size1_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_stack_cross_devices_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_cat_trailing_dim_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_combinations_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_complex_type_conversions_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_concat_empty_list_error_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_constructor_device_legacy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_constructor_dtypes_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_ctor_with_numpy_array_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_device_rounding_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_device_rounding_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_diag_embed_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_diagflat_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dsplit_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dsplit_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dsplit_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_dstack_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_empty_full_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_empty_overflow_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_empty_strided_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_empty_tensor_props_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_eye_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_fill_all_dtypes_and_devices_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_finite_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_float_to_int_conversion_nonfinite_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_from_file_shared_False_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_from_file_shared_True_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_full_inference_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_full_inference_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_full_inference_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_full_out_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hsplit_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hsplit_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hsplit_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_hstack_column_stack_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_kaiser_window_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_large_linspace_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_large_linspace_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_like_fn_stride_proparation_vs_tensoriterator_unary_op_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linlogspace_mem_overlap_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_deduction_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_device_vs_cpu_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_special_steps_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_complex_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_linspace_vs_numpy_integral_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_base2_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_base2_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_deduction_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_device_vs_cpu_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_device_vs_cpu_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_special_steps_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_special_steps_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_vs_numpy_complex_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_vs_numpy_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_logspace_vs_numpy_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_default_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_empty_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_ij_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_ij_indexing_is_default_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_inconsistent_device_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_inconsistent_dtype_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_non_1d_tensor_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_unsupported_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_vs_numpy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_warns_if_no_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_meshgrid_xy_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_new_empty_strided_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_new_methods_requires_grad_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_new_tensor_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_new_tensor_device_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_offset_scalar_cast_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_ones_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_bool_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_default_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_bool_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_uint16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_uint32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_from_to_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_uint16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_uint32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_full_range_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_uint16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_uint32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_random_to_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_factories_64bit_indexing_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_range_warning_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_bfloat16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_refs_tensor_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_repeat_interleave_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_roll_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_bartlett_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_bartlett_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_bartlett_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_blackman_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_blackman_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_blackman_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hamming_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hamming_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hamming_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hann_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hann_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_window_functions_window_hann_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_bartlett_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_bartlett_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_blackman_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_blackman_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_cosine_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_cosine_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_hamming_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_hamming_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_hann_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_hann_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_nuttall_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_signal_windows_functions_window_nuttall_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_simple_scalar_cast_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_stack_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_stack_out_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_storage_filename_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_strided_mismatched_stride_shape_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_ctor_device_inference_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_device_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factories_empty_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_copy_var_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_gpu_type_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_gpu_type_inference_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_factory_type_inference_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_from_non_writable_numpy_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_tensor_from_sequence_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_floating_dtype_error_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_out_dtype_error_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_out_dtype_error_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_same_dtype_error_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_complex_same_dtype_error_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_polar_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_torch_polar_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_unpack_double_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_unpack_double_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vander_types_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vsplit_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vsplit_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vsplit_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_complex128, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_float64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_int32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_int8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_vstack_row_stack_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_bounds_checking_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_cpu, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_bool, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_complex64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_float16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_float32, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_int16, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_int64, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_dtype_layout_device_match_cpu_uint8, test/test_tensor_creation_ops.py::TestTensorCreationCPU::test_zeros_out_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_normal_cpu_float32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_normal_cpu_float64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_normal_std_error_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_complex128, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_complex32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_complex64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_float32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_rand_cpu_float64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randint_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randint_distribution_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randint_inference_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_bfloat16, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_complex128, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_complex32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_complex64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_float16, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_float32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randn_cpu_float64, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_random_neg_values_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randperm_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randperm_device_compatibility_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_randperm_large_cpu, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_uniform_from_to_cpu_float16, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_uniform_from_to_cpu_float32, test/test_tensor_creation_ops.py::TestRandomTensorCreationCPU::test_uniform_from_to_cpu_float64, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_empty_like_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_full_like_inference_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_ones_like_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_ones_like_multiple_device_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_zeros_like_cpu, test/test_tensor_creation_ops.py::TestLikeTensorCreationCPU::test_zeros_like_multiple_device_cpu, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_byte_to_int_cpu, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_invalid_positional_args_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_non_writable_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_not_a_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_requires_grad_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_same_type_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_shared_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_and_offset_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_count_cpu_uint8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_bool, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_complex128, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_complex64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_float16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_float32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_float64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_int16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_int32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_int64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_int8, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_uint16, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_uint32, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_uint64, test/test_tensor_creation_ops.py::TestBufferProtocolCPU::test_with_offset_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_dlpack_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_uint16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_uint32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_uint64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_numpy_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_alias_from_tensor_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_astensor_consistency_cpu, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_uint16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_uint32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_uint64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_buffer_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_dlpack_mult_devices_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_uint16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_uint32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_uint64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_numpy_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_from_tensor_mult_devices_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_list_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_bfloat16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_bool, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_complex128, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_float16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_float64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_int16, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_int32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_int64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_int8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_copy_tensor_cpu_uint8, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_default_device_cpu, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_device_without_index_cpu, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_numpy_scalars_cpu, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_retain_autograd_history_cpu_complex64, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_retain_autograd_history_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_unsupported_alias_cpu_float32, test/test_tensor_creation_ops.py::TestAsArrayCPU::test_unsupported_alias_mult_devices_cpu_float32 2025-09-07T07:27:09.4050424Z 2025-09-07T07:27:09.4050674Z Running test_cuda_nvml_based_avail 1/1 ... [2025-09-07 07:27:09.358880] 2025-09-07T07:27:09.4051123Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:27:09.4052198Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_nvml_based_avail.py', '--shard-id=1', '--num-shards=1', '-v', '--subprocess', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:27:09.359449] 2025-09-07T07:27:12.8505592Z 2025-09-07T07:27:12.8506626Z test_cuda_nvml_based_avail 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_nvml_based_avail_1.1_fde673015af3238f_.log 2025-09-07T07:27:12.8507437Z Running 0 items in this shard: 2025-09-07T07:27:12.8507631Z 2025-09-07T07:27:12.8511406Z Running test_autograd_fallback 1/1 ... [2025-09-07 07:27:12.849471] 2025-09-07T07:27:12.8511874Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:27:12.8527721Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autograd_fallback.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:27:12.849471] 2025-09-07T07:27:16.9256933Z 2025-09-07T07:27:16.9257801Z test_autograd_fallback 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autograd_fallback_1.1_191f058a0226615a_.log 2025-09-07T07:27:16.9269239Z Running 28 items in this shard: test/test_autograd_fallback.py::TestAutogradFallback::test_autograd_function_registered_to_cpu_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_autograd_function_registered_to_cpu_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_base_does_not_require_grad_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_base_does_not_require_grad_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_composite_registered_to_cpu_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_composite_registered_to_cpu_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_cpu_return_self_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_cpu_return_self_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_inplace_autograd_function_registered_to_cpu_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_inplace_autograd_function_registered_to_cpu_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_inplace_on_tensor_that_does_not_require_grad_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_inplace_on_tensor_that_does_not_require_grad_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_no_autograd_kernel_inplace_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_no_autograd_kernel_inplace_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_no_autograd_kernel_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_no_autograd_kernel_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_no_grad_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_no_grad_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_post_autograd_returns_leaf_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_post_autograd_returns_leaf_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_post_autograd_returns_mix_of_requires_grad_tensors_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_post_autograd_returns_mix_of_requires_grad_tensors_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_supports_tensor_lists_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_supports_tensor_lists_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_undefined_grads_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_undefined_grads_mode_warn, test/test_autograd_fallback.py::TestAutogradFallback::test_undefined_inputs_outputs_mode_nothing, test/test_autograd_fallback.py::TestAutogradFallback::test_undefined_inputs_outputs_mode_warn 2025-09-07T07:27:16.9280277Z 2025-09-07T07:27:16.9280526Z Running dynamo/test_fake_distributed 1/1 ... [2025-09-07 07:27:16.925977] 2025-09-07T07:27:16.9280961Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:27:16.9281993Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fake_distributed.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:27:16.927154] 2025-09-07T07:27:20.5419201Z 2025-09-07T07:27:20.5420284Z dynamo/test_fake_distributed 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fake_distributed_1.1_e984985c26f2c6af_.log 2025-09-07T07:27:20.5420993Z 2025-09-07T07:27:20.5425154Z Running inductor/test_distributed_patterns 1/1 ... [2025-09-07 07:27:20.542401] 2025-09-07T07:27:20.5425815Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:27:20.5431615Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_distributed_patterns.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:27:20.543022] 2025-09-07T07:27:29.9993867Z 2025-09-07T07:27:29.9994823Z inductor/test_distributed_patterns 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_distributed_patterns_1.1_013e6b9c27180b5c_.log 2025-09-07T07:27:29.9995573Z 2025-09-07T07:27:29.9999751Z Running test_autocast 1/1 ... [2025-09-07 07:27:29.995519] 2025-09-07T07:27:30.0000285Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:27:30.0005974Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autocast.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:27:29.995519] 2025-09-07T07:27:34.7746773Z 2025-09-07T07:27:34.7747881Z test_autocast 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autocast_1.1_d0b9e407dbd87598_.log 2025-09-07T07:27:34.7753884Z Running 20 items in this shard: test/test_autocast.py::TestAutocastCPU::test_autocast_disabled_with_fp32_dtype, test/test_autocast.py::TestAutocastCPU::test_autocast_methods_expect_builtin_promote, test/test_autocast.py::TestAutocastCPU::test_autocast_nn_16, test/test_autocast.py::TestAutocastCPU::test_autocast_nn_fp32, test/test_autocast.py::TestAutocastCPU::test_autocast_rnn, test/test_autocast.py::TestAutocastCPU::test_autocast_torch_16, test/test_autocast.py::TestAutocastCPU::test_autocast_torch_expect_builtin_promote, test/test_autocast.py::TestAutocastCPU::test_autocast_torch_fp32, test/test_autocast.py::TestAutocastCPU::test_autocast_torch_need_autocast_promote, test/test_autocast.py::TestAutocastCPU::test_cpu_autocast_deprecated_warning, test/test_autocast.py::TestAutocastCPU::test_generic_autocast, test/test_autocast.py::TestAutocastGPU::test_autocast_prioritize, test/test_autocast.py::TestAutocastGPU::test_cache_disabled, test/test_autocast.py::TestAutocastGPU::test_cast_cache_is_global, test/test_autocast.py::TestAutocastMPS::test_cast_cache_is_global, test/test_autocast.py::TestAutocastMPS::test_mps_autocast_bfloat16_supported, test/test_autocast.py::TestAutocastMPS::test_mps_autocast_error_message, test/test_autocast.py::TestTorchAutocast::test_autocast_fast_dtype, test/test_autocast.py::TestTorchAutocast::test_invalid_device, test/test_autocast.py::TestTorchAutocast::test_non_string_device 2025-09-07T07:27:34.7759438Z 2025-09-07T07:27:34.7759619Z Running test_torch 1/1 ... [2025-09-07 07:27:34.768117] 2025-09-07T07:27:34.7759979Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:27:34.7761006Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_torch.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:27:34.768117] 2025-09-07T07:27:54.0502046Z 2025-09-07T07:27:54.0502783Z test_torch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_torch_1.1_8b82856ea667474c_.log 2025-09-07T07:27:54.0780417Z Running 953 items in this shard: test/test_torch.py::TestBasicVitalSigns::test_basic_vitals, test/test_torch.py::TestBasicVitalSigns::test_basic_vitals_read_write, test/test_torch.py::TestBasicVitalSigns::test_dataloader_vitals, test/test_torch.py::TestTorch::test_RNGState, test/test_torch.py::TestTorch::test_RNGStateAliasing, test/test_torch.py::TestTorch::test_RNG_after_pickle, test/test_torch.py::TestTorch::test_Size, test/test_torch.py::TestTorch::test_Size_concat_non_tuple_sequence, test/test_torch.py::TestTorch::test_Size_concat_wildcard, test/test_torch.py::TestTorch::test_Size_iter, test/test_torch.py::TestTorch::test_Size_scalar, test/test_torch.py::TestTorch::test_add_meta_scalar, test/test_torch.py::TestTorch::test_allow_tensor_metadata_change, test/test_torch.py::TestTorch::test_apply, test/test_torch.py::TestTorch::test_as_subclass, test/test_torch.py::TestTorch::test_assert_async, test/test_torch.py::TestTorch::test_backward_hooks_traverse, test/test_torch.py::TestTorch::test_batch_norm_cpu_inference, test/test_torch.py::TestTorch::test_bf16_supported_on_cpu, test/test_torch.py::TestTorch::test_bmm_multithreaded, test/test_torch.py::TestTorch::test_boxMullerState, test/test_torch.py::TestTorch::test_cat_neg_dim, test/test_torch.py::TestTorch::test_check, test/test_torch.py::TestTorch::test_chunk_neg_dim, test/test_torch.py::TestTorch::test_conj_neg_tolist, test/test_torch.py::TestTorch::test_conj_physical_meta_stride, test/test_torch.py::TestTorch::test_contains, test/test_torch.py::TestTorch::test_copy_broadcast, test/test_torch.py::TestTorch::test_copy_dtypes, test/test_torch.py::TestTorch::test_copy_float16, test/test_torch.py::TestTorch::test_copy_many_to_one, test/test_torch.py::TestTorch::test_copy_transpose, test/test_torch.py::TestTorch::test_cuda_not_built, test/test_torch.py::TestTorch::test_cummax_neg_dim, test/test_torch.py::TestTorch::test_cummin_neg_dim, test/test_torch.py::TestTorch::test_cumprod_neg_dim, test/test_torch.py::TestTorch::test_cumsum_neg_dim, test/test_torch.py::TestTorch::test_cxx_flags, test/test_torch.py::TestTorch::test_data_ptr_of_empty_tensor_with_storage, test/test_torch.py::TestTorch::test_data_ptr_of_empty_view_with_storage, test/test_torch.py::TestTorch::test_deepcopy_gradient, test/test_torch.py::TestTorch::test_deepcopy_parameter, test/test_torch.py::TestTorch::test_deterministic_fill_uninitialized_memory, test/test_torch.py::TestTorch::test_deterministic_flag, test/test_torch.py::TestTorch::test_device, test/test_torch.py::TestTorch::test_dim_order, test/test_torch.py::TestTorch::test_dir, test/test_torch.py::TestTorch::test_doc, test/test_torch.py::TestTorch::test_doc_template, test/test_torch.py::TestTorch::test_dot_data_use, test/test_torch.py::TestTorch::test_dtype_is_signed, test/test_torch.py::TestTorch::test_element_size, test/test_torch.py::TestTorch::test_empty_meta, test/test_torch.py::TestTorch::test_empty_storage_view, test/test_torch.py::TestTorch::test_equal, test/test_torch.py::TestTorch::test_error_msg_type_translation, test/test_torch.py::TestTorch::test_fill_diagonal, test/test_torch.py::TestTorch::test_format_scalar_meta, test/test_torch.py::TestTorch::test_from_buffer, test/test_torch.py::TestTorch::test_from_file, test/test_torch.py::TestTorch::test_gather_neg_dim, test/test_torch.py::TestTorch::test_generator_cpu, test/test_torch.py::TestTorch::test_get_cpu_capability, test/test_torch.py::TestTorch::test_has_internal_overlap, test/test_torch.py::TestTorch::test_has_storage, test/test_torch.py::TestTorch::test_index_add, test/test_torch.py::TestTorch::test_index_add_all_dtypes, test/test_torch.py::TestTorch::test_index_add_cornercase, test/test_torch.py::TestTorch::test_index_add_correctness, test/test_torch.py::TestTorch::test_index_add_neg_dim, test/test_torch.py::TestTorch::test_index_copy_neg_dim, test/test_torch.py::TestTorch::test_index_fill_neg_dim, test/test_torch.py::TestTorch::test_index_select_neg_dim, test/test_torch.py::TestTorch::test_invalid_arg_error_handling, test/test_torch.py::TestTorch::test_invalid_generator_raises, test/test_torch.py::TestTorch::test_is_nonzero, test/test_torch.py::TestTorch::test_is_same_size, test/test_torch.py::TestTorch::test_iter, test/test_torch.py::TestTorch::test_kthvalue_neg_dim, test/test_torch.py::TestTorch::test_linspace_logspace, test/test_torch.py::TestTorch::test_logcumsumexp_neg_dim, test/test_torch.py::TestTorch::test_manual_seed, test/test_torch.py::TestTorch::test_map, test/test_torch.py::TestTorch::test_map2, test/test_torch.py::TestTorch::test_max_neg_dim, test/test_torch.py::TestTorch::test_mean_neg_dim, test/test_torch.py::TestTorch::test_median_neg_dim, test/test_torch.py::TestTorch::test_memory_format, test/test_torch.py::TestTorch::test_memory_format_contiguous_returns_same_tensor_if_already_satisfies, test/test_torch.py::TestTorch::test_memory_format_empty, test/test_torch.py::TestTorch::test_min_neg_dim, test/test_torch.py::TestTorch::test_mode_neg_dim, test/test_torch.py::TestTorch::test_multinomial_invalid_probs, test/test_torch.py::TestTorch::test_nanmedian_neg_dim, test/test_torch.py::TestTorch::test_narrow_neg_dim, test/test_torch.py::TestTorch::test_nbytes, test/test_torch.py::TestTorch::test_ndim, test/test_torch.py::TestTorch::test_new, test/test_torch.py::TestTorch::test_newaxis_numpy_comparison, test/test_torch.py::TestTorch::test_newindex, test/test_torch.py::TestTorch::test_no_cuda_monkeypatch, test/test_torch.py::TestTorch::test_norm_neg_dim, test/test_torch.py::TestTorch::test_normal_shape, test/test_torch.py::TestTorch::test_numel, test/test_torch.py::TestTorch::test_parallel_info, test/test_torch.py::TestTorch::test_parsing_double, test/test_torch.py::TestTorch::test_parsing_int64, test/test_torch.py::TestTorch::test_parsing_intlist, test/test_torch.py::TestTorch::test_permute, test/test_torch.py::TestTorch::test_pickle, test/test_torch.py::TestTorch::test_pickle_dtype, test/test_torch.py::TestTorch::test_pickle_function, test/test_torch.py::TestTorch::test_pickle_generator, test/test_torch.py::TestTorch::test_pickle_parameter, test/test_torch.py::TestTorch::test_pickle_parameter_no_requires_grad, test/test_torch.py::TestTorch::test_pickle_size, test/test_torch.py::TestTorch::test_pin_memory, test/test_torch.py::TestTorch::test_print, test/test_torch.py::TestTorch::test_prod_neg_dim, test/test_torch.py::TestTorch::test_pyobj_preserved, test/test_torch.py::TestTorch::test_qengine, test/test_torch.py::TestTorch::test_renorm_neg_dim, test/test_torch.py::TestTorch::test_resizable, test/test_torch.py::TestTorch::test_reversed, test/test_torch.py::TestTorch::test_scatter_neg_dim, test/test_torch.py::TestTorch::test_select_neg_dim, test/test_torch.py::TestTorch::test_set_flush_denormal, test/test_torch.py::TestTorch::test_setting_real_imag_to_a_number, test/test_torch.py::TestTorch::test_show_config, test/test_torch.py::TestTorch::test_size_neg_dim, test/test_torch.py::TestTorch::test_size_stride, test/test_torch.py::TestTorch::test_sizeof, test/test_torch.py::TestTorch::test_slice, test/test_torch.py::TestTorch::test_slow_test, test/test_torch.py::TestTorch::test_sobolengine_bounds, test/test_torch.py::TestTorch::test_sobolengine_bounds_scrambled, test/test_torch.py::TestTorch::test_sobolengine_continuing, test/test_torch.py::TestTorch::test_sobolengine_continuing_scrambled, test/test_torch.py::TestTorch::test_sobolengine_default_dtype, test/test_torch.py::TestTorch::test_sobolengine_distribution, test/test_torch.py::TestTorch::test_sobolengine_distribution_scrambled, test/test_torch.py::TestTorch::test_sobolengine_draw, test/test_torch.py::TestTorch::test_sobolengine_draw_base2, test/test_torch.py::TestTorch::test_sobolengine_draw_base2_scrambled, test/test_torch.py::TestTorch::test_sobolengine_draw_scrambled, test/test_torch.py::TestTorch::test_sobolengine_fast_forward, test/test_torch.py::TestTorch::test_sobolengine_fast_forward_scrambled, test/test_torch.py::TestTorch::test_sobolengine_first_point, test/test_torch.py::TestTorch::test_sobolengine_high_dim, test/test_torch.py::TestTorch::test_sobolengine_raise, test/test_torch.py::TestTorch::test_sobolengine_reset, test/test_torch.py::TestTorch::test_sobolengine_reset_scrambled, test/test_torch.py::TestTorch::test_sort_neg_dim, test/test_torch.py::TestTorch::test_split_neg_dim, test/test_torch.py::TestTorch::test_split_with_sizes_copy_out, test/test_torch.py::TestTorch::test_squeeze_neg_dim, test/test_torch.py::TestTorch::test_std_neg_dim, test/test_torch.py::TestTorch::test_storage_base_init, test/test_torch.py::TestTorch::test_storage_base_new, test/test_torch.py::TestTorch::test_storage_byteswap, test/test_torch.py::TestTorch::test_storage_casts, test/test_torch.py::TestTorch::test_storage_cycle_via_dict, test/test_torch.py::TestTorch::test_storage_cycle_via_slots, test/test_torch.py::TestTorch::test_storage_dead_weak_ref, test/test_torch.py::TestTorch::test_storage_dealloc, test/test_torch.py::TestTorch::test_storage_dealloc_resurrected, test/test_torch.py::TestTorch::test_storage_dealloc_subclass_resurrected, test/test_torch.py::TestTorch::test_storage_dealloc_subclass_zombie, test/test_torch.py::TestTorch::test_storage_dict_dealloc, test/test_torch.py::TestTorch::test_storage_error, test/test_torch.py::TestTorch::test_storage_error_no_attribute, test/test_torch.py::TestTorch::test_storage_finalizer_dealloc, test/test_torch.py::TestTorch::test_storage_fix_weakref_no_leak, test/test_torch.py::TestTorch::test_storage_from_tensor_dealloc, test/test_torch.py::TestTorch::test_storage_from_tensor_dealloc_resurrected, test/test_torch.py::TestTorch::test_storage_from_tensor_dealloc_zombie, test/test_torch.py::TestTorch::test_storage_preserve_nonhermetic_in_hermetic_context, test/test_torch.py::TestTorch::test_storage_resurrected_weak_ref, test/test_torch.py::TestTorch::test_storage_slot_dealloc, test/test_torch.py::TestTorch::test_storage_weakref_dealloc, test/test_torch.py::TestTorch::test_structseq_repr, test/test_torch.py::TestTorch::test_subclass_preserved, test/test_torch.py::TestTorch::test_subclass_tensors, test/test_torch.py::TestTorch::test_sum_neg_dim, test/test_torch.py::TestTorch::test_swap_basic, test/test_torch.py::TestTorch::test_swap_fail_slots, test/test_torch.py::TestTorch::test_t_not_2d_error, test/test_torch.py::TestTorch::test_tensor_base_init, test/test_torch.py::TestTorch::test_tensor_base_new, test/test_torch.py::TestTorch::test_tensor_ctor_scalar, test/test_torch.py::TestTorch::test_tensor_cycle_via_dict, test/test_torch.py::TestTorch::test_tensor_cycle_via_slots, test/test_torch.py::TestTorch::test_tensor_dead_weak_ref, test/test_torch.py::TestTorch::test_tensor_dict_dealloc, test/test_torch.py::TestTorch::test_tensor_finalizer_dealloc, test/test_torch.py::TestTorch::test_tensor_fix_weakref_no_leak, test/test_torch.py::TestTorch::test_tensor_item_no_warning, test/test_torch.py::TestTorch::test_tensor_ressurecting_clear, test/test_torch.py::TestTorch::test_tensor_resurrected_weak_ref, test/test_torch.py::TestTorch::test_tensor_set, test/test_torch.py::TestTorch::test_tensor_set_errors, test/test_torch.py::TestTorch::test_tensor_slot_dealloc, test/test_torch.py::TestTorch::test_tensor_weakref_dealloc, test/test_torch.py::TestTorch::test_tensor_where_scalar, test/test_torch.py::TestTorch::test_tensor_with_grad_to_scalar_warning, test/test_torch.py::TestTorch::test_tensoriterator_output_setup, test/test_torch.py::TestTorch::test_terminate_handler_on_crash, test/test_torch.py::TestTorch::test_to, test/test_torch.py::TestTorch::test_to_with_tensor, test/test_torch.py::TestTorch::test_topk_neg_dim, test/test_torch.py::TestTorch::test_torch_from_file, test/test_torch.py::TestTorch::test_transpose_neg_dim, test/test_torch.py::TestTorch::test_type, test/test_torch.py::TestTorch::test_type_alias, test/test_torch.py::TestTorch::test_type_conversion_via_dtype_name, test/test_torch.py::TestTorch::test_typed_storage_deprecation_warning, test/test_torch.py::TestTorch::test_typed_storage_internal_no_warning, test/test_torch.py::TestTorch::test_unbind_neg_dim, test/test_torch.py::TestTorch::test_unflatten, test/test_torch.py::TestTorch::test_unfold_neg_dim, test/test_torch.py::TestTorch::test_unsqueeze_neg_dim, test/test_torch.py::TestTorch::test_upsample_nearest1d_meta, test/test_torch.py::TestTorch::test_upsample_nearest2d_meta, test/test_torch.py::TestTorch::test_var_neg_dim, test/test_torch.py::TestTorch::test_warn_types, test/test_torch.py::TestTorch::test_wildcard_import, test/test_torch.py::TestVitalSignsCudaCPU::test_cuda_vitals_gpu_only_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test__local_scalar_dense_with_empty_tensor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcdiv_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_cuda_errors_with_cpu_scalars_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_False_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_addcmul_use_cpu_scalar_True_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_assertRaisesRegex_ignore_msg_non_native_device_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_edge_cases_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_edge_cases_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_edge_cases_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_p_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_p_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_p_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_p_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_bernoulli_self_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_bfloat16_neg_abs_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_bool_tensor_value_change_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_add_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_addcdiv_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_addcmul_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_atan2_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_copy_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_dist_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_div_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_eq_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_fmod_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_ge_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_gt_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_le_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_lerp_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_lt_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_map2_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_map_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_masked_fill_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_masked_scatter_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_masked_select_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_max_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_min_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_mul_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_ne_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_pow_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_remainder_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_broadcast_fn_sub_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_bytes_to_scalar_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_kstest_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_no_inf_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_cauchy_no_inf_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_cuda_backward_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_euclidean_large_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_grad_p_lt_1_no_nan_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_large_batch_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_large_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_non_contiguous_batch_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_non_contiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_norm_batch_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_norm_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cdist_same_inputs_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_check_tensor_all_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_check_tensor_internal_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_clone_all_dtypes_and_devices_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_clone_not_memory_dense_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_clone_zero_stride_dim_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_complex_half_experimental_warning_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_constants_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_conv_transposed_backward_agnostic_to_memory_format_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_conv_transposed_large_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_complex32, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy__cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_all_dtypes_and_devices_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_math_view_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_mem_overlap_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_transpose_math_view_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_transpose_math_view_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_copy_transpose_math_view_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_corrcoef_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_corrcoef_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_corrcoef_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_cov_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cpp_warnings_have_python_context_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cublas_config_nondeterministic_alert_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cummax_cummin_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cummax_discontiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cummin_discontiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cumprod_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cumsum_64bit_indexing_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_cumsum_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_deepcopy_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deepcopy_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deepcopy_scalar_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deepcopy_scalar_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_cumsum_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_complex32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_empty_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_interpolate_bilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_replication_pad2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_deterministic_resize_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_device_guard_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_diff_noncontig_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_dim_function_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_discontiguous_out_cumsum_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_dist_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_dtypetensor_warnings_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_expected_failure_xla_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_kstest_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_kstest_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_kstest_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_kstest_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_no_zero_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_exponential_no_zero_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gather_backward_deterministic_path_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_gather_backward_one_dim_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_geometric_kstest_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scale_will_not_overflow_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaler_deprecated_warning_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaler_pass_itself_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_accumulation_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach0_fused0_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach0_fused0_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach0_fused0_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach2_fused_True_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach2_fused_True_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach2_fused_True_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach_True_fused1_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach_True_fused1_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_autocast_foreach_True_fused1_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_clipping_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_clipping_separate_unscale_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_multiple_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_penalty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_state_dict_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_unscale_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_unscale_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_unscale_sparse_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_grad_scaling_update_scale_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_all_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_all_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_all_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_extreme_cases_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_extreme_cases_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_extreme_cases_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_spacing_list_length_error_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_spacing_list_length_error_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_spacing_list_length_error_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_gradient_type_promotion_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_hook_remove_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_add_large_inputs_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_add_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_copy_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_fill_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_index_put_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_int64_upsample3d_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_invalid_shapes_grid_sampler_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_is_set_to_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_is_signed_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_complex32, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float8_e4m3fn, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float8_e4m3fnuz, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float8_e5m2, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_float8_e5m2fnuz, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_item_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_large_cumprod_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_large_cumsum_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_binary_op_no_materialize_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_lazy_clone_view_materialize_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_log_normal_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_log_normal_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_log_normal_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_log_normal_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_logcumsumexp_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_lognormal_kstest_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_bool_tensor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_bfloat16_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_bfloat16_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_bool_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_bool_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_complex128_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_complex128_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_complex64_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_complex64_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float16_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float16_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float32_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float32_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float64_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_float64_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int16_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int16_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int32_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int32_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int64_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int64_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int8_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_int8_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_uint8_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_cpu_uint8_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_fill_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_bool_tensor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_inplace_noncontiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_large_tensor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_scatter_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_masked_select_discontiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_clone_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_consistency_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_cpu_and_cuda_ops_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_empty_like_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_factory_like_functions_preserve_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_operators_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_preserved_after_permute_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_propagation_rules_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_to_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_type_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_memory_format_type_shortcuts_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_module_share_memory_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_deterministic_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_deterministic_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_deterministic_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_device_constrain_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_empty_w_replacement_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_empty_wo_replacement_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_gpu_device_constrain_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_multinomial_rng_state_advance_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_narrow_copy_non_contiguous_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_narrow_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_no_nondeterministic_alert_interpolate_bilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_no_nondeterministic_alert_interpolate_trilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_AdaptiveAvgPool2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_AdaptiveAvgPool3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_AdaptiveMaxPool2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_AvgPool3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_CTCLoss_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_EmbeddingBag_max_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_FractionalMaxPool2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_FractionalMaxPool3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxPool3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool1d_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool1d_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool1d_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool2d_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool2d_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool2d_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool3d_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool3d_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_MaxUnpool3d_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_NLLLoss_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReflectionPad1d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReflectionPad3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReplicationPad1d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReplicationPad2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_ReplicationPad3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_bincount_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_grid_sample_2d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_grid_sample_3d_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_histc_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_interpolate_bicubic_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_interpolate_bilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_interpolate_linear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_interpolate_trilinear_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_kthvalue_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_median_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_put_accumulate_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_alert_put_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_qint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_qint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_quint2x4, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_quint4x2, test/test_torch.py::TestTorchDeviceTypeCPU::test_nondeterministic_resize_quantized_cpu_quint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_normal_kstest_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_normal_kstest_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_normal_kstest_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_nullary_op_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_pairwise_distance_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_parallel_cow_materialize_error_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_and_graph_partition_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_and_graph_partition_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_and_graph_partition_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_between_unscale_and_step_AdamW_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_between_unscale_and_step_Adam_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_params_invalidated_with_grads_invalidated_between_unscale_and_step_SGD_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_pdist_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_pdist_norm_large_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_pickle_gradscaler_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_pin_memory_from_constructor_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_accumulate_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_put_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_reduced_type_float_copy_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_reduced_type_float_copy_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_repeat_interleave_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scalar_check_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_add_bool_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_add_non_unique_index_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_add_one_dim_deterministic_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_add_to_large_input_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_bool_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_multiply_unsupported_dtypes_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_multiply_unsupported_dtypes_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_non_unique_index_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_operations_to_large_input_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_reduce_scalar_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_to_large_input_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_scatter_zero_size_index_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_serialization_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_default_tensor_type_warnings_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_set_storage_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_shift_mem_overlap_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_skip_xla_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_all_devices_non_blocking_False_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_all_devices_non_blocking_True_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_errors_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_from_tensor_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_meta_ok_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_qint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_qint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_quint4x2, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_quint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_setitem_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_storage_use_count_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_strides_propagation_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_sync_warning_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_take_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_uint16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_uint32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_uint64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_from_storage_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_set_errors_multigpu_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_shape_empty_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_storage_type_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_tensor_type_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_ternary_op_mem_overlap_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_bool, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_complex128, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_complex64, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_int16, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_int32, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_int64, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_int8, test/test_torch.py::TestTorchDeviceTypeCPU::test_typed_storage_meta_cpu_uint8, test/test_torch.py::TestTorchDeviceTypeCPU::test_uniform_kstest_cpu_bfloat16, test/test_torch.py::TestTorchDeviceTypeCPU::test_uniform_kstest_cpu_float16, test/test_torch.py::TestTorchDeviceTypeCPU::test_uniform_kstest_cpu_float32, test/test_torch.py::TestTorchDeviceTypeCPU::test_uniform_kstest_cpu_float64, test/test_torch.py::TestTorchDeviceTypeCPU::test_untyped_storage_meta_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_warn_always_caught_cpu, test/test_torch.py::TestTorchDeviceTypeCPU::test_where_scalar_handcrafted_values_cpu 2025-09-07T07:27:54.1048619Z 2025-09-07T07:27:54.1048925Z Running functorch/test_memory_efficient_fusion 1/1 ... [2025-09-07 07:27:54.052186] 2025-09-07T07:27:54.1049410Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:27:54.1050640Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_memory_efficient_fusion.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:27:54.052766] 2025-09-07T07:28:05.4810296Z 2025-09-07T07:28:05.4811612Z functorch/test_memory_efficient_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_memory_efficient_fusion_1.1_181e3f9578a62309_.log 2025-09-07T07:28:05.4820657Z Running 22 items in this shard: test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_gelu_bias, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_hard_sigmoid, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_hard_swish, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_layer_norm, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_mish, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_rmsnorm, test/functorch/test_memory_efficient_fusion.py::TestMemoryEfficientOpAuthoring::test_swish, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_empty, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_hash_with_numbers, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_nochange, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_rand_like, test/functorch/test_memory_efficient_fusion.py::NoChangeTestCase::test_rand_n, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_immutable_list_multiple_entries, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_immutable_list_type, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_kwarg, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_nested_immutable_list_type, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_simple, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_simple_2, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_simple_multiple_same_ops, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_two_args, test/functorch/test_memory_efficient_fusion.py::ReduceTestCase::test_two_args_default, test/functorch/test_memory_efficient_fusion.py::RandomOpTestCase::test_random 2025-09-07T07:28:05.4828764Z 2025-09-07T07:28:05.4828953Z Running test_sort_and_select 1/1 ... [2025-09-07 07:28:05.481606] 2025-09-07T07:28:05.4829375Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:28:05.4843413Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sort_and_select.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:28:05.483888] 2025-09-07T07:28:12.5142952Z 2025-09-07T07:28:12.5143857Z test_sort_and_select 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sort_and_select_1.1_45ed2021c69ab988_.log 2025-09-07T07:28:12.5180045Z Running 113 items in this shard: test/test_sort_and_select.py::TestSortAndSelectCPU::test_complex_unsupported_cpu_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_devices_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_isin_different_dtypes_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_kthvalue_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_kthvalue_scalar_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_msort_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_output_discontiguous_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_1d_parallel_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_discontiguous_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_discontiguous_slow_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_expanded_tensor_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_large_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_large_slice_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_overflow_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_restride_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_sort_stable_none_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_bool, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_against_numpy_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_bool, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_stable_sort_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_1d_output_discontiguous_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_4d_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_arguments_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_integral_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_lower_precision_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_lower_precision_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_noncontiguous_gpu_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_nonfinite_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_nonfinite_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_nonfinite_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_nonfinite_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_quantized_scalar_input_cpu, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_topk_zero_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_bool, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_consecutive_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_bfloat16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_bool, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_float16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_float32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_float64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_int16, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_int32, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_int64, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_int8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_cpu_uint8, test/test_sort_and_select.py::TestSortAndSelectCPU::test_unique_dim_cpu 2025-09-07T07:28:12.5214630Z 2025-09-07T07:28:12.5214864Z Running test_cpp_extensions_jit 1/1 ... [2025-09-07 07:28:12.515023] 2025-09-07T07:28:12.5215275Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:28:12.5216269Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_jit.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:28:12.515609] 2025-09-07T07:32:53.6702629Z 2025-09-07T07:32:53.6704504Z test_cpp_extensions_jit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_jit_1.1_256b73e786752ef7_.log 2025-09-07T07:32:53.6717170Z Running 34 items in this shard: test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_aoti_torch_call_dispatcher, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_autograd_from_cpp, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_compilation_error_formatting, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cpp_frontend_module_has_same_output_as_python, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cpp_frontend_module_has_up_to_date_attributes, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cpp_frontend_module_python_inter_op, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cpp_frontend_module_python_inter_op_with_cuda, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cuda_arch_flags_default_gencode, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cuda_arch_flags_non_default_gencode, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_cuda_pluggable_allocator_include, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_custom_compound_op_autograd, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_custom_functorch_error, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_gen_extension_h_pch, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_half_support, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_custom_op_cuda, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_cuda, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_multiple_sources_and_no_functions, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_throws_when_functions_is_bad, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_with_functions_as_dict, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_with_functions_as_list, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_inline_jit_compile_extension_xpu, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_compile_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_cuda_archflags, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_cuda_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_cudnn_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_xpu_archlists, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_jit_xpu_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_lenient_flag_handling_in_jit_extensions, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_load_with_non_platform_default_encoding, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_mps_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_reload_jit_extension, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_returns_shared_library_path_when_is_python_module_is_true, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_set_default_type_also_changes_aten_default_type, test/test_cpp_extensions_jit.py::TestCppExtensionJIT::test_warning 2025-09-07T07:32:53.6730650Z 2025-09-07T07:32:53.6730868Z Running test_native_mha 1/1 ... [2025-09-07 07:32:53.671191] 2025-09-07T07:32:53.6731319Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:32:53.6761456Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_native_mha.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:32:53.675771] 2025-09-07T07:32:57.8576656Z 2025-09-07T07:32:57.8577694Z test_native_mha 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_native_mha_1.1_ec2347e233e7e9c6_.log 2025-09-07T07:32:57.8597088Z Running 28 items in this shard: test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_attention_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_encoder_decoder_attention_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_False_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_False_pad_all_False_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_False_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_False_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_False_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_True_fused_False_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_native_multihead_self_attention_use_nt_True_use_padding_True_pad_all_True_need_weights_False_average_attn_weights_True_fused_True_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_transform_bias_rescale_qkv_cpu_float32, test/test_native_mha.py::TestMHADeviceTypeCPU::test_transform_bias_rescale_qkv_nested_cpu_float32 2025-09-07T07:32:57.8615877Z 2025-09-07T07:32:57.8616078Z Running test_cuda_primary_ctx 1/1 ... [2025-09-07 07:32:57.857999] 2025-09-07T07:32:57.8616556Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:32:57.8617573Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_primary_ctx.py', '--shard-id=1', '--num-shards=1', '-v', '--subprocess', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:32:57.858568] 2025-09-07T07:33:01.6327118Z 2025-09-07T07:33:01.6327963Z test_cuda_primary_ctx 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_primary_ctx_1.1_8014bd18098c4939_.log 2025-09-07T07:33:01.6328672Z Running 0 items in this shard: 2025-09-07T07:33:01.6328844Z 2025-09-07T07:33:01.6334047Z Running test_nn 1/1 ... [2025-09-07 07:33:01.633137] 2025-09-07T07:33:01.6341010Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:33:01.6341960Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nn.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:33:01.633727] 2025-09-07T07:36:42.8178892Z 2025-09-07T07:36:42.8179759Z test_nn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_nn_1.1_c8dc833cdee23b6d_.log 2025-09-07T07:36:42.9377101Z Running 2231 items in this shard: test/test_nn.py::TestNN::test_AdaptiveLogSoftmax, test/test_nn.py::TestNN::test_AdaptiveLogSoftmax_cuda, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_none, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_BCELoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_BCELoss_no_reduce, test/test_nn.py::TestNN::test_BCELoss_no_reduce_cuda, test/test_nn.py::TestNN::test_BCELoss_no_reduce_scalar, test/test_nn.py::TestNN::test_BCELoss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_BCELoss_weights_no_reduce, test/test_nn.py::TestNN::test_BCELoss_weights_no_reduce_cuda, test/test_nn.py::TestNN::test_BCELoss_weights_no_reduce_scalar, test/test_nn.py::TestNN::test_BCELoss_weights_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_legacy_enum, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_legacy_enum_cuda, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_reduce, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_reduce_scalar, test/test_nn.py::TestNN::test_BCEWithLogitsLoss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_CELU_no_batch_dim, test/test_nn.py::TestNN::test_CELU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_CTCLoss_critical_target_len, test/test_nn.py::TestNN::test_CTCLoss_lengthchecks_cpu, test/test_nn.py::TestNN::test_CTCLoss_lengthchecks_cuda, test/test_nn.py::TestNN::test_CTCLoss_long_targets, test/test_nn.py::TestNN::test_CTCLoss_typechecks, test/test_nn.py::TestNN::test_CTCLoss_zero_infinity, test/test_nn.py::TestNN::test_CTCLoss_zero_lengths, test/test_nn.py::TestNN::test_Conv1d, test/test_nn.py::TestNN::test_Conv1d_circular_stride2_pad2, test/test_nn.py::TestNN::test_Conv1d_circular_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv1d_cuda, test/test_nn.py::TestNN::test_Conv1d_dilated, test/test_nn.py::TestNN::test_Conv1d_dilated_cuda, test/test_nn.py::TestNN::test_Conv1d_groups, test/test_nn.py::TestNN::test_Conv1d_groups_cuda, test/test_nn.py::TestNN::test_Conv1d_pad1, test/test_nn.py::TestNN::test_Conv1d_pad1_cuda, test/test_nn.py::TestNN::test_Conv1d_pad1size1, test/test_nn.py::TestNN::test_Conv1d_pad1size1_cuda, test/test_nn.py::TestNN::test_Conv1d_pad2, test/test_nn.py::TestNN::test_Conv1d_pad2_cuda, test/test_nn.py::TestNN::test_Conv1d_pad2size1, test/test_nn.py::TestNN::test_Conv1d_pad2size1_cuda, test/test_nn.py::TestNN::test_Conv1d_pad_same, test/test_nn.py::TestNN::test_Conv1d_pad_same2, test/test_nn.py::TestNN::test_Conv1d_pad_same2_cuda, test/test_nn.py::TestNN::test_Conv1d_pad_same_cuda, test/test_nn.py::TestNN::test_Conv1d_pad_same_dilated, test/test_nn.py::TestNN::test_Conv1d_pad_same_dilated_cuda, test/test_nn.py::TestNN::test_Conv1d_pad_valid, test/test_nn.py::TestNN::test_Conv1d_pad_valid_cuda, test/test_nn.py::TestNN::test_Conv1d_reflect_stride2_pad2, test/test_nn.py::TestNN::test_Conv1d_reflect_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv1d_replicate_stride2_pad2, test/test_nn.py::TestNN::test_Conv1d_replicate_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv1d_stride, test/test_nn.py::TestNN::test_Conv1d_stride_cuda, test/test_nn.py::TestNN::test_Conv1d_zero_batch, test/test_nn.py::TestNN::test_Conv1d_zero_batch_cuda, test/test_nn.py::TestNN::test_Conv1d_zeros_stride2_pad2, test/test_nn.py::TestNN::test_Conv1d_zeros_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv2d, test/test_nn.py::TestNN::test_Conv2d_circular_stride2_pad2, test/test_nn.py::TestNN::test_Conv2d_circular_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv2d_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise, test/test_nn.py::TestNN::test_Conv2d_depthwise_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise_dilated, test/test_nn.py::TestNN::test_Conv2d_depthwise_dilated_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise_padded, test/test_nn.py::TestNN::test_Conv2d_depthwise_padded_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise_strided, test/test_nn.py::TestNN::test_Conv2d_depthwise_strided_cuda, test/test_nn.py::TestNN::test_Conv2d_depthwise_with_multiplier, test/test_nn.py::TestNN::test_Conv2d_depthwise_with_multiplier_cuda, test/test_nn.py::TestNN::test_Conv2d_dilated, test/test_nn.py::TestNN::test_Conv2d_dilated_cuda, test/test_nn.py::TestNN::test_Conv2d_dilated_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_dilated_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_groups, test/test_nn.py::TestNN::test_Conv2d_groups_cuda, test/test_nn.py::TestNN::test_Conv2d_groups_thnn, test/test_nn.py::TestNN::test_Conv2d_groups_thnn_cuda, test/test_nn.py::TestNN::test_Conv2d_groups_thnn_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_groups_thnn_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_groups_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_groups_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_no_bias, test/test_nn.py::TestNN::test_Conv2d_no_bias_cuda, test/test_nn.py::TestNN::test_Conv2d_no_bias_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_no_bias_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_pad_same, test/test_nn.py::TestNN::test_Conv2d_pad_same_cuda, test/test_nn.py::TestNN::test_Conv2d_pad_same_dilated, test/test_nn.py::TestNN::test_Conv2d_pad_same_dilated_cuda, test/test_nn.py::TestNN::test_Conv2d_pad_valid, test/test_nn.py::TestNN::test_Conv2d_pad_valid_cuda, test/test_nn.py::TestNN::test_Conv2d_padding, test/test_nn.py::TestNN::test_Conv2d_padding_cuda, test/test_nn.py::TestNN::test_Conv2d_padding_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_padding_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_reflect_stride2_pad2, test/test_nn.py::TestNN::test_Conv2d_reflect_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv2d_replicate_stride2_pad2, test/test_nn.py::TestNN::test_Conv2d_replicate_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv2d_strided, test/test_nn.py::TestNN::test_Conv2d_strided_cuda, test/test_nn.py::TestNN::test_Conv2d_strided_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_strided_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_zero_batch, test/test_nn.py::TestNN::test_Conv2d_zero_batch_cuda, test/test_nn.py::TestNN::test_Conv2d_zero_batch_with_long_tensor, test/test_nn.py::TestNN::test_Conv2d_zero_batch_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv2d_zeros_stride2_pad2, test/test_nn.py::TestNN::test_Conv2d_zeros_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv3d, test/test_nn.py::TestNN::test_Conv3d_1x1x1_no_bias, test/test_nn.py::TestNN::test_Conv3d_1x1x1_no_bias_cuda, test/test_nn.py::TestNN::test_Conv3d_1x1x1_no_bias_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_1x1x1_no_bias_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_circular_stride2_pad2, test/test_nn.py::TestNN::test_Conv3d_circular_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv3d_cuda, test/test_nn.py::TestNN::test_Conv3d_dilated, test/test_nn.py::TestNN::test_Conv3d_dilated_cuda, test/test_nn.py::TestNN::test_Conv3d_dilated_strided, test/test_nn.py::TestNN::test_Conv3d_dilated_strided_cuda, test/test_nn.py::TestNN::test_Conv3d_groups, test/test_nn.py::TestNN::test_Conv3d_groups_cuda, test/test_nn.py::TestNN::test_Conv3d_groups_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_groups_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_no_bias, test/test_nn.py::TestNN::test_Conv3d_no_bias_cuda, test/test_nn.py::TestNN::test_Conv3d_no_bias_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_no_bias_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_pad_same, test/test_nn.py::TestNN::test_Conv3d_pad_same_cuda, test/test_nn.py::TestNN::test_Conv3d_pad_same_dilated, test/test_nn.py::TestNN::test_Conv3d_pad_same_dilated_cuda, test/test_nn.py::TestNN::test_Conv3d_pad_valid, test/test_nn.py::TestNN::test_Conv3d_pad_valid_cuda, test/test_nn.py::TestNN::test_Conv3d_replicate_stride2_pad2, test/test_nn.py::TestNN::test_Conv3d_replicate_stride2_pad2_cuda, test/test_nn.py::TestNN::test_Conv3d_stride, test/test_nn.py::TestNN::test_Conv3d_stride_cuda, test/test_nn.py::TestNN::test_Conv3d_stride_padding, test/test_nn.py::TestNN::test_Conv3d_stride_padding_cuda, test/test_nn.py::TestNN::test_Conv3d_stride_padding_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_stride_padding_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_stride_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_stride_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_zero_batch, test/test_nn.py::TestNN::test_Conv3d_zero_batch_cuda, test/test_nn.py::TestNN::test_Conv3d_zero_batch_with_long_tensor, test/test_nn.py::TestNN::test_Conv3d_zero_batch_with_long_tensor_cuda, test/test_nn.py::TestNN::test_Conv3d_zeros_stride2_pad2, test/test_nn.py::TestNN::test_Conv3d_zeros_stride2_pad2_cuda, test/test_nn.py::TestNN::test_ConvTranspose1d, test/test_nn.py::TestNN::test_ConvTranspose1d_cuda, test/test_nn.py::TestNN::test_ConvTranspose1d_dilated, test/test_nn.py::TestNN::test_ConvTranspose1d_dilated_cuda, test/test_nn.py::TestNN::test_ConvTranspose1d_groups, test/test_nn.py::TestNN::test_ConvTranspose1d_groups_cuda, test/test_nn.py::TestNN::test_ConvTranspose1d_no_bias, test/test_nn.py::TestNN::test_ConvTranspose1d_no_bias_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d, test/test_nn.py::TestNN::test_ConvTranspose2d_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_dilated, test/test_nn.py::TestNN::test_ConvTranspose2d_dilated_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_dilated_with_long_tensor, test/test_nn.py::TestNN::test_ConvTranspose2d_dilated_with_long_tensor_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_groups, test/test_nn.py::TestNN::test_ConvTranspose2d_groups_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_groups_with_long_tensor, test/test_nn.py::TestNN::test_ConvTranspose2d_groups_with_long_tensor_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_no_bias, test/test_nn.py::TestNN::test_ConvTranspose2d_no_bias_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_no_bias_with_long_tensor, test/test_nn.py::TestNN::test_ConvTranspose2d_no_bias_with_long_tensor_cuda, test/test_nn.py::TestNN::test_ConvTranspose2d_with_long_tensor, test/test_nn.py::TestNN::test_ConvTranspose2d_with_long_tensor_cuda, test/test_nn.py::TestNN::test_ConvTranspose3d, test/test_nn.py::TestNN::test_ConvTranspose3d_cuda, test/test_nn.py::TestNN::test_ConvTranspose3d_dilated, test/test_nn.py::TestNN::test_ConvTranspose3d_dilated_cuda, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_CosineEmbeddingLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_CrossMapLRN2d, test/test_nn.py::TestNN::test_CrossMapLRN2d_cuda, test/test_nn.py::TestNN::test_ELU_no_batch_dim, test/test_nn.py::TestNN::test_ELU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Embedding, test/test_nn.py::TestNN::test_EmbeddingBag_discontiguous, test/test_nn.py::TestNN::test_EmbeddingBag_discontiguous_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_max, test/test_nn.py::TestNN::test_EmbeddingBag_max_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_max_padding_idx, test/test_nn.py::TestNN::test_EmbeddingBag_max_padding_idx_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_mean, test/test_nn.py::TestNN::test_EmbeddingBag_mean_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_mean_padding_idx, test/test_nn.py::TestNN::test_EmbeddingBag_mean_padding_idx_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_sparse, test/test_nn.py::TestNN::test_EmbeddingBag_sparse_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_sum, test/test_nn.py::TestNN::test_EmbeddingBag_sum_cuda, test/test_nn.py::TestNN::test_EmbeddingBag_sum_padding_idx, test/test_nn.py::TestNN::test_EmbeddingBag_sum_padding_idx_cuda, test/test_nn.py::TestNN::test_Embedding_cuda, test/test_nn.py::TestNN::test_Embedding_discontiguous, test/test_nn.py::TestNN::test_Embedding_discontiguous_cuda, test/test_nn.py::TestNN::test_Embedding_sparse, test/test_nn.py::TestNN::test_Embedding_sparse_cuda, test/test_nn.py::TestNN::test_Flatten, test/test_nn.py::TestNN::test_Flatten_cuda, test/test_nn.py::TestNN::test_Flatten_no_batch_dim, test/test_nn.py::TestNN::test_Flatten_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Fold, test/test_nn.py::TestNN::test_Fold_cuda, test/test_nn.py::TestNN::test_Fold_int_input, test/test_nn.py::TestNN::test_Fold_int_input_cuda, test/test_nn.py::TestNN::test_Fold_no_batch_dim_input, test/test_nn.py::TestNN::test_Fold_no_batch_dim_input_cuda, test/test_nn.py::TestNN::test_Fold_no_batch_dim_int_input, test/test_nn.py::TestNN::test_Fold_no_batch_dim_int_input_cuda, test/test_nn.py::TestNN::test_GELU_no_batch_dim, test/test_nn.py::TestNN::test_GELU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_GLU_no_batch_dim, test/test_nn.py::TestNN::test_GLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Hardshrink_no_batch_dim, test/test_nn.py::TestNN::test_Hardshrink_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Hardsigmoid_no_batch_dim, test/test_nn.py::TestNN::test_Hardsigmoid_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Hardswish_no_batch_dim, test/test_nn.py::TestNN::test_Hardswish_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Hardtanh_no_batch_dim, test/test_nn.py::TestNN::test_Hardtanh_no_batch_dim_cuda, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_margin_no_reduce, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_margin_no_reduce_cuda, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_reduce, test/test_nn.py::TestNN::test_HingeEmbeddingLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_HuberLoss_delta, test/test_nn.py::TestNN::test_HuberLoss_delta_cuda, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_HuberLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_KLDivLoss_batch_mean, test/test_nn.py::TestNN::test_KLDivLoss_batch_mean_log_target, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_KLDivLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_log_target, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_log_target_cuda, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_scalar, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_scalar_log_target, test/test_nn.py::TestNN::test_KLDivLoss_no_reduce_scalar_log_target_cuda, test/test_nn.py::TestNN::test_KLDivLoss_with_log_target_no_reduce, test/test_nn.py::TestNN::test_KLDivLoss_with_log_target_no_reduce_cuda, test/test_nn.py::TestNN::test_KLDivLoss_with_target_no_reduce, test/test_nn.py::TestNN::test_KLDivLoss_with_target_no_reduce_cuda, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_mean, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_none, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_sum, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_L1Loss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_L1Loss_no_reduce, test/test_nn.py::TestNN::test_L1Loss_no_reduce_complex, test/test_nn.py::TestNN::test_L1Loss_no_reduce_complex_cuda, test/test_nn.py::TestNN::test_L1Loss_no_reduce_cuda, test/test_nn.py::TestNN::test_L1Loss_no_reduce_scalar, test/test_nn.py::TestNN::test_L1Loss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_LSTM_cell, test/test_nn.py::TestNN::test_LSTM_cell_forward_hidden_size, test/test_nn.py::TestNN::test_LSTM_cell_forward_input_size, test/test_nn.py::TestNN::test_LayerNorm_3d_no_affine_large_feature, test/test_nn.py::TestNN::test_LayerNorm_3d_no_affine_large_feature_cuda, test/test_nn.py::TestNN::test_LayerNorm_3d_no_affine_large_feature_eval, test/test_nn.py::TestNN::test_LayerNorm_3d_no_affine_large_feature_eval_cuda, test/test_nn.py::TestNN::test_LeakyReLU_no_batch_dim, test/test_nn.py::TestNN::test_LeakyReLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Linear, test/test_nn.py::TestNN::test_Linear_cuda, test/test_nn.py::TestNN::test_Linear_no_batch_dim, test/test_nn.py::TestNN::test_Linear_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Linear_no_bias, test/test_nn.py::TestNN::test_Linear_no_bias_cuda, test/test_nn.py::TestNN::test_LogSigmoid_no_batch_dim, test/test_nn.py::TestNN::test_LogSigmoid_no_batch_dim_cuda, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_none, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_MSELoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_MSELoss_no_reduce, test/test_nn.py::TestNN::test_MSELoss_no_reduce_cuda, test/test_nn.py::TestNN::test_MSELoss_no_reduce_scalar, test/test_nn.py::TestNN::test_MSELoss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_MarginRankingLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_MaxUnpool1d_net, test/test_nn.py::TestNN::test_MaxUnpool1d_net_cuda, test/test_nn.py::TestNN::test_MaxUnpool1d_net_no_batch_dim, test/test_nn.py::TestNN::test_MaxUnpool1d_net_no_batch_dim_cuda, test/test_nn.py::TestNN::test_MaxUnpool2d_net, test/test_nn.py::TestNN::test_MaxUnpool2d_net_cuda, test/test_nn.py::TestNN::test_MaxUnpool2d_net_no_batch_dim, test/test_nn.py::TestNN::test_MaxUnpool2d_net_no_batch_dim_cuda, test/test_nn.py::TestNN::test_MaxUnpool3d_net, test/test_nn.py::TestNN::test_MaxUnpool3d_net_cuda, test/test_nn.py::TestNN::test_MaxUnpool3d_net_no_batch_dim, test/test_nn.py::TestNN::test_MaxUnpool3d_net_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Mish_no_batch_dim, test/test_nn.py::TestNN::test_Mish_no_batch_dim_cuda, test/test_nn.py::TestNN::test_ModuleDict, test/test_nn.py::TestNN::test_ModuleList, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_0d_no_reduce, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_0d_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_1d_no_reduce, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_1d_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_index_neg, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_index_neg_cuda, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_reduce, test/test_nn.py::TestNN::test_MultiLabelMarginLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_reduce, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_weights_no_reduce, test/test_nn.py::TestNN::test_MultiLabelSoftMarginLoss_weights_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_1d_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_1d_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_margin_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_margin_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_p_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_p_no_reduce_cuda, test/test_nn.py::TestNN::test_MultiMarginLoss_weights_no_reduce, test/test_nn.py::TestNN::test_MultiMarginLoss_weights_no_reduce_cuda, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_cuda, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_ignore_index, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_ignore_index_cuda, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_weights, test/test_nn.py::TestNN::test_NLLLoss2d_no_reduce_weights_cuda, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_cuda, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_ignore_index, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_ignore_index_cuda, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_weights, test/test_nn.py::TestNN::test_NLLLossNd_no_reduce_weights_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_NLLLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_NLLLoss_no_reduce, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_ignore_index, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_ignore_index_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_ignore_index, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_ignore_index_cuda, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_ignore_index_neg, test/test_nn.py::TestNN::test_NLLLoss_no_reduce_weights_ignore_index_neg_cuda, test/test_nn.py::TestNN::test_PReLU_backward_requires_grad_false, test/test_nn.py::TestNN::test_PReLU_no_batch_dim, test/test_nn.py::TestNN::test_PReLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_PairwiseDistance, test/test_nn.py::TestNN::test_PairwiseDistance_broadcast_lhs, test/test_nn.py::TestNN::test_PairwiseDistance_broadcast_lhs_cuda, test/test_nn.py::TestNN::test_PairwiseDistance_broadcast_rhs, test/test_nn.py::TestNN::test_PairwiseDistance_broadcast_rhs_cuda, test/test_nn.py::TestNN::test_PairwiseDistance_cuda, test/test_nn.py::TestNN::test_PairwiseDistance_no_batch_dim, test/test_nn.py::TestNN::test_PairwiseDistance_no_batch_dim_cuda, test/test_nn.py::TestNN::test_PairwiseDistance_with_non_default_args, test/test_nn.py::TestNN::test_PairwiseDistance_with_non_default_args_cuda, test/test_nn.py::TestNN::test_ParameterDict, test/test_nn.py::TestNN::test_ParameterDict_replication, test/test_nn.py::TestNN::test_ParameterList, test/test_nn.py::TestNN::test_ParameterList_meta, test/test_nn.py::TestNN::test_ParameterList_replication, test/test_nn.py::TestNN::test_PixelShuffle, test/test_nn.py::TestNN::test_PixelShuffle_cuda, test/test_nn.py::TestNN::test_PixelUnshuffle, test/test_nn.py::TestNN::test_PixelUnshuffle_cuda, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_reduce, test/test_nn.py::TestNN::test_PoissonNLLLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_RNN_cell, test/test_nn.py::TestNN::test_RNN_cell_forward_zero_hidden_size, test/test_nn.py::TestNN::test_RNN_cell_no_broadcasting, test/test_nn.py::TestNN::test_RNN_change_dropout, test/test_nn.py::TestNN::test_RNN_cpu_vs_cudnn_no_dropout, test/test_nn.py::TestNN::test_RNN_cpu_vs_cudnn_with_dropout, test/test_nn.py::TestNN::test_RNN_cudnn_weight_norm, test/test_nn.py::TestNN::test_RNN_dropout, test/test_nn.py::TestNN::test_RNN_dropout_state, test/test_nn.py::TestNN::test_RNN_input_size_zero, test/test_nn.py::TestNN::test_RNN_nonlinearity, test/test_nn.py::TestNN::test_RNN_nonlinearity_passed_as_arg, test/test_nn.py::TestNN::test_RReLU, test/test_nn.py::TestNN::test_RReLU_cuda, test/test_nn.py::TestNN::test_RReLU_no_batch_dim, test/test_nn.py::TestNN::test_RReLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_RReLU_with_up_down, test/test_nn.py::TestNN::test_RReLU_with_up_down_cuda, test/test_nn.py::TestNN::test_RReLU_with_up_down_scalar, test/test_nn.py::TestNN::test_RReLU_with_up_down_scalar_cuda, test/test_nn.py::TestNN::test_ReLU6_no_batch_dim, test/test_nn.py::TestNN::test_ReLU6_no_batch_dim_cuda, test/test_nn.py::TestNN::test_ReLU_no_batch_dim, test/test_nn.py::TestNN::test_ReLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_ReplicationPad3d, test/test_nn.py::TestNN::test_ReplicationPad3d_complex, test/test_nn.py::TestNN::test_ReplicationPad3d_complex_cuda, test/test_nn.py::TestNN::test_ReplicationPad3d_cuda, test/test_nn.py::TestNN::test_ReplicationPad3d_no_batch_dim, test/test_nn.py::TestNN::test_ReplicationPad3d_no_batch_dim_cuda, test/test_nn.py::TestNN::test_SELU_no_batch_dim, test/test_nn.py::TestNN::test_SELU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Sequential_add, test/test_nn.py::TestNN::test_Sequential_append, test/test_nn.py::TestNN::test_Sequential_delitem, test/test_nn.py::TestNN::test_Sequential_extend, test/test_nn.py::TestNN::test_Sequential_getitem, test/test_nn.py::TestNN::test_Sequential_iadd, test/test_nn.py::TestNN::test_Sequential_imul, test/test_nn.py::TestNN::test_Sequential_insert, test/test_nn.py::TestNN::test_Sequential_insert_fail_case, test/test_nn.py::TestNN::test_Sequential_mul, test/test_nn.py::TestNN::test_Sequential_pop, test/test_nn.py::TestNN::test_Sequential_rmul, test/test_nn.py::TestNN::test_Sequential_setitem, test/test_nn.py::TestNN::test_Sequential_setitem_named, test/test_nn.py::TestNN::test_SiLU_no_batch_dim, test/test_nn.py::TestNN::test_SiLU_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Sigmoid_no_batch_dim, test/test_nn.py::TestNN::test_Sigmoid_no_batch_dim_cuda, test/test_nn.py::TestNN::test_SmoothL1Loss_beta, test/test_nn.py::TestNN::test_SmoothL1Loss_beta_cuda, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_mean, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_none, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_sum, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_SmoothL1Loss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_SmoothL1Loss_no_reduce, test/test_nn.py::TestNN::test_SmoothL1Loss_no_reduce_cuda, test/test_nn.py::TestNN::test_SmoothL1Loss_no_reduce_scalar, test/test_nn.py::TestNN::test_SmoothL1Loss_no_reduce_scalar_cuda, test/test_nn.py::TestNN::test_SmoothL1Loss_zero_beta, test/test_nn.py::TestNN::test_SmoothL1Loss_zero_beta_cuda, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_SoftMarginLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_SoftMarginLoss_no_reduce, test/test_nn.py::TestNN::test_SoftMarginLoss_no_reduce_cuda, test/test_nn.py::TestNN::test_Softplus_no_batch_dim, test/test_nn.py::TestNN::test_Softplus_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Softshrink_no_batch_dim, test/test_nn.py::TestNN::test_Softshrink_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Softsign_no_batch_dim, test/test_nn.py::TestNN::test_Softsign_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Tanh_no_batch_dim, test/test_nn.py::TestNN::test_Tanh_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Tanhshrink_no_batch_dim, test/test_nn.py::TestNN::test_Tanhshrink_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Threshold_no_batch_dim, test/test_nn.py::TestNN::test_Threshold_no_batch_dim_cuda, test/test_nn.py::TestNN::test_TransformerDecoderLayer_gelu_activation, test/test_nn.py::TestNN::test_TransformerDecoderLayer_gelu_activation_cuda, test/test_nn.py::TestNN::test_TransformerDecoderLayer_relu_activation, test/test_nn.py::TestNN::test_TransformerDecoderLayer_relu_activation_cuda, test/test_nn.py::TestNN::test_TransformerEncoderLayer_gelu_activation, test/test_nn.py::TestNN::test_TransformerEncoderLayer_gelu_activation_cuda, test/test_nn.py::TestNN::test_TransformerEncoderLayer_relu_activation, test/test_nn.py::TestNN::test_TransformerEncoderLayer_relu_activation_cuda, test/test_nn.py::TestNN::test_Transformer_cell, test/test_nn.py::TestNN::test_Transformer_multilayer_coder, test/test_nn.py::TestNN::test_Transformer_multilayer_coder_cuda, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_mean, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_mean_cuda_double, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_mean_cuda_float, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_mean_cuda_half, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_none, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_none_cuda_double, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_none_cuda_float, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_none_cuda_half, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_sum, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_sum_cuda_double, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_sum_cuda_float, test/test_nn.py::TestNN::test_TripletMarginLoss_no_batch_dim_sum_cuda_half, test/test_nn.py::TestNN::test_Unflatten_no_batch_dim, test/test_nn.py::TestNN::test_Unflatten_no_batch_dim_cuda, test/test_nn.py::TestNN::test_Unfold, test/test_nn.py::TestNN::test_Unfold_cuda, test/test_nn.py::TestNN::test_Unfold_int_input, test/test_nn.py::TestNN::test_Unfold_int_input_cuda, test/test_nn.py::TestNN::test_adaptive_log_softmax, test/test_nn.py::TestNN::test_add_module, test/test_nn.py::TestNN::test_add_module_raises_error_if_attr_exists, test/test_nn.py::TestNN::test_affine_grid, test/test_nn.py::TestNN::test_affine_grid_3d, test/test_nn.py::TestNN::test_affine_grid_backward_cl_cf_consistency_device_cpu_nd_2, test/test_nn.py::TestNN::test_affine_grid_backward_cl_cf_consistency_device_cpu_nd_3, test/test_nn.py::TestNN::test_affine_grid_error_checking, test/test_nn.py::TestNN::test_assignment, test/test_nn.py::TestNN::test_batch_norm_update_stats, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_cpu_float32, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_cpu_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_cpu_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_native_float32, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_native_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_2D_inference_NCHW_vs_native_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_cpu_float32, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_cpu_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_cpu_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_native_float32, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_native_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_2D_train_NCHW_vs_native_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_cpu_float32, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_cpu_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_cpu_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_native_float32, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_native_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_3D_inference_NCHW_vs_native_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_cpu_float32, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_cpu_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_cpu_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_native_float32, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_native_mixed_bfloat16, test/test_nn.py::TestNN::test_batchnorm_3D_train_NCHW_vs_native_mixed_float16, test/test_nn.py::TestNN::test_batchnorm_buffer_update_when_stats_are_not_tracked, test/test_nn.py::TestNN::test_batchnorm_cudnn_half, test/test_nn.py::TestNN::test_batchnorm_cudnn_nhwc, test/test_nn.py::TestNN::test_batchnorm_half_overflow, test/test_nn.py::TestNN::test_batchnorm_load_state_dict, test/test_nn.py::TestNN::test_batchnorm_nhwc_cpu, test/test_nn.py::TestNN::test_batchnorm_nhwc_cuda, test/test_nn.py::TestNN::test_batchnorm_non_contig_cpu_BatchNorm2d, test/test_nn.py::TestNN::test_batchnorm_non_contig_cpu_SyncBatchNorm, test/test_nn.py::TestNN::test_batchnorm_nonaffine_cuda_half_input, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_bias_is_not_same_size_as_input, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_less_than_one_value_per_channel, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_running_mean_is_not_same_size_as_input, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_running_var_is_not_same_size_as_input, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_running_var_or_running_mean_have_forward_grad, test/test_nn.py::TestNN::test_batchnorm_raises_error_if_weight_is_not_same_size_as_input, test/test_nn.py::TestNN::test_bce_loss_always_nonnegative, test/test_nn.py::TestNN::test_bce_loss_broadcasts_weights, test/test_nn.py::TestNN::test_bce_loss_input_range, test/test_nn.py::TestNN::test_bce_loss_size_mismatch, test/test_nn.py::TestNN::test_bce_with_logits_broadcasts_pos_weights, test/test_nn.py::TestNN::test_bce_with_logits_broadcasts_weights, test/test_nn.py::TestNN::test_bce_with_logits_gives_same_result_as_sigmoid_and_bce_loss, test/test_nn.py::TestNN::test_bce_with_logits_gives_same_result_as_sigmoid_and_bce_loss_large_tensors_with_grad, test/test_nn.py::TestNN::test_bce_with_logits_has_correct_forward_grad, test/test_nn.py::TestNN::test_bce_with_logits_has_correct_grad_at_zero, test/test_nn.py::TestNN::test_bce_with_logits_ones_in_pos_weights_are_the_same_as_none, test/test_nn.py::TestNN::test_bce_with_logits_raises_if_target_and_input_are_different_size, test/test_nn.py::TestNN::test_bce_with_logits_stability, test/test_nn.py::TestNN::test_bce_with_logits_with_pos_weight_has_correct_grad_at_zero, test/test_nn.py::TestNN::test_bilinear, test/test_nn.py::TestNN::test_bilinear_broadcasting, test/test_nn.py::TestNN::test_bilinear_no_bias, test/test_nn.py::TestNN::test_bilinear_non_contiguous, test/test_nn.py::TestNN::test_bilinear_value_error, test/test_nn.py::TestNN::test_broadcast_double_backwards_gpu, test/test_nn.py::TestNN::test_broadcast_no_grad, test/test_nn.py::TestNN::test_broadcast_not_requiring_grad, test/test_nn.py::TestNN::test_buffer_bad_module_subclass, test/test_nn.py::TestNN::test_buffer_not_persistent, test/test_nn.py::TestNN::test_buffer_not_persistent_assign, test/test_nn.py::TestNN::test_buffer_not_persistent_del, test/test_nn.py::TestNN::test_buffer_not_persistent_load, test/test_nn.py::TestNN::test_buffer_not_persistent_overwrite, test/test_nn.py::TestNN::test_buffers_and_named_buffers, test/test_nn.py::TestNN::test_call_supports_python_dict_output, test/test_nn.py::TestNN::test_channel_shuffle_input_checks, test/test_nn.py::TestNN::test_channel_shuffle_return_alias_of_self, test/test_nn.py::TestNN::test_children, test/test_nn.py::TestNN::test_container_copy, test/test_nn.py::TestNN::test_convert_sync_batchnorm, test/test_nn.py::TestNN::test_cosine_embedding_loss_error_on_diff_shapes, test/test_nn.py::TestNN::test_cosine_embedding_loss_error_on_nonexpandable_shapes, test/test_nn.py::TestNN::test_cosine_embedding_loss_invalid_shape, test/test_nn.py::TestNN::test_cosine_embedding_loss_margin_no_reduce, test/test_nn.py::TestNN::test_cosine_embedding_loss_no_reduce, test/test_nn.py::TestNN::test_cosine_embedding_loss_with_diff_type, test/test_nn.py::TestNN::test_cosine_similarity, test/test_nn.py::TestNN::test_cross_entropy_loss, test/test_nn.py::TestNN::test_cross_entropy_loss_precision, test/test_nn.py::TestNN::test_cross_entropy_loss_zero_div, test/test_nn.py::TestNN::test_cudnn_forward_exception, test/test_nn.py::TestNN::test_cudnn_rnn_dropout_states_device, test/test_nn.py::TestNN::test_cudnn_weight_format, test/test_nn.py::TestNN::test_cudnn_weight_tying, test/test_nn.py::TestNN::test_dir, test/test_nn.py::TestNN::test_dir_digit, test/test_nn.py::TestNN::test_elu_inplace_gradgrad, test/test_nn.py::TestNN::test_elu_inplace_on_view, test/test_nn.py::TestNN::test_error_RNN_seq_len_zero, test/test_nn.py::TestNN::test_extra_state, test/test_nn.py::TestNN::test_extra_state_missing_get_extra_state, test/test_nn.py::TestNN::test_extra_state_missing_set_extra_state, test/test_nn.py::TestNN::test_extra_state_non_dict, test/test_nn.py::TestNN::test_fb_fc_packed, test/test_nn.py::TestNN::test_flatten, test/test_nn.py::TestNN::test_fold_invalid_arg, test/test_nn.py::TestNN::test_fractional_max_pool2d_invalid_output_ratio, test/test_nn.py::TestNN::test_gaussian_nll_loss_args, test/test_nn.py::TestNN::test_gaussian_nll_loss_broadcasting, test/test_nn.py::TestNN::test_gaussian_nll_loss_scalar_var, test/test_nn.py::TestNN::test_get_buffer, test/test_nn.py::TestNN::test_get_buffer_from_submodules, test/test_nn.py::TestNN::test_getattr_with_property, test/test_nn.py::TestNN::test_grid_sample, test/test_nn.py::TestNN::test_grid_sample_3d, test/test_nn.py::TestNN::test_grid_sample_error_checking, test/test_nn.py::TestNN::test_grid_sample_nearest_neighbor_rounding_mode_consistency, test/test_nn.py::TestNN::test_hardtanh_backward, test/test_nn.py::TestNN::test_hardtanh_inplace_gradgrad, test/test_nn.py::TestNN::test_huber_loss_invalid_delta, test/test_nn.py::TestNN::test_inplace_thnn, test/test_nn.py::TestNN::test_interpolate, test/test_nn.py::TestNN::test_interpolate_bicubic_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_2d_zero_dim, test/test_nn.py::TestNN::test_interpolate_bicubic_2d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_shared_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_shared_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_skewed_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_skewed_2d_align_corners, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_skewed_2d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_scale_tuple_skewed_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_tuple_2d, test/test_nn.py::TestNN::test_interpolate_bicubic_tuple_2d_align_corners, test/test_nn.py::TestNN::test_interpolate_bicubic_tuple_2d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_bicubic_tuple_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_2d_zero_dim, test/test_nn.py::TestNN::test_interpolate_bilinear_2d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_shared_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_shared_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_skewed_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_skewed_2d_align_corners, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_skewed_2d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_scale_tuple_skewed_2d_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_tuple_2d, test/test_nn.py::TestNN::test_interpolate_bilinear_tuple_2d_align_corners, test/test_nn.py::TestNN::test_interpolate_bilinear_tuple_2d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_bilinear_tuple_2d_cuda, test/test_nn.py::TestNN::test_interpolate_buffer_overflow, test/test_nn.py::TestNN::test_interpolate_illegal_memory_access, test/test_nn.py::TestNN::test_interpolate_linear_1d, test/test_nn.py::TestNN::test_interpolate_linear_1d_align_corners, test/test_nn.py::TestNN::test_interpolate_linear_1d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_linear_1d_cuda, test/test_nn.py::TestNN::test_interpolate_linear_1d_zero_dim, test/test_nn.py::TestNN::test_interpolate_linear_1d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_linear_scale_1d, test/test_nn.py::TestNN::test_interpolate_linear_scale_1d_align_corners, test/test_nn.py::TestNN::test_interpolate_linear_scale_1d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_linear_scale_1d_cuda, test/test_nn.py::TestNN::test_interpolate_linear_tuple_1d, test/test_nn.py::TestNN::test_interpolate_linear_tuple_1d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_1d, test/test_nn.py::TestNN::test_interpolate_nearest_1d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_1d_zero_dim, test/test_nn.py::TestNN::test_interpolate_nearest_1d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_2d, test/test_nn.py::TestNN::test_interpolate_nearest_2d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_2d_launch_configs, test/test_nn.py::TestNN::test_interpolate_nearest_2d_launch_configs_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_2d_zero_dim, test/test_nn.py::TestNN::test_interpolate_nearest_2d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_3d, test/test_nn.py::TestNN::test_interpolate_nearest_3d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_3d_zero_dim, test/test_nn.py::TestNN::test_interpolate_nearest_3d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_scale_1d, test/test_nn.py::TestNN::test_interpolate_nearest_scale_1d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_scale_2d, test/test_nn.py::TestNN::test_interpolate_nearest_scale_2d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_scale_3d, test/test_nn.py::TestNN::test_interpolate_nearest_scale_3d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_1d, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_1d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_2d, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_2d_cuda, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_3d, test/test_nn.py::TestNN::test_interpolate_nearest_tuple_3d_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_3d, test/test_nn.py::TestNN::test_interpolate_trilinear_3d_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_3d_zero_dim, test/test_nn.py::TestNN::test_interpolate_trilinear_3d_zero_dim_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_scale_3d, test/test_nn.py::TestNN::test_interpolate_trilinear_scale_3d_align_corners, test/test_nn.py::TestNN::test_interpolate_trilinear_scale_3d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_scale_3d_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_tuple_3d, test/test_nn.py::TestNN::test_interpolate_trilinear_tuple_3d_align_corners, test/test_nn.py::TestNN::test_interpolate_trilinear_tuple_3d_align_corners_cuda, test/test_nn.py::TestNN::test_interpolate_trilinear_tuple_3d_cuda, test/test_nn.py::TestNN::test_interpolate_undefined_behavior_casting, test/test_nn.py::TestNN::test_kl_div_log_softmax_target, test/test_nn.py::TestNN::test_kl_div_with_diff_type, test/test_nn.py::TestNN::test_kl_div_with_diff_type_log_target, test/test_nn.py::TestNN::test_l1_loss_correct, test/test_nn.py::TestNN::test_layer_norm_backwards_eps, test/test_nn.py::TestNN::test_layer_norm_eps, test/test_nn.py::TestNN::test_layer_norm_grads_with_create_graph_flag, test/test_nn.py::TestNN::test_layer_norm_large_tensor, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_bias_weightCOO, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_bias_weightCSC, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_bias_weightCSR, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_bias_weightStrided, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_nobias_weightCOO, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_nobias_weightCSC, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_nobias_weightCSR, test/test_nn.py::TestNN::test_linear_autograd_device_cpu_nobias_weightStrided, test/test_nn.py::TestNN::test_linear_broadcasting, test/test_nn.py::TestNN::test_linear_raise_on_scalar_input, test/test_nn.py::TestNN::test_log_softmax_dim0, test/test_nn.py::TestNN::test_log_softmax_dim0_cuda, test/test_nn.py::TestNN::test_log_softmax_dim3, test/test_nn.py::TestNN::test_log_softmax_dim3_cuda, test/test_nn.py::TestNN::test_log_softmax_lastdim, test/test_nn.py::TestNN::test_log_softmax_lastdim_cuda, test/test_nn.py::TestNN::test_log_softmax_scalar, test/test_nn.py::TestNN::test_log_softmax_scalar_cuda, test/test_nn.py::TestNN::test_log_softmax_spatial, test/test_nn.py::TestNN::test_log_softmax_spatial_cuda, test/test_nn.py::TestNN::test_log_softmax_spatial_special, test/test_nn.py::TestNN::test_log_softmax_spatial_special_cuda, test/test_nn.py::TestNN::test_loss_equal_input_target_shape, test/test_nn.py::TestNN::test_margin_ranking_loss_margin_no_reduce, test/test_nn.py::TestNN::test_margin_ranking_loss_no_reduce, test/test_nn.py::TestNN::test_max_pool1d_invalid_output_size, test/test_nn.py::TestNN::test_module_apply_inplace_op, test/test_nn.py::TestNN::test_module_backcompat, test/test_nn.py::TestNN::test_module_super_init, test/test_nn.py::TestNN::test_module_to_argparse, test/test_nn.py::TestNN::test_modules, test/test_nn.py::TestNN::test_mse_loss_size_warning, test/test_nn.py::TestNN::test_multimarginloss_1d_input_0d_target_no_reduce, test/test_nn.py::TestNN::test_multimarginloss_1d_input_0d_target_no_reduce_cuda, test/test_nn.py::TestNN::test_named_children, test/test_nn.py::TestNN::test_named_modules, test/test_nn.py::TestNN::test_named_parameters_remove_duplicate, test/test_nn.py::TestNN::test_native_channel_shuffle_return_alias_of_self, test/test_nn.py::TestNN::test_nested_tensor_from_mask, test/test_nn.py::TestNN::test_nested_tensor_from_mask_error, test/test_nn.py::TestNN::test_no_grad, test/test_nn.py::TestNN::test_non_leaf_parameters, test/test_nn.py::TestNN::test_normalize, test/test_nn.py::TestNN::test_overwrite_module_params_on_conversion, test/test_nn.py::TestNN::test_pack_sequence_batch_sizes_throw, test/test_nn.py::TestNN::test_pad_scalar_error, test/test_nn.py::TestNN::test_padding_list, test/test_nn.py::TestNN::test_pairwise_distance, test/test_nn.py::TestNN::test_parameter_assignment, test/test_nn.py::TestNN::test_parameterlistdict_pickle, test/test_nn.py::TestNN::test_parameterlistdict_setting_attributes, test/test_nn.py::TestNN::test_parameters_and_named_parameters, test/test_nn.py::TestNN::test_parameters_to_vector, test/test_nn.py::TestNN::test_parse_to, test/test_nn.py::TestNN::test_partial_flat_weights, test/test_nn.py::TestNN::test_pdist, test/test_nn.py::TestNN::test_pdist_cpu_gradgrad_unimplemented, test/test_nn.py::TestNN::test_pdist_cuda_gradgrad_unimplemented, test/test_nn.py::TestNN::test_pdist_empty_col, test/test_nn.py::TestNN::test_pdist_empty_row, test/test_nn.py::TestNN::test_pdist_large, test/test_nn.py::TestNN::test_pdist_zeros, test/test_nn.py::TestNN::test_pickle_module_no_weights_only_warning, test/test_nn.py::TestNN::test_pixel_shuffle_nhwc_cpu, test/test_nn.py::TestNN::test_pixel_shuffle_unshuffle, test/test_nn.py::TestNN::test_pointwise_loss_broadcast, test/test_nn.py::TestNN::test_pointwise_loss_target_grad_none_reduction, test/test_nn.py::TestNN::test_projections_errors_on_gru_and_rnn, test/test_nn.py::TestNN::test_projections_lstm_args_check, test/test_nn.py::TestNN::test_projections_lstm_check_device, test/test_nn.py::TestNN::test_projections_lstm_initial_hidden_state, test/test_nn.py::TestNN::test_register_buffer_allows_overwriting_with_same_name, test/test_nn.py::TestNN::test_register_buffer_allows_tensor_like_object, test/test_nn.py::TestNN::test_register_buffer_raises_error_if_attr_exists, test/test_nn.py::TestNN::test_register_buffer_raises_error_if_name_is_not_string, test/test_nn.py::TestNN::test_register_buffer_raises_error_if_not_tensor, test/test_nn.py::TestNN::test_register_parameter_allows_overwriting_with_same_name, test/test_nn.py::TestNN::test_register_parameter_raises_error_if_attr_exists, test/test_nn.py::TestNN::test_register_parameter_raises_error_if_name_is_not_string, test/test_nn.py::TestNN::test_relu_inplace_on_view, test/test_nn.py::TestNN::test_repr, test/test_nn.py::TestNN::test_requires_grad_, test/test_nn.py::TestNN::test_rnn_args_check, test/test_nn.py::TestNN::test_rnn_check_device, test/test_nn.py::TestNN::test_rnn_initial_hidden_state, test/test_nn.py::TestNN::test_rnn_weight_norm, test/test_nn.py::TestNN::test_set_submodule, test/test_nn.py::TestNN::test_share_memory, test/test_nn.py::TestNN::test_smoothl1loss_intergral_target, test/test_nn.py::TestNN::test_smoothl1loss_negative_beta_not_supported, test/test_nn.py::TestNN::test_softmax_functional_dim0, test/test_nn.py::TestNN::test_softmax_functional_dim0_cuda, test/test_nn.py::TestNN::test_softmax_functional_dim3, test/test_nn.py::TestNN::test_softmax_functional_dim3_cuda, test/test_nn.py::TestNN::test_softmax_functional_scalar, test/test_nn.py::TestNN::test_softmax_functional_scalar_cuda, test/test_nn.py::TestNN::test_softmax_lastdim, test/test_nn.py::TestNN::test_softmax_lastdim_cuda, test/test_nn.py::TestNN::test_softmax_lastdim_dtype, test/test_nn.py::TestNN::test_softmax_lastdim_dtype_cuda, test/test_nn.py::TestNN::test_softmax_spatial, test/test_nn.py::TestNN::test_softmax_spatial_cuda, test/test_nn.py::TestNN::test_softmax_spatial_dtype, test/test_nn.py::TestNN::test_softmax_spatial_dtype_cuda, test/test_nn.py::TestNN::test_softmax_spatial_special, test/test_nn.py::TestNN::test_softmax_spatial_special_cuda, test/test_nn.py::TestNN::test_softmin, test/test_nn.py::TestNN::test_spectral_norm, test/test_nn.py::TestNN::test_spectral_norm_dim, test/test_nn.py::TestNN::test_spectral_norm_forward, test/test_nn.py::TestNN::test_spectral_norm_load_state_dict, test/test_nn.py::TestNN::test_spectral_norm_pickle, test/test_nn.py::TestNN::test_state_dict, test/test_nn.py::TestNN::test_swap_module_params_poisons_acc_grad, test/test_nn.py::TestNN::test_sync_batchnorm_accuracy_cuda, test/test_nn.py::TestNN::test_sync_batchnorm_backward_elemt, test/test_nn.py::TestNN::test_threshold_bfloat16_half, test/test_nn.py::TestNN::test_threshold_int, test/test_nn.py::TestNN::test_to, test/test_nn.py::TestNN::test_train_errors_for_invalid_mode, test/test_nn.py::TestNN::test_transformer_args_check, test/test_nn.py::TestNN::test_transformer_layer_args_check, test/test_nn.py::TestNN::test_transformerdecoder, test/test_nn.py::TestNN::test_transformerdecoderlayer, test/test_nn.py::TestNN::test_transformerdecoderlayer_gelu, test/test_nn.py::TestNN::test_triplet_margin_loss, test/test_nn.py::TestNN::test_triplet_margin_loss_no_reduce, test/test_nn.py::TestNN::test_triplet_margin_loss_swap, test/test_nn.py::TestNN::test_triplet_margin_loss_swap_no_reduce, test/test_nn.py::TestNN::test_type, test/test_nn.py::TestNN::test_unflatten, test/test_nn.py::TestNN::test_unflatten_invalid_arg, test/test_nn.py::TestNN::test_unfold_invalid_arg, test/test_nn.py::TestNN::test_upsamplingBilinear2d_spatial_invariance, test/test_nn.py::TestNN::test_upsamplingLinear1d, test/test_nn.py::TestNN::test_upsamplingLinear1d_spatial_invariance, test/test_nn.py::TestNN::test_upsamplingTrilinear3d_spatial_invariance, test/test_nn.py::TestNN::test_upsampling_bfloat16, test/test_nn.py::TestNN::test_upsampling_not_recompute_scale_factor, test/test_nn.py::TestNN::test_upsampling_small_scale, test/test_nn.py::TestNN::test_vector_to_parameters, test/test_nn.py::TestNN::test_weight_norm, test/test_nn.py::TestNN::test_weight_norm_pickle, test/test_nn.py::TestNN::test_weighted_huber_loss, test/test_nn.py::TestNN::test_weighted_l1_loss_with_weights, test/test_nn.py::TestNN::test_weighted_mse_loss, test/test_nn.py::TestNN::test_zero_grad, test/test_nn.py::TestFusionEval::test_fuse_module_eval_numerics, test/test_nn.py::TestConstantPadNd::test_constant_pad_nd, test/test_nn.py::TestConstantPadNd::test_preserves_memory_format, test/test_nn.py::TestAddRelu::test_add_relu, test/test_nn.py::TestAddRelu::test_add_relu_broadcasting, test/test_nn.py::TestFunctionalPickle::test_pickle_softsign, test/test_nn.py::TestFusionUtils::test_fuse_conv_bn_requires_grad, test/test_nn.py::TestFusionUtils::test_fuse_linear_bn_requires_grad, test/test_nn.py::TestUtils::test_consume_prefix_in_state_dict_if_present, test/test_nn.py::TestNNDeviceTypeCPU::test_BatchNorm_empty_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_Bilinear_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_cudnn_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_empty_target_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_mean_use_module_form_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_mean_use_module_form_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_none_use_module_form_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_none_use_module_form_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_sum_use_module_form_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_CTCLoss_no_batch_dim_reduction_sum_use_module_form_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GRU_grad_and_gradgrad_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_memory_format_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_numeric_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_GroupNorm_raises_error_if_one_value_per_group_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_InstanceNorm1d_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_InstanceNorm2d_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_InstanceNorm3d_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_LSTM_differentiable_backward_using_oneDNN_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_LSTM_differentiable_backward_using_oneDNN_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_LSTM_grad_and_gradgrad_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_LayerNorm_general_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_LayerNorm_numeric_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_LocalResponseNorm_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_empty_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_empty_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_race_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_race_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_MarginLoss_warnings_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad2d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad2d_large_deterministic_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad3d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad_empty_cpu_complex64, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad_empty_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_ReflectionPad_fails_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad1d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad2d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad3d_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad_empty_cpu_complex128, test/test_nn.py::TestNNDeviceTypeCPU::test_ReplicationPad_empty_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_TransformerDecoderLayer_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_TransformerDecoder_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_TransformerEncoderLayer_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_TransformerEncoder_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_Transformer_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_Unfold_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_activations_bfloat16_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_activations_bfloat16_half_cpu_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_activations_bfloat16_half_cpu_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_adaptiveavg_pool1d_shmem_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_2d_rotate0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_2d_rotate45_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_2d_rotate90_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_2d_rotateRandom_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_affine_3d_rotateRandom_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_avg_pool_large_tensor2_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_avg_pool_large_tensor_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_affine_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_affine_mixed_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_affine_mixed_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_eval_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_eval_mixed_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_eval_mixed_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_grad_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_large_batch_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_large_batch_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_simple_average_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_simple_average_mixed_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_simple_average_mixed_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_batchnorm_update_stats_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_channel_shuffle_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_error_if_nonfinite_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_0_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_1_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_2_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_4_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_False_norm_type_inf_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_0_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_1_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_2_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_4_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_foreach_True_norm_type_inf_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_multi_device_foreach_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_norm_multi_device_foreach_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_value_foreach_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_clip_grad_value_foreach_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_conv_empty_input_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_conv_empty_input_cpu_complex128, test/test_nn.py::TestNNDeviceTypeCPU::test_conv_empty_input_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_conv_empty_input_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_64bit_reduction_mean_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_64bit_reduction_none_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_64bit_reduction_sum_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_label_smoothing_consistent_index_target_and_probs_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_label_smoothing_errors_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_label_smoothing_weight_ignore_indices_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_label_smoothing_with_probs_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_large_tensor_reduction_mean_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_large_tensor_reduction_none_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_large_tensor_reduction_sum_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_2d_out_of_bounds_class_index_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_2d_out_of_bounds_class_index_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_index_target_unit_weights_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_one_hot_target_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_all_reductions_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_mean_weighted_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_mean_weighted_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_none_weighted_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_none_weighted_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_sum_weighted_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_no_batch_dim_reduction_sum_weighted_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_cross_entropy_loss_prob_target_unit_weights_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_cudnn_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_cudnn_tensor_cpu_length_cuda_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_cudnn_tensor_cuda_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_ctc_loss_error_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_device_mask_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_elu_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_elu_inplace_with_neg_alpha_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_fold_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_glu_bfloat16_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_bfloat16_precision_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_half_precision_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_index_2d_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_index_2d_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_index_3d_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_large_index_3d_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_nan_inf_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_grid_sample_nan_inf_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_groupnorm_nhwc_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_groupnorm_nhwc_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_groupnorm_nhwc_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_groupnorm_nhwc_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_gumbel_softmax_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_gumbel_softmax_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_hardsigmoid_grad_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_grad_corner_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_grad_corner_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_grad_corner_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_grad_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_hardswish_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_for_single_spatial_element_during_training_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm1d_no_batch_dim_False_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm1d_no_batch_dim_False_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm1d_no_batch_dim_True_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm1d_no_batch_dim_True_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm2d_no_batch_dim_False_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm2d_no_batch_dim_False_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm2d_no_batch_dim_True_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm2d_no_batch_dim_True_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm3d_no_batch_dim_False_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm3d_no_batch_dim_False_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm3d_no_batch_dim_True_affine_False_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_input_channels_is_not_num_features_InstanceNorm3d_no_batch_dim_True_affine_True_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_instancenorm_raises_error_if_less_than_one_value_per_channel_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_invalid_reduction_strings_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_layernorm_half_precision_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_layernorm_weight_bias_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_leaky_relu_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_leaky_relu_inplace_with_neg_slope_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_leaky_relu_inplace_with_zero_slope_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_linear_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_log_softmax_big_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_log_softmax_cpu_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_log_softmax_cpu_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_logsigmoid_out_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_lstmcell_backward_only_one_output_grad_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_TxT_layout_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_devices_parity_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_forward_with_nans_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_grad_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_lowp_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_lowp_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_mask_types_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_masked_softmax_transformer_layout_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_mish_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_module_to_empty_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_module_to_empty_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_module_to_empty_non_recursive_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_mse_loss_error_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_1d_input_1d_target_invalid_size_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_all_ignored_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_byte_target_matches_long_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_empty_tensor_reduction_mean_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_empty_tensor_reduction_none_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_empty_tensor_reduction_sum_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_invalid_target_dim_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_invalid_weights_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_large_tensor_reduction_mean_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_large_tensor_reduction_none_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_large_tensor_reduction_sum_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_mismatched_batch_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_out_of_bounds_ignore_index_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nll_loss_total_weight_is_zero_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nn_empty_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nn_scalars_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nn_scalars_reductions_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_nonlinearity_propagate_nan_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_one_hot_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_overwrite_module_params_on_conversion_cpu_device_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_pad_cpu_complex128, test/test_nn.py::TestNNDeviceTypeCPU::test_pad_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_prelu_backward_32bit_indexing_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_replicatepad_64bit_indexing_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_epsilon_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_epsilon_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_epsilon_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_epsilon_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_numeric_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_rmsnorm_numeric_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_rnn_fused_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_rnn_fused_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_rnn_retain_variables_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_save_lstm_compatibility_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_silu_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_skip_init_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_smooth_l1_loss_bfloat16_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_smooth_l1_loss_vs_huber_loss_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_smoothl1loss_backward_zero_beta_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_64bit_indexing_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_64bit_indexing_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_smem_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_unaligned_grad_output_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_unaligned_output_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_backward_without_fully_vectorized_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_bfloat16_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_cpu_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_cpu_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_double_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_forward_64bit_indexing_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softmax_results_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_softplus_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softplus_low_threshold_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softshrink_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softshrink_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_softshrink_negative_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_threshold_inplace_overlap_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_to_complex_cpu_complex128, test/test_nn.py::TestNNDeviceTypeCPU::test_to_complex_cpu_complex64, test/test_nn.py::TestNNDeviceTypeCPU::test_to_complex_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_transformerencoderlayer_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_transformerencoderlayer_fast_path_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_transformerencoderlayer_gelu_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_triplet_margin_with_distance_loss_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_triplet_margin_with_distance_loss_default_parity_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format0_align_corners_False_input_size_399_output_size_437_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format0_align_corners_False_input_size_403_output_size_377_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format0_align_corners_True_input_size_399_output_size_437_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format0_align_corners_True_input_size_403_output_size_377_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format1_align_corners_False_input_size_399_output_size_437_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format1_align_corners_False_input_size_403_output_size_377_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format1_align_corners_True_input_size_399_output_size_437_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiLinear2d_consistency_interp_size_bug_memory_format1_align_corners_True_input_size_403_output_size_377_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_False_mode_bicubic_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_False_mode_bicubic_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_False_mode_bilinear_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_False_mode_bilinear_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_True_mode_bicubic_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_True_mode_bicubic_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_True_mode_bilinear_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_False_align_corners_True_mode_bilinear_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_False_mode_bicubic_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_False_mode_bicubic_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_False_mode_bilinear_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_False_mode_bilinear_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_True_mode_bicubic_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_True_mode_bicubic_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_True_mode_bilinear_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_antialias_True_align_corners_True_mode_bilinear_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format0_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bicubic_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_False_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_False_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_3_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_32_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_False_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_False_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_restrided_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_consistency_memory_format1_mode_bilinear_antialias_True_align_corners_True_num_channels_5_output_size_600_check_as_unsqueezed_3d_tensor_True_non_contig_sliced_batch_size_5_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bicubic_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_bilinear_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest-exact_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_3_mode_nearest_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bicubic_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_bilinear_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest-exact_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_False_num_channels_5_mode_nearest_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bicubic_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_bilinear_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest-exact_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_3_mode_nearest_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bicubic_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_bilinear_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest-exact_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_float32_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_float64_cpu_float64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_int16_cpu_int16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_int32_cpu_int32, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_int64_cpu_int64, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_int8_cpu_int8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBiMode2d_nonsupported_dtypes_antialias_True_num_channels_5_mode_nearest_uint8_cpu_uint8, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBicubic2d_aa_correctness_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBicubic2d_aa_correctness_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBicubic2d_correctness_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBilinear2d_aa_correctness_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingBilinear2d_aa_correctness_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_correctness_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_correctness_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_launch_config_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest1d_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_correctness_memory_format0_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_correctness_memory_format0_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_correctness_memory_format1_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_correctness_memory_format1_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_launch_config_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_launch_fail_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_launch_rocm_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_memory_format0_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_memory_format0_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_memory_format1_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest2d_memory_format1_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_correctness_memory_format0_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_correctness_memory_format0_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_correctness_memory_format1_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_correctness_memory_format1_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_launch_config_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_memory_format0_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_memory_format0_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_memory_format1_mode_nearest-exact_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearest3d_memory_format1_mode_nearest_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact1d_correctness_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact1d_correctness_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact1d_rescale_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact2d_correctness_memory_format0_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact2d_correctness_memory_format0_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact2d_correctness_memory_format1_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact2d_correctness_memory_format1_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact3d_correctness_memory_format0_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact3d_correctness_memory_format0_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact3d_correctness_memory_format1_isize_10_osize_15_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingNearestExact3d_correctness_memory_format1_isize_20_osize_11_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingTrilinear3d_align_corners_False_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingTrilinear3d_align_corners_False_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingTrilinear3d_align_corners_True_memory_format0_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingTrilinear3d_align_corners_True_memory_format1_cpu, test/test_nn.py::TestNNDeviceTypeCPU::test_upsampling_64bit_indexing_channels_last_cpu_bfloat16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsampling_64bit_indexing_channels_last_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_upsamplingnearest2d_backward_64bit_indexing_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_variable_sequence_cpu_float32, test/test_nn.py::TestNNDeviceTypeCPU::test_warp_softmax_64bit_indexing_cpu_float16, test/test_nn.py::TestNNDeviceTypeCPU::test_warp_softmax_64bit_indexing_cpu_float32 2025-09-07T07:36:43.0435733Z 2025-09-07T07:36:43.0435948Z Running nn/test_pooling 1/1 ... [2025-09-07 07:36:42.811562] 2025-09-07T07:36:43.0436397Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:36:43.0437396Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_pooling.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:36:42.811562] 2025-09-07T07:37:25.2593931Z 2025-09-07T07:37:25.2594824Z nn/test_pooling 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_pooling_1.1_00eafb8f1824a555_.log 2025-09-07T07:37:25.2635266Z Running 111 items in this shard: test/nn/test_pooling.py::TestAvgPool::test_avg_pool1d_ceil_mode, test/nn/test_pooling.py::TestAvgPool::test_avg_pool2d_ceil_mode, test/nn/test_pooling.py::TestAvgPool::test_avg_pool3d_ceil_mode, test/nn/test_pooling.py::TestAvgPool::test_doubletensor_avg_pool2d, test/nn/test_pooling.py::TestAvgPool::test_doubletensor_avg_pool2d_with_divisor, test/nn/test_pooling.py::TestAvgPool::test_doubletensor_avg_pool3d, test/nn/test_pooling.py::TestAvgPool::test_doubletensor_avg_pool3d_with_divisor, test/nn/test_pooling.py::TestPoolingNN::test_MaxUnpool2d_output_size, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_avg_pooling_nhwc_overflow, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_avg_pooling_overflow, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_avg_nhwc, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_avg_nhwc_launch_config_backward, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_avg_nhwc_launch_config_forward, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_avg_nhwc_non_contiguous, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_lower_precision, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_size_none, test/nn/test_pooling.py::TestPoolingNN::test_adaptive_pooling_size_overflow, test/nn/test_pooling.py::TestPoolingNN::test_max_unpool, test/nn/test_pooling.py::TestPoolingNN::test_max_unpool2d_nhwc_cpu, test/nn/test_pooling.py::TestPoolingNN::test_max_unpool3d_input_check, test/nn/test_pooling.py::TestPoolingNN::test_quantized_max_pool1d_empty_kernel, test/nn/test_pooling.py::TestPoolingNN::test_quantized_max_pool3d, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AdaptiveMaxPool1d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AdaptiveMaxPool2d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AdaptiveMaxPool3d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AdaptiveMaxPool_zero_batch_dim_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AvgPool2d_empty_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_AvgPool3d_backward_after_cat_dim1_device_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool2d_zero_batch_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool2d_zero_out_size_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool2d_zero_samples_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool3d_errors_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool3d_zero_batch_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool3d_zero_out_size_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_FractionalMaxPool3d_zero_samples_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxPool1d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxPool2d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxPool3d_indices_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxPool_zero_batch_dim_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case10_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case1_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case2_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case3_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case4_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case5_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case6_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case7_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case8_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_index_errors_case9_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_MaxUnpool_zero_batch_dim_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_avg_pool2d_output_size_one_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_avg_pool3d_output_size_one_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_avg_pooling_backward_fails_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_max_pooling_backward_fails_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pool_odd_size_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_empty_output_size_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_empty_output_size_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_max_nhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_max_nhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_int16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_int32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_int64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_int8, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_no_suppot_input_cpu_uint8, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_zero_batch_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_adaptive_pooling_zero_batch_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_avg_pool2d_nhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_avg_pool2d_nhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_avg_pool2d_reduced_floating_cpu_bfloat16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_avg_pool2d_reduced_floating_cpu_float16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_fractional_max_pool2d_backward_fails_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_fractional_max_pool2d_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_fractional_max_pool3d_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_fractional_max_pool_nan_inf_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool1d_corner_cases_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool1d_corner_cases_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool1d_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool1d_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_corner_cases_cpu_int32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_corner_cases_cpu_int64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_indices_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_nhwc_cpu_bfloat16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_nhwc_cpu_float16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_nhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_nhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool2d_with_indices_backward_fails_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool3d_ndhwc_cpu_bfloat16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool3d_ndhwc_cpu_float16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool3d_ndhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool3d_ndhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool_bfloat16_half_cpu_bfloat16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool_bfloat16_half_cpu_float16, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_max_pool_nan_inf_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_maxpool3d_non_square_backward_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_maxpool_indices_no_batch_dim_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pool3d_large_size_int64_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pool3d_size_one_feature_dim_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pool_invalid_size_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pool_large_size_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_bfloat16_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_large_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_max_nhwc_cpu_float32, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_max_nhwc_cpu_float64, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_avg_pooling_dims_1_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_avg_pooling_dims_2_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_avg_pooling_dims_3_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_max_pooling_dims_1_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_max_pooling_dims_2_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_shape_kernel_max_pooling_dims_3_cpu, test/nn/test_pooling.py::TestPoolingNNDeviceTypeCPU::test_pooling_zero_stride_cpu 2025-09-07T07:37:25.2675341Z 2025-09-07T07:37:25.2675590Z Running test_multiprocessing_spawn 1/1 ... [2025-09-07 07:37:25.259872] 2025-09-07T07:37:25.2676110Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:37:25.2677163Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_multiprocessing_spawn.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:37:25.260443] 2025-09-07T07:39:04.4588672Z 2025-09-07T07:39:04.4589619Z test_multiprocessing_spawn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_multiprocessing_spawn_1.1_3267b9af2e6635a8_.log 2025-09-07T07:39:04.4600050Z Running 31 items in this shard: test/test_multiprocessing_spawn.py::SpawnTest::test_exception_all, test/test_multiprocessing_spawn.py::SpawnTest::test_exception_raises, test/test_multiprocessing_spawn.py::SpawnTest::test_exception_single, test/test_multiprocessing_spawn.py::SpawnTest::test_first_argument_index, test/test_multiprocessing_spawn.py::SpawnTest::test_signal_raises, test/test_multiprocessing_spawn.py::SpawnTest::test_success, test/test_multiprocessing_spawn.py::SpawnTest::test_success_first_then_exception, test/test_multiprocessing_spawn.py::SpawnTest::test_success_non_blocking, test/test_multiprocessing_spawn.py::SpawnTest::test_terminate_exit_grace_period0, test/test_multiprocessing_spawn.py::SpawnTest::test_terminate_exit_grace_period_20, test/test_multiprocessing_spawn.py::SpawnTest::test_terminate_signal, test/test_multiprocessing_spawn.py::ForkTest::test_exception_all, test/test_multiprocessing_spawn.py::ForkTest::test_exception_single, test/test_multiprocessing_spawn.py::ForkTest::test_first_argument_index, test/test_multiprocessing_spawn.py::ForkTest::test_success, test/test_multiprocessing_spawn.py::ForkTest::test_success_first_then_exception, test/test_multiprocessing_spawn.py::ForkTest::test_success_non_blocking, test/test_multiprocessing_spawn.py::ForkTest::test_terminate_exit_grace_period0, test/test_multiprocessing_spawn.py::ForkTest::test_terminate_exit_grace_period_20, test/test_multiprocessing_spawn.py::ForkTest::test_terminate_signal, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_exception_all, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_exception_single, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_first_argument_index, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_success, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_success_first_then_exception, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_success_non_blocking, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_terminate_exit_grace_period0, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_terminate_exit_grace_period_20, test/test_multiprocessing_spawn.py::ParallelForkServerShouldWorkTest::test_terminate_signal, test/test_multiprocessing_spawn.py::ParallelForkServerPerfTest::test_forkserver_perf, test/test_multiprocessing_spawn.py::ErrorTest::test_errors_pickleable 2025-09-07T07:39:04.4609708Z 2025-09-07T07:39:04.4609885Z Running nn/test_convolution 1/1 ... [2025-09-07 07:39:04.448955] 2025-09-07T07:39:04.4610282Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:39:04.4611315Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_convolution.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:39:04.448955] 2025-09-07T07:39:35.5411682Z 2025-09-07T07:39:35.5412536Z nn/test_convolution 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_convolution_1.1_e1817703d58e6e55_.log 2025-09-07T07:39:35.5731822Z Running 598 items in this shard: test/nn/test_convolution.py::TestConvolutionNN::test_Conv1d_module_same_padding, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_1x1, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_OneDNN, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_backward_twice, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_groups_nobias, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_groups_nobias_v2, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_inconsistent_types, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_inconsistent_types_on_GPU_with_cudnn, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_inconsistent_types_on_GPU_without_cudnn, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_missing_argument, test/nn/test_convolution.py::TestConvolutionNN::test_Conv2d_module_same_padding, test/nn/test_convolution.py::TestConvolutionNN::test_Conv3d_groups_nobias, test/nn/test_convolution.py::TestConvolutionNN::test_Conv3d_groups_wbias, test/nn/test_convolution.py::TestConvolutionNN::test_Conv3d_module_same_padding, test/nn/test_convolution.py::TestConvolutionNN::test_ConvTranspose2d_half_cublas_gemm, test/nn/test_convolution.py::TestConvolutionNN::test_ConvTranspose2d_output_size, test/nn/test_convolution.py::TestConvolutionNN::test_ConvTranspose2d_output_size_downsample_upsample, test/nn/test_convolution.py::TestConvolutionNN::test_ConvTranspose3d_correct_output_size, test/nn/test_convolution.py::TestConvolutionNN::test_conv1d_issue_120547, test/nn/test_convolution.py::TestConvolutionNN::test_conv2d_discontiguous_weight, test/nn/test_convolution.py::TestConvolutionNN::test_conv3d_issue_120406, test/nn/test_convolution.py::TestConvolutionNN::test_conv_backcompat, test/nn/test_convolution.py::TestConvolutionNN::test_conv_cudnn_memory_layout_dominance, test/nn/test_convolution.py::TestConvolutionNN::test_conv_invalid_groups, test/nn/test_convolution.py::TestConvolutionNN::test_conv_modules_raise_error_on_incorrect_input_size, test/nn/test_convolution.py::TestConvolutionNN::test_conv_padding_mode, test/nn/test_convolution.py::TestConvolutionNN::test_conv_shapecheck, test/nn/test_convolution.py::TestConvolutionNN::test_conv_tbc, test/nn/test_convolution.py::TestConvolutionNN::test_cudnn_non_contiguous, test/nn/test_convolution.py::TestConvolutionNN::test_cudnn_noncontiguous_weight, test/nn/test_convolution.py::TestConvolutionNN::test_cudnn_not_mutate_stride, test/nn/test_convolution.py::TestConvolutionNN::test_functional_grad_conv, test/nn/test_convolution.py::TestConvolutionNN::test_functional_grad_conv2d, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv1d_input, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv1d_weight, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv2d_input, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv2d_weight, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv3d_input, test/nn/test_convolution.py::TestConvolutionNN::test_grad_conv3d_weight, test/nn/test_convolution.py::TestConvolutionNN::test_grouped_conv_cudnn_nhwc_support, test/nn/test_convolution.py::TestConvolutionNN::test_invalid_conv1d, test/nn/test_convolution.py::TestConvolutionNN::test_invalid_conv2d, test/nn/test_convolution.py::TestConvolutionNN::test_invalid_conv3d, test/nn/test_convolution.py::TestConvolutionNN::test_mismatch_shape_conv2d, test/nn/test_convolution.py::TestConvolutionNN::test_nnpack_conv, test/nn/test_convolution.py::TestConvolutionNN::test_permute_conv2d_issue_120211, test/nn/test_convolution.py::TestConvolutionNN::test_thnn_conv_strided_padded_dilated, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_backward_depthwise_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_backward_depthwise_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_depthwise_naive_groups_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_depthwise_naive_groups_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_depthwise_naive_groups_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_1_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_2_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_deterministic_cudnn_dilation_3_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_large_workspace_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_large_workspace_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_large_workspace_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_naive_groups_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv2d_size_1_kernel_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv3d_depthwise_naive_groups_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv3d_depthwise_naive_groups_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_Conv3d_depthwise_naive_groups_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_ConvTranspose2d_large_output_padding_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_ConvTranspose2d_large_output_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_ConvTranspose2d_size_1_kernel_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_ConvTranspose3d_size_1_kernel_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_contig_wrong_stride_cudnn_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_same_padding_backward_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_same_padding_backward_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_same_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_same_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_valid_padding_backward_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_valid_padding_backward_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_valid_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_valid_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_vs_scipy_mode_same_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_vs_scipy_mode_same_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_vs_scipy_mode_valid_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv1d_vs_scipy_mode_valid_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_no_grad_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_same_padding_backward_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_same_padding_backward_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_same_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_same_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_valid_padding_backward_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_valid_padding_backward_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_valid_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_valid_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_vs_scipy_mode_same_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_vs_scipy_mode_same_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_vs_scipy_mode_valid_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv2d_vs_scipy_mode_valid_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_64bit_indexing_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_same_padding_backward_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_same_padding_backward_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_same_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_same_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_valid_padding_backward_cpu_complex128, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_valid_padding_backward_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_valid_padding_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_valid_padding_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_vs_scipy_mode_same_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_vs_scipy_mode_same_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_vs_scipy_mode_valid_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv3d_vs_scipy_mode_valid_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_convTranspose_empty_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cuda_depthwise3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn1d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn2d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_cudnn3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_batch_channel3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_empty_channel3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen1d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen2d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen3d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_miopen_depthwise3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_cpu_input_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn1d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_cpu_input_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn2d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_cpu_input_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn3d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_batch_channel3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_mkldnn_empty_channel3d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_dilated_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow1d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_dilated_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow2d_transposed_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cpu_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_cuda_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_False_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_False_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_False_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_False_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_True_strided_False_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_True_strided_False_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_True_strided_True_contiguous_False_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_backend_slow3d_dilated_has_bias_True_strided_True_contiguous_True_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_contiguous_for_oneDNN_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_mismatch_memory_format_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_ndhwc_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_ndhwc_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_support_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_cudnn_nhwc_support_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_groups_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_no_bias_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_stride_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_double_backward_strided_with_3D_input_and_weight_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_empty_channel_cpu_complex64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_empty_channel_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_ic1_channels_last_for_oneDNN_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_large_batch_1_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_large_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_large_nosplit_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_noncontig_weights_and_bias_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_noncontig_weights_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_thnn_nhwc_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_thnn_nhwc_cpu_float64, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_transpose_with_output_size_and_no_batch_dim_ConvTranspose2d_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_transpose_with_output_size_and_no_batch_dim_ConvTranspose3d_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_conv_transposed_large_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_convert_conv2d_weight_memory_format_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_convert_conv3d_weight_memory_format_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_cudnn_convolution_add_relu_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_cudnn_convolution_add_relu_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_cudnn_convolution_relu_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_cudnn_convolution_relu_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_depthwise_conv_64bit_indexing_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_group_convTranspose_empty_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_group_conv_empty_cpu, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_noncontig_conv_grad_cpu_float16, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_noncontig_conv_grad_cpu_float32, test/nn/test_convolution.py::TestConvolutionNNDeviceTypeCPU::test_noncontig_conv_grad_cpu_float64 2025-09-07T07:39:35.6038085Z 2025-09-07T07:39:35.6038369Z Running test_overrides 1/1 ... [2025-09-07 07:39:35.540990] 2025-09-07T07:39:35.6038735Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:39:35.6039680Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_overrides.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:39:35.540990] 2025-09-07T07:39:45.5758137Z 2025-09-07T07:39:45.5758931Z test_overrides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_overrides_1.1_a69043a0a2c263e9_.log 2025-09-07T07:39:45.6213981Z Running 1478 items in this shard: test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_H___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_T___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__backward_hooks___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__base___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__cdata___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__grad___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__grad_fn___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__post_accumulate_grad_hooks___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase__version___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_data___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_device___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_dtype___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_grad___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_grad_fn___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_imag___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_cpu___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_cuda___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_ipu___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_leaf___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_maia___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_meta___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_mkldnn___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_mps___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_mtia___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_nested___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_quantized___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_sparse___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_sparse_csr___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_vulkan___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_xla___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_is_xpu___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_itemsize___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_layout___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_mH___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_mT___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_name___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_names___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_nbytes___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_ndim___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_output_nr___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_real___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_requires_grad___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_retains_grad___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_shape___get__, test/test_overrides.py::TestTorchFunctionOverride::test_TensorBase_volatile___get__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___add__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___and__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___array__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___array_wrap__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___bool__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___complex__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___contains__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___cuda_array_interface_____get__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___deepcopy__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___div__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___dlpack__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___dlpack_device__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___eq__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___float__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___floordiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___format__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ge__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___getitem__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___gt__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___iadd__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___iand__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___idiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ifloordiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ilshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___imod__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___imul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___index__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___int__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___invert__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ior__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___irshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___isub__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ixor__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___le__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___len__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___long__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___lshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___lt__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___matmul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___mod__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___mul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ne__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___nonzero__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___or__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___radd__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rand__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rdiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___reduce_ex__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___repr__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___reversed__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rfloordiv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rlshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rmatmul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rmod__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rmul__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___ror__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rpow__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rrshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rshift__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rsub__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___rxor__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___setitem__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___setstate__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___sub__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___truediv__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor___xor__, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__autocast_to_full_precision, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__autocast_to_reduced_precision, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__clear_non_serializable_cached_data, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__coalesced_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__dimI, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__dimV, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__is_view, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__nested_tensor_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__nested_tensor_storage_offsets, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__nested_tensor_strides, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__nnz, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__sparse_mask_projection, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__to_dense, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__update_names, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor__values, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_abs, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_abs_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_absolute, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_absolute_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_acos, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_acos_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_acosh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_acosh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_add, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_add_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addbmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addbmm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addcdiv, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addcdiv_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addcmul, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addcmul_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addmm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addmv, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addmv_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_addr_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_adjoint, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_align_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_align_to, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_all, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_allclose, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_amax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_amin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_aminmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_angle, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_any, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_apply_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arccos, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arccos_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arccosh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arccosh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arcsin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arcsin_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arcsinh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arcsinh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctan, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctan2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctan2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctan_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctanh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_arctanh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_argmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_argmin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_argsort, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_argwhere, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_as_strided, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_as_strided_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_as_strided_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_asin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_asin_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_asinh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_asinh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atan, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atan2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atan2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atan_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atanh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_atanh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_backward, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_baddbmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_baddbmm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bernoulli, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bernoulli_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bfloat16, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bincount, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_and, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_and_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_left_shift, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_left_shift_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_not, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_not_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_or, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_or_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_right_shift, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_right_shift_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_xor, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bitwise_xor_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_bool, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_broadcast_to, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_byte, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cauchy_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ccol_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cdouble, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ceil, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ceil_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cfloat, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_chalf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_char, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cholesky, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cholesky_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cholesky_solve, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_chunk, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_max, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_max_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_min, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clamp_min_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clip, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clip_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_clone, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_coalesce, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_col_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_conj, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_conj_physical, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_conj_physical_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_contiguous, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_copy_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_copysign, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_copysign_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_corrcoef, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cos, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cos_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cosh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cosh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_count_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cov, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cpu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cross, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_crow_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cuda, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cummax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cummin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cumprod, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cumprod_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cumsum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_cumsum_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_data_ptr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_deg2rad, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_deg2rad_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dense_dim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dequantize, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_det, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_detach, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_detach_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diag, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diag_embed, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diagflat, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diagonal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diagonal_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_diff, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_digamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_digamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dim_order, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dist, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_div, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_div_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_divide, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_divide_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dot, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_double, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_dsplit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_element_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_eq, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_eq_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_equal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erf_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erfc, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erfc_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erfinv, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_erfinv_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exp2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exp2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exp_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_expand, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_expand_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_expm1, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_expm1_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_exponential_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fill_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fill_diagonal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fix, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fix_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_flatten, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_flip, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fliplr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_flipud, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_float, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_float_power, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_float_power_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_floor, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_floor_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_floor_divide, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_floor_divide_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fmin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fmod, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_fmod_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_frac, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_frac_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_frexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gather, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gcd, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gcd_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ge, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ge_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_geometric_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_geqrf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ger, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_get_device, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_greater, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_greater_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_greater_equal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_greater_equal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gt, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_gt_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_half, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hardshrink, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_has_names, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hash_tensor, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_heaviside, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_heaviside_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_histc, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_histogram, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hsplit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hypot, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_hypot_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_i0, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_i0_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_igamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_igamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_igammac, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_igammac_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_add, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_add_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_copy, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_copy_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_fill, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_fill_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_put, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_put_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_reduce_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_index_select, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_inner, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_int, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_int_repr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ipu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_coalesced, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_complex, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_conj, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_contiguous, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_distributed, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_floating_point, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_inference, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_neg, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_pinned, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_same_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_set_to, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_shared, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_is_signed, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isclose, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isfinite, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isinf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isnan, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isneginf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isposinf, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_isreal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_istft, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_item, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_kron, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_kthvalue, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lcm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lcm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ldexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ldexp_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_le, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_le_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lerp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lerp_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_less, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_less_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_less_equal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_less_equal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lgamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lgamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log10, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log10_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log1p, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log1p_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log_normal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_log_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logaddexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logaddexp2, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logcumsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logdet, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_and, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_and_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_not, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_not_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_or, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_or_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_xor, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logical_xor_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logit_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_logsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_long, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lt, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lt_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_lu_solve, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_map2_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_map_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_fill, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_fill_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_scatter_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_masked_select, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_matmul, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_matrix_exp, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_matrix_power, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_max, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_maximum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mean, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_median, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_min, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_minimum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mode, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_module_load, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_moveaxis, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_movedim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_msort, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mtia, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mul, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mul_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_multinomial, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_multiply, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_multiply_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mv, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mvlgamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_mvlgamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nan_to_num, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nan_to_num_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nanmean, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nanmedian, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nanquantile, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nansum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_narrow, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_narrow_copy, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ndimension, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ne, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ne_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_neg, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_neg_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_negative, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_negative_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nelement, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nextafter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nextafter_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_nonzero_static, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_norm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_normal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_not_equal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_not_equal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_numel, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_numpy, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_orgqr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ormqr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_outer, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_permute, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_pin_memory, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_pinverse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_polygamma, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_polygamma_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_positive, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_pow, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_pow_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_prelu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_prod, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_put, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_put_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_per_channel_axis, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_per_channel_scales, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_per_channel_zero_points, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_scale, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_q_zero_point, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_qr, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_qscheme, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_quantile, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rad2deg, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rad2deg_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_random_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_ravel, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_reciprocal, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_reciprocal_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_record_stream, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_refine_names, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_register_hook, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_register_post_accumulate_grad_hook, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_relu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_relu_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_remainder, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_remainder_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rename, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rename_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_renorm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_renorm_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_repeat, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_repeat_interleave, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_requires_grad_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_reshape, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_reshape_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize_as_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resize_as_sparse_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resolve_conj, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_resolve_neg, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_retain_grad, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_roll, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rot90, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_round, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_round_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_row_indices, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rsqrt, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_rsqrt_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_add, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_add_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_scatter_reduce_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_select, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_select_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_set_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sgn, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sgn_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_share_memory_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_short, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sigmoid, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sigmoid_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sign, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sign_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_signbit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sin, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sin_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sinc, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sinc_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sinh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sinh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_slice_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_slice_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_slogdet, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_smm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sort, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sparse_dim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sparse_mask, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sparse_resize_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sparse_resize_and_clear_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_split, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_split_with_sizes, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sqrt, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sqrt_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_square, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_square_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_squeeze, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_squeeze_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sspaddmm, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_std, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_stft, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_storage, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_storage_offset, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_storage_type, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sub, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sub_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_subtract, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_subtract_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sum, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_sum_to_size, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_svd, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_swapaxes, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_swapaxes_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_swapdims, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_swapdims_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_t, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_t_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_take, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_take_along_dim, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tan, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tan_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tanh, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tanh_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tensor_split, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tile, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_to, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_to_dense, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_to_mkldnn, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_to_sparse, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tolist, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_topk, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_trace, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_transpose, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_transpose_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_triangular_solve, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tril, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_tril_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_triu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_triu_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_true_divide, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_true_divide_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_trunc, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_trunc_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_type, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_type_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unbind, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unfold, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_uniform_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unique, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unique_consecutive, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsafe_chunk, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsafe_split, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsafe_split_with_sizes, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsqueeze, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_unsqueeze_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_untyped_storage, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_values, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_var, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_vdot, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_view, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_view_as, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_vsplit, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_where, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_xlogy, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_xlogy_, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_xpu, test/test_overrides.py::TestTorchFunctionOverride::test_Tensor_zero_, test/test_overrides.py::TestTorchFunctionOverride::test_base, test/test_overrides.py::TestTorchFunctionOverride::test_dtype_override, test/test_overrides.py::TestTorchFunctionOverride::test_grad, test/test_overrides.py::TestTorchFunctionOverride::test_has_torch_function_non_sequence, test/test_overrides.py::TestTorchFunctionOverride::test_mean_semantics, test/test_overrides.py::TestTorchFunctionOverride::test_mm_semantics, test/test_overrides.py::TestTorchFunctionOverride::test_pow_rpow, test/test_overrides.py::TestTorchFunctionOverride::test_precedence_semantics, test/test_overrides.py::TestTorchFunctionOverride::test_tensor_subclass_propagation, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_fft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_fft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_fftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_fftshift, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_hfft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_hfft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_hfftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ifft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ifft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ifftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ifftshift, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ihfft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ihfft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_ihfftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_irfft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_irfft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_irfftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_rfft, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_rfft2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__fft_fft_rfftn, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_cholesky, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_cholesky_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_cond, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_cross, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_det, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_diagonal, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_eig, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_eigh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_eigvals, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_eigvalsh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_householder_product, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_inv, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_inv_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_ldl_factor, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_ldl_factor_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_ldl_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lstsq, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lu, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lu_factor, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lu_factor_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_lu_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matmul, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matrix_exp, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matrix_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matrix_power, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_matrix_rank, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_multi_dot, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_pinv, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_qr, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_slogdet, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_solve_ex, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_solve_triangular, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_svd, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_svdvals, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_tensorinv, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_tensorsolve, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_vander, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_vecdot, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__linalg_linalg_vector_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_avg_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_avg_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_gelu, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_linear, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_log_sigmoid, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_one_hot, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_scaled_dot_product_attention, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_softplus, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__nn_softshrink, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_airy_ai, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_bessel_j0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_bessel_j1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_bessel_y0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_bessel_y1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_chebyshev_polynomial_t, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_chebyshev_polynomial_u, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_chebyshev_polynomial_v, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_chebyshev_polynomial_w, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_digamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_entr, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_erf, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_erfc, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_erfcx, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_erfinv, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_exp2, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_expit, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_expm1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_gammainc, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_gammaincc, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_gammaln, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_hermite_polynomial_h, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_hermite_polynomial_he, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_i0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_i0e, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_i1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_i1e, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_laguerre_polynomial_l, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_legendre_polynomial_p, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_log1p, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_log_ndtr, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_log_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_logit, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_logsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_modified_bessel_i0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_modified_bessel_i1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_modified_bessel_k0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_modified_bessel_k1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_multigammaln, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_ndtr, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_ndtri, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_polygamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_psi, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_round, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_scaled_modified_bessel_k0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_scaled_modified_bessel_k1, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_shifted_chebyshev_polynomial_t, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_shifted_chebyshev_polynomial_u, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_shifted_chebyshev_polynomial_v, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_shifted_chebyshev_polynomial_w, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_sinc, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_spherical_bessel_j0, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_xlog1py, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_xlogy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__C__special_special_zeta, test/test_overrides.py::TestTorchFunctionOverride::test_torch__assert_async, test/test_overrides.py::TestTorchFunctionOverride::test_torch__conj_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__functional_assert_async, test/test_overrides.py::TestTorchFunctionOverride::test_torch__fused_rms_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch__fw_primal_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__lobpcg_lobpcg, test/test_overrides.py::TestTorchFunctionOverride::test_torch__lowrank_pca_lowrank, test/test_overrides.py::TestTorchFunctionOverride::test_torch__lowrank_svd_lowrank, test/test_overrides.py::TestTorchFunctionOverride::test_torch__make_dual_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__native_batch_norm_legit, test/test_overrides.py::TestTorchFunctionOverride::test_torch__neg_view_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__reshape_alias_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__rowwise_prune, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sparse_broadcast_to_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_acos, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_asin, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_atan, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_cos, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_cosh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_sin, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_sinh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_sqrt, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_tan, test/test_overrides.py::TestTorchFunctionOverride::test_torch__sym_tanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch__values_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch__wrapped_linear_prepack, test/test_overrides.py::TestTorchFunctionOverride::test_torch__wrapped_quantized_linear_prepacked, test/test_overrides.py::TestTorchFunctionOverride::test_torch_abs, test/test_overrides.py::TestTorchFunctionOverride::test_torch_absolute, test/test_overrides.py::TestTorchFunctionOverride::test_torch_acos, test/test_overrides.py::TestTorchFunctionOverride::test_torch_acosh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_adaptive_avg_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_adaptive_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_add, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addbmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addcdiv, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addcmul, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addmv, test/test_overrides.py::TestTorchFunctionOverride::test_torch_addr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_adjoint, test/test_overrides.py::TestTorchFunctionOverride::test_torch_affine_grid_generator, test/test_overrides.py::TestTorchFunctionOverride::test_torch_alias_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_all, test/test_overrides.py::TestTorchFunctionOverride::test_torch_allclose, test/test_overrides.py::TestTorchFunctionOverride::test_torch_alpha_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_amax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_amin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_aminmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_angle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_any, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arccos, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arccosh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arcsin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arcsinh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arctan, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arctan2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_arctanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_argmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_argmin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_argsort, test/test_overrides.py::TestTorchFunctionOverride::test_torch_argwhere, test/test_overrides.py::TestTorchFunctionOverride::test_torch_as_strided_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_as_strided_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_asin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_asinh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_atan, test/test_overrides.py::TestTorchFunctionOverride::test_torch_atan2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_atanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_avg_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_baddbmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_backward_elemt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_backward_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_elemt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_gather_stats, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_gather_stats_with_counts, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_stats, test/test_overrides.py::TestTorchFunctionOverride::test_torch_batch_norm_update_stats, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bernoulli, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bilinear, test/test_overrides.py::TestTorchFunctionOverride::test_torch_binary_cross_entropy_with_logits, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bincount, test/test_overrides.py::TestTorchFunctionOverride::test_torch_binomial, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_and, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_left_shift, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_not, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_or, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_right_shift, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bitwise_xor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_broadcast_to, test/test_overrides.py::TestTorchFunctionOverride::test_torch_bucketize, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cat, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ccol_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ceil, test/test_overrides.py::TestTorchFunctionOverride::test_torch_celu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_channel_shuffle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cholesky, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cholesky_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cholesky_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch_choose_qparams_optimized, test/test_overrides.py::TestTorchFunctionOverride::test_torch_chunk, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clamp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clamp_max, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clamp_min, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clip, test/test_overrides.py::TestTorchFunctionOverride::test_torch_clone, test/test_overrides.py::TestTorchFunctionOverride::test_torch_col_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_column_stack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_combinations, test/test_overrides.py::TestTorchFunctionOverride::test_torch_complex, test/test_overrides.py::TestTorchFunctionOverride::test_torch_concat, test/test_overrides.py::TestTorchFunctionOverride::test_torch_concatenate, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conj, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conj_physical, test/test_overrides.py::TestTorchFunctionOverride::test_torch_constant_pad_nd, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv_tbc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv_transpose1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv_transpose2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_conv_transpose3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_convolution, test/test_overrides.py::TestTorchFunctionOverride::test_torch_copysign, test/test_overrides.py::TestTorchFunctionOverride::test_torch_corrcoef, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cos, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cosh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cosine_embedding_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cosine_similarity, test/test_overrides.py::TestTorchFunctionOverride::test_torch_count_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cov, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cross, test/test_overrides.py::TestTorchFunctionOverride::test_torch_crow_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ctc_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cummax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cummin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cumprod, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cumsum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_cumulative_trapezoid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_deg2rad, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dequantize, test/test_overrides.py::TestTorchFunctionOverride::test_torch_det, test/test_overrides.py::TestTorchFunctionOverride::test_torch_detach, test/test_overrides.py::TestTorchFunctionOverride::test_torch_detach_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diag_embed, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diagflat, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diagonal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diagonal_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diagonal_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_diff, test/test_overrides.py::TestTorchFunctionOverride::test_torch_digamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dist, test/test_overrides.py::TestTorchFunctionOverride::test_torch_div, test/test_overrides.py::TestTorchFunctionOverride::test_torch_divide, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dot, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dsmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dsplit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_dstack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_embedding, test/test_overrides.py::TestTorchFunctionOverride::test_torch_embedding_bag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_empty_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_eq, test/test_overrides.py::TestTorchFunctionOverride::test_torch_equal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_erf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_erfc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_erfinv, test/test_overrides.py::TestTorchFunctionOverride::test_torch_exp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_exp2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_expand_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_expm1, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fake_quantize_per_channel_affine, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fake_quantize_per_tensor_affine, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_fp16_weight, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_fp16_weight_fp32_activation, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_int8_weight, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_int8_weight_fp32_activation, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_linear_quantize_weight, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_pack_gemm_matrix_fp16, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fbgemm_pack_quantized_matrix, test/test_overrides.py::TestTorchFunctionOverride::test_torch_feature_alpha_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_feature_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fix, test/test_overrides.py::TestTorchFunctionOverride::test_torch_flatten, test/test_overrides.py::TestTorchFunctionOverride::test_torch_flip, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fliplr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_flipud, test/test_overrides.py::TestTorchFunctionOverride::test_torch_float_power, test/test_overrides.py::TestTorchFunctionOverride::test_torch_floor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_floor_divide, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fmin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fmod, test/test_overrides.py::TestTorchFunctionOverride::test_torch_frac, test/test_overrides.py::TestTorchFunctionOverride::test_torch_frexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_frobenius_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_full_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_function_empty_lists, test/test_overrides.py::TestTorchFunctionOverride::test_torch_function_in_float_lists, test/test_overrides.py::TestTorchFunctionOverride::test_torch_function_in_lists, test/test_overrides.py::TestTorchFunctionOverride::test_torch_function_in_scalar_lists, test/test_overrides.py::TestTorchFunctionOverride::test_torch_function_mixed_lists, test/test_overrides.py::TestTorchFunctionOverride::test_torch_function_nested_tuple_getitem, test/test_overrides.py::TestTorchFunctionOverride::test_torch_function_not_first_in_list, test/test_overrides.py::TestTorchFunctionOverride::test_torch_function_precedence_in_lists, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_atleast_1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_atleast_2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_atleast_3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_block_diag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_broadcast_tensors, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_cartesian_prod, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_cdist, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_chain_matmul, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_einsum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_lu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_meshgrid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_split, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_stft, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_tensordot, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_unique, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_unique_consecutive, test/test_overrides.py::TestTorchFunctionOverride::test_torch_functional_unravel_index, test/test_overrides.py::TestTorchFunctionOverride::test_torch_fused_moving_avg_obs_fake_quant, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gather, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gcd, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ge, test/test_overrides.py::TestTorchFunctionOverride::test_torch_geqrf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ger, test/test_overrides.py::TestTorchFunctionOverride::test_torch_get_device, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gradient, test/test_overrides.py::TestTorchFunctionOverride::test_torch_greater, test/test_overrides.py::TestTorchFunctionOverride::test_torch_greater_equal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_grid_sampler, test/test_overrides.py::TestTorchFunctionOverride::test_torch_grid_sampler_2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_grid_sampler_3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_group_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gru, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gru_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_gt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hardshrink, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hash_tensor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_heaviside, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hinge_embedding_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_histc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_histogram, test/test_overrides.py::TestTorchFunctionOverride::test_torch_histogramdd, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hsmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hsplit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hstack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_hypot, test/test_overrides.py::TestTorchFunctionOverride::test_torch_i0, test/test_overrides.py::TestTorchFunctionOverride::test_torch_igamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_igammac, test/test_overrides.py::TestTorchFunctionOverride::test_torch_imag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_add, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_fill, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_put, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_torch_index_select, test/test_overrides.py::TestTorchFunctionOverride::test_torch_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_inner, test/test_overrides.py::TestTorchFunctionOverride::test_torch_instance_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_int_repr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_complex, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_conj, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_distributed, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_floating_point, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_inference, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_neg, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_same_size, test/test_overrides.py::TestTorchFunctionOverride::test_torch_is_signed, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isclose, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isfinite, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isinf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isnan, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isneginf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isposinf, test/test_overrides.py::TestTorchFunctionOverride::test_torch_isreal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_istft, test/test_overrides.py::TestTorchFunctionOverride::test_torch_kl_div, test/test_overrides.py::TestTorchFunctionOverride::test_torch_kron, test/test_overrides.py::TestTorchFunctionOverride::test_torch_kthvalue, test/test_overrides.py::TestTorchFunctionOverride::test_torch_layer_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lcm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ldexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_le, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lerp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_less, test/test_overrides.py::TestTorchFunctionOverride::test_torch_less_equal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lgamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log10, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log1p, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_log_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logaddexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logaddexp2, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logcumsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logdet, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logical_and, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logical_not, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logical_or, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logical_xor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_logsumexp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lstm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lstm_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lu_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch_lu_unpack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_margin_ranking_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_masked_fill, test/test_overrides.py::TestTorchFunctionOverride::test_torch_masked_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_masked_select, test/test_overrides.py::TestTorchFunctionOverride::test_torch_matmul, test/test_overrides.py::TestTorchFunctionOverride::test_torch_matrix_exp, test/test_overrides.py::TestTorchFunctionOverride::test_torch_matrix_power, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max_pool1d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_maximum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mean, test/test_overrides.py::TestTorchFunctionOverride::test_torch_median, test/test_overrides.py::TestTorchFunctionOverride::test_torch_min, test/test_overrides.py::TestTorchFunctionOverride::test_torch_minimum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_convolution, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_convolution_add_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_convolution_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_convolution_transpose, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_depthwise_convolution, test/test_overrides.py::TestTorchFunctionOverride::test_torch_miopen_rnn, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mode, test/test_overrides.py::TestTorchFunctionOverride::test_torch_moveaxis, test/test_overrides.py::TestTorchFunctionOverride::test_torch_movedim, test/test_overrides.py::TestTorchFunctionOverride::test_torch_msort, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mul, test/test_overrides.py::TestTorchFunctionOverride::test_torch_multinomial, test/test_overrides.py::TestTorchFunctionOverride::test_torch_multiply, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mv, test/test_overrides.py::TestTorchFunctionOverride::test_torch_mvlgamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nan_to_num, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nanmean, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nanmedian, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nanquantile, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nansum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_narrow, test/test_overrides.py::TestTorchFunctionOverride::test_torch_narrow_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_channel_shuffle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_group_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_layer_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_native_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ne, test/test_overrides.py::TestTorchFunctionOverride::test_torch_neg, test/test_overrides.py::TestTorchFunctionOverride::test_torch_negative, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nextafter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional__threshold, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_avg_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_avg_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool1d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool2d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_adaptive_max_pool3d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_affine_grid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_alpha_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_binary_cross_entropy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_binary_cross_entropy_with_logits, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_celu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_cosine_embedding_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_cross_entropy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_ctc_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_dropout1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_dropout2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_dropout3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_elu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_embedding, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_embedding_bag, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_feature_alpha_dropout, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fold, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fractional_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fractional_max_pool2d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fractional_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_fractional_max_pool3d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_gaussian_nll_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_glu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_grid_sample, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_group_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_gumbel_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_hardtanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_hinge_embedding_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_huber_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_instance_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_interpolate, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_kl_div, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_l1_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_layer_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_leaky_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_local_response_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_log_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_lp_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_lp_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_lp_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_margin_ranking_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool1d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool2d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_pool3d_with_indices, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_unpool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_unpool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_max_unpool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_mish, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_mse_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_multi_head_attention_forward, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_multi_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_multilabel_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_multilabel_soft_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_nll_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_normalize, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_pad, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_poisson_nll_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_relu6, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_rms_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_rrelu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_selu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_silu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_smooth_l1_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_soft_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_softmin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_softsign, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_tanhshrink, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_triplet_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_triplet_margin_with_distance_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_functional_unfold, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_init_constant_, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_init_kaiming_uniform_, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_init_normal_, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nn_init_uniform_, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nonzero, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nonzero_static, test/test_overrides.py::TestTorchFunctionOverride::test_torch_norm_except_dim, test/test_overrides.py::TestTorchFunctionOverride::test_torch_not_equal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_nuclear_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_numel, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ones_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_orgqr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ormqr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_outer, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pairwise_distance, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pdist, test/test_overrides.py::TestTorchFunctionOverride::test_torch_permute, test/test_overrides.py::TestTorchFunctionOverride::test_torch_permute_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pinverse, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pixel_shuffle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pixel_unshuffle, test/test_overrides.py::TestTorchFunctionOverride::test_torch_poisson, test/test_overrides.py::TestTorchFunctionOverride::test_torch_poisson_nll_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_polar, test/test_overrides.py::TestTorchFunctionOverride::test_torch_polygamma, test/test_overrides.py::TestTorchFunctionOverride::test_torch_positive, test/test_overrides.py::TestTorchFunctionOverride::test_torch_pow, test/test_overrides.py::TestTorchFunctionOverride::test_torch_prelu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_prod, test/test_overrides.py::TestTorchFunctionOverride::test_torch_put, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_per_channel_axis, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_per_channel_scales, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_per_channel_zero_points, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_scale, test/test_overrides.py::TestTorchFunctionOverride::test_torch_q_zero_point, test/test_overrides.py::TestTorchFunctionOverride::test_torch_qr, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantile, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantize_per_channel, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantize_per_tensor, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantize_per_tensor_dynamic, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_batch_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_gru_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_lstm_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_max_pool1d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_max_pool2d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_max_pool3d, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_rnn_relu_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_quantized_rnn_tanh_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rad2deg, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rand_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_randint_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_randn_like, test/test_overrides.py::TestTorchFunctionOverride::test_torch_ravel, test/test_overrides.py::TestTorchFunctionOverride::test_torch_real, test/test_overrides.py::TestTorchFunctionOverride::test_torch_reciprocal, test/test_overrides.py::TestTorchFunctionOverride::test_torch_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_remainder, test/test_overrides.py::TestTorchFunctionOverride::test_torch_renorm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_repeat_interleave, test/test_overrides.py::TestTorchFunctionOverride::test_torch_reshape, test/test_overrides.py::TestTorchFunctionOverride::test_torch_resolve_conj, test/test_overrides.py::TestTorchFunctionOverride::test_torch_resolve_neg, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rms_norm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rnn_relu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rnn_relu_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rnn_tanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rnn_tanh_cell, test/test_overrides.py::TestTorchFunctionOverride::test_torch_roll, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rot90, test/test_overrides.py::TestTorchFunctionOverride::test_torch_round, test/test_overrides.py::TestTorchFunctionOverride::test_torch_row_indices_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_row_stack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rrelu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rsqrt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_rsub, test/test_overrides.py::TestTorchFunctionOverride::test_torch_saddmm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_scatter_add, test/test_overrides.py::TestTorchFunctionOverride::test_torch_scatter_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_torch_searchsorted, test/test_overrides.py::TestTorchFunctionOverride::test_torch_segment_reduce, test/test_overrides.py::TestTorchFunctionOverride::test_torch_select, test/test_overrides.py::TestTorchFunctionOverride::test_torch_select_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_select_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_selu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sgn, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sigmoid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sign, test/test_overrides.py::TestTorchFunctionOverride::test_torch_signbit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sin, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sinc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sinh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_slice_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_slice_inverse, test/test_overrides.py::TestTorchFunctionOverride::test_torch_slice_scatter, test/test_overrides.py::TestTorchFunctionOverride::test_torch_slogdet, test/test_overrides.py::TestTorchFunctionOverride::test_torch_smm, test/test_overrides.py::TestTorchFunctionOverride::test_torch_softmax, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sort, test/test_overrides.py::TestTorchFunctionOverride::test_torch_split_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_split_with_sizes, test/test_overrides.py::TestTorchFunctionOverride::test_torch_split_with_sizes_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sqrt, test/test_overrides.py::TestTorchFunctionOverride::test_torch_square, test/test_overrides.py::TestTorchFunctionOverride::test_torch_squeeze, test/test_overrides.py::TestTorchFunctionOverride::test_torch_squeeze_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_stack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_std, test/test_overrides.py::TestTorchFunctionOverride::test_torch_std_mean, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sub, test/test_overrides.py::TestTorchFunctionOverride::test_torch_subtract, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_svd, test/test_overrides.py::TestTorchFunctionOverride::test_torch_swapaxes, test/test_overrides.py::TestTorchFunctionOverride::test_torch_swapdims, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_float, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_int, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_ite, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_max, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_min, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_not, test/test_overrides.py::TestTorchFunctionOverride::test_torch_sym_sum, test/test_overrides.py::TestTorchFunctionOverride::test_torch_t, test/test_overrides.py::TestTorchFunctionOverride::test_torch_t_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_take, test/test_overrides.py::TestTorchFunctionOverride::test_torch_take_along_dim, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tan, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tanh, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tensor_split, test/test_overrides.py::TestTorchFunctionOverride::test_torch_threshold, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tile, test/test_overrides.py::TestTorchFunctionOverride::test_torch_topk, test/test_overrides.py::TestTorchFunctionOverride::test_torch_trace, test/test_overrides.py::TestTorchFunctionOverride::test_torch_transpose, test/test_overrides.py::TestTorchFunctionOverride::test_torch_transpose_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_trapezoid, test/test_overrides.py::TestTorchFunctionOverride::test_torch_trapz, test/test_overrides.py::TestTorchFunctionOverride::test_torch_triangular_solve, test/test_overrides.py::TestTorchFunctionOverride::test_torch_tril, test/test_overrides.py::TestTorchFunctionOverride::test_torch_triplet_margin_loss, test/test_overrides.py::TestTorchFunctionOverride::test_torch_triu, test/test_overrides.py::TestTorchFunctionOverride::test_torch_true_divide, test/test_overrides.py::TestTorchFunctionOverride::test_torch_trunc, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unbind, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unbind_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unflatten, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unfold_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsafe_chunk, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsafe_split, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsafe_split_with_sizes, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsqueeze, test/test_overrides.py::TestTorchFunctionOverride::test_torch_unsqueeze_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_values_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_var, test/test_overrides.py::TestTorchFunctionOverride::test_torch_var_mean, test/test_overrides.py::TestTorchFunctionOverride::test_torch_vdot, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_as_complex, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_as_complex_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_as_real, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_as_real_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_view_copy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_vsplit, test/test_overrides.py::TestTorchFunctionOverride::test_torch_vstack, test/test_overrides.py::TestTorchFunctionOverride::test_torch_where, test/test_overrides.py::TestTorchFunctionOverride::test_torch_xlogy, test/test_overrides.py::TestTorchFunctionOverride::test_torch_zeros_like, test/test_overrides.py::TestTorchFunctionOverride::test_user_implementation_raises, test/test_overrides.py::TestEinsumOverride::test_wrapper, test/test_overrides.py::TestGradCheckOverride::test_gradcheck, test/test_overrides.py::TestNamedTuple::test_max, test/test_overrides.py::TestGradNewOnesOverride::test_newones, test/test_overrides.py::TestPickle::test_pickle, test/test_overrides.py::TestBroadcastAllOverride::test_broadcast_all, test/test_overrides.py::TestWrapTorchFunction::test_wrap_torch_function, test/test_overrides.py::TestIndexing::test_getitem, test/test_overrides.py::TestIndexing::test_getitem_subclass, test/test_overrides.py::TestIndexing::test_setitem, test/test_overrides.py::TestIndexing::test_setitem_subclass, test/test_overrides.py::TestIndexing::test_setitem_val, test/test_overrides.py::TestIterator::test_iterator, test/test_overrides.py::TestRNN::test_rnn, test/test_overrides.py::TestDisabledTorchFunction::test_parameter_does_not_prevent_dispatch, test/test_overrides.py::TestResolveName::test_resolve_name, test/test_overrides.py::TestTorchFunctionWarning::test_torch_function_standalone_class, test/test_overrides.py::TestTorchFunctionWarning::test_torch_function_tensor_subclass, test/test_overrides.py::TestDisabledUserWarnings::test_no_implicit_user_warning_for_deprecated_functions, test/test_overrides.py::TestTorchFunctionMode::test_all_same_mode, test/test_overrides.py::TestTorchFunctionMode::test_basic, test/test_overrides.py::TestTorchFunctionMode::test_custom_device_type, test/test_overrides.py::TestTorchFunctionMode::test_device_context_semantics, test/test_overrides.py::TestTorchFunctionMode::test_disable_enable_subclass, test/test_overrides.py::TestTorchFunctionMode::test_disable_enable_torch_function_ctx, test/test_overrides.py::TestTorchFunctionMode::test_disable_subclass_mode, test/test_overrides.py::TestTorchFunctionMode::test_disable_subclass_not_mode, test/test_overrides.py::TestTorchFunctionMode::test_distributions_bernoulli, test/test_overrides.py::TestTorchFunctionMode::test_error_using_class_method_on_mode, test/test_overrides.py::TestTorchFunctionMode::test_factory_override, test/test_overrides.py::TestTorchFunctionMode::test_get_cur_mode, test/test_overrides.py::TestTorchFunctionMode::test_get_mode_stack, test/test_overrides.py::TestTorchFunctionMode::test_getitem_call, test/test_overrides.py::TestTorchFunctionMode::test_mode_notimplemented_loop, test/test_overrides.py::TestTorchFunctionMode::test_modes_handle_first, test/test_overrides.py::TestTorchFunctionMode::test_modes_return_notimplemented, test/test_overrides.py::TestTorchFunctionMode::test_nested_modes_with_python_has_torch_function, test/test_overrides.py::TestTorchFunctionMode::test_nested_same_mode, test/test_overrides.py::TestTorchFunctionMode::test_nn_parse_to, test/test_overrides.py::TestTorchFunctionMode::test_reentrant_mode_idiom, test/test_overrides.py::TestTorchFunctionMode::test_restacking_with_ancestor, test/test_overrides.py::TestTorchFunctionMode::test_subclass_hash, test/test_overrides.py::TestTorchFunctionMode::test_torch_function_all_disabled_api, test/test_overrides.py::TestTorchFunctionMode::test_with_mode, test/test_overrides.py::TestTorchFunctionMode::test_with_mode_created_separately, test/test_overrides.py::TestTorchFunctionMode::test_with_nested_modes 2025-09-07T07:39:45.6653892Z 2025-09-07T07:39:45.6654092Z Running test_mobile_optimizer 1/1 ... [2025-09-07 07:39:45.578448] 2025-09-07T07:39:45.6654535Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:39:45.6655546Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mobile_optimizer.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:39:45.579059] 2025-09-07T07:39:50.1570073Z 2025-09-07T07:39:50.1570976Z test_mobile_optimizer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mobile_optimizer_1.1_7ed58de1f8699e5d_.log 2025-09-07T07:39:50.1573910Z Running 7 items in this shard: test/test_mobile_optimizer.py::TestOptimizer::test_clone_module_with_class, test/test_mobile_optimizer.py::TestOptimizer::test_generate_mobile_module_lints, test/test_mobile_optimizer.py::TestOptimizer::test_hoist_conv_packed_params, test/test_mobile_optimizer.py::TestOptimizer::test_mobilenet_optimize_for_mobile, test/test_mobile_optimizer.py::TestOptimizer::test_optimize_for_mobile, test/test_mobile_optimizer.py::TestOptimizer::test_preserve_bundled_inputs_methods, test/test_mobile_optimizer.py::TestOptimizer::test_quantized_conv_no_asan_failures 2025-09-07T07:39:50.1576597Z 2025-09-07T07:39:50.1578701Z Running test_spectral_ops 1/1 ... [2025-09-07 07:39:50.157705] 2025-09-07T07:39:50.1579094Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:39:50.1586286Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_spectral_ops.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:39:50.158299] 2025-09-07T07:40:15.2654806Z 2025-09-07T07:40:15.2655970Z test_spectral_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_spectral_ops_1.1_1ef662e659a1dc20_.log 2025-09-07T07:40:15.2741692Z Running 281 items in this shard: test/test_spectral_ops.py::TestFFTCPU::test_batch_istft_cpu, test/test_spectral_ops.py::TestFFTCPU::test_complex_istft_real_equiv_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_definition_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_onesided_cpu, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_real_equiv_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_roundtrip_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_complex_stft_roundtrip_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_cufft_context_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_cufft_context_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_cufft_plan_cache_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_fftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ifftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ihfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ihfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_irfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_rfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_rfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft__refs_fft_rfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_fftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ifftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ihfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ihfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfft2_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_irfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_rfft2_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_rfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_fft_fft_rfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_empty_ifft_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft2_fftn_equivalence_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fft2_fftn_equivalence_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fft2_invalid_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft2_numpy_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fft2_numpy_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_fftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_hfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ifftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_ihfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_irfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors__refs_fft_rfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_fftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_hfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ifftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_ihfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_irfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfft2_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfft2_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfft_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfft_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfftn_cpu_bfloat16, test/test_spectral_ops.py::TestFFTCPU::test_fft_half_and_bfloat16_errors_fft_rfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_ifft_rfft_irfft_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fft_input_modification_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft_invalid_dtypes_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft_plan_repeatable_cpu, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_complex32, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fft_round_trip_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_complex32, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fft_type_promotion_cpu_int8, test/test_spectral_ops.py::TestFFTCPU::test_fftfreq_numpy_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftfreq_numpy_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftfreq_out_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftfreq_out_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_fftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_ifftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_irfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid__refs_fft_rfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_fftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_ifftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_irfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_invalid_fft_rfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_noop_transform_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_complex32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftn_round_trip_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_frequencies_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_frequencies_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_numpy_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_numpy_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_numpy_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_fftshift_numpy_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_hfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_hfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_hfftn_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_ihfftn_cpu_float16, test/test_spectral_ops.py::TestFFTCPU::test_ihfftn_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_ihfftn_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_against_librosa_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_linearity_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_of_sine_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_requires_window_cpu, test/test_spectral_ops.py::TestFFTCPU::test_istft_round_trip_simple_cases_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_round_trip_various_params_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_round_trip_with_padding_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_istft_throws_cpu, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_fft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_fft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_hfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_hfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_ifft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_ifft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_ihfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_irfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_irfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d__refs_fft_rfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_fft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_fft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_hfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_hfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_ifft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_ifft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_ihfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_irfft_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_irfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_1d_fft_rfft_cpu_float32, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_fftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_hfftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_ifftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_irfftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd__refs_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_fftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_fftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_hfftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_hfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_ifftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_ifftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_irfftn_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_reference_nd_fft_irfftn_cpu_complex64, test/test_spectral_ops.py::TestFFTCPU::test_stft_align_to_window_only_requires_non_center_cpu, test/test_spectral_ops.py::TestFFTCPU::test_stft_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_stft_requires_complex_cpu, test/test_spectral_ops.py::TestFFTCPU::test_stft_requires_window_cpu, test/test_spectral_ops.py::TestFFTCPU::test_stft_roundtrip_complex_window_cpu_complex128, test/test_spectral_ops.py::TestFFTCPU::test_stft_roundtrip_complex_window_cpu_float64, test/test_spectral_ops.py::TestFFTCPU::test_stft_window_device_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fft2_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fftfreq_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fftn_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_fftshift_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_hfft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ifft2_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ifft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ifftn_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ifftshift_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_ihfft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_irfft2_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_irfft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_irfftn_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_rfft2_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_rfft_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_rfftfreq_cpu, test/test_spectral_ops.py::TestFFTDocExamplesCPU::test_rfftn_cpu 2025-09-07T07:40:15.2823760Z 2025-09-07T07:40:15.2824020Z Running distributions/test_distributions 1/1 ... [2025-09-07 07:40:15.266073] 2025-09-07T07:40:15.2824545Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:40:15.2825623Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'distributions/test_distributions.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:40:15.266660] 2025-09-07T07:41:39.6274369Z 2025-09-07T07:41:39.6275440Z distributions/test_distributions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/distributions.test_distributions_1.1_86df6eb40cfaa6a5_.log 2025-09-07T07:41:39.6358481Z Running 230 items in this shard: test/distributions/test_distributions.py::TestDistributions::test_argmax_relaxed_categorical, test/distributions/test_distributions.py::TestDistributions::test_bernoulli, test/distributions/test_distributions.py::TestDistributions::test_bernoulli_3d, test/distributions/test_distributions.py::TestDistributions::test_bernoulli_enumerate_support, test/distributions/test_distributions.py::TestDistributions::test_beta_log_prob, test/distributions/test_distributions.py::TestDistributions::test_beta_sample, test/distributions/test_distributions.py::TestDistributions::test_beta_shape, test/distributions/test_distributions.py::TestDistributions::test_beta_underflow, test/distributions/test_distributions.py::TestDistributions::test_beta_underflow_gpu, test/distributions/test_distributions.py::TestDistributions::test_binomial, test/distributions/test_distributions.py::TestDistributions::test_binomial_bfloat16, test/distributions/test_distributions.py::TestDistributions::test_binomial_enumerate_support, test/distributions/test_distributions.py::TestDistributions::test_binomial_extreme_vals, test/distributions/test_distributions.py::TestDistributions::test_binomial_half, test/distributions/test_distributions.py::TestDistributions::test_binomial_log_prob_and_entropy, test/distributions/test_distributions.py::TestDistributions::test_binomial_log_prob_vectorized_count, test/distributions/test_distributions.py::TestDistributions::test_binomial_sample, test/distributions/test_distributions.py::TestDistributions::test_binomial_stable, test/distributions/test_distributions.py::TestDistributions::test_binomial_vectorized_count, test/distributions/test_distributions.py::TestDistributions::test_categorical_1d, test/distributions/test_distributions.py::TestDistributions::test_categorical_2d, test/distributions/test_distributions.py::TestDistributions::test_categorical_enumerate_support, test/distributions/test_distributions.py::TestDistributions::test_cauchy, test/distributions/test_distributions.py::TestDistributions::test_cdf_icdf_inverse, test/distributions/test_distributions.py::TestDistributions::test_cdf_log_prob, test/distributions/test_distributions.py::TestDistributions::test_chi2_sample, test/distributions/test_distributions.py::TestDistributions::test_chi2_shape, test/distributions/test_distributions.py::TestDistributions::test_continuous_bernoulli, test/distributions/test_distributions.py::TestDistributions::test_continuous_bernoulli_3d, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_log_prob, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_log_prob_zero, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_mode, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_sample, test/distributions/test_distributions.py::TestDistributions::test_dirichlet_shape, test/distributions/test_distributions.py::TestDistributions::test_distribution_expand, test/distributions/test_distributions.py::TestDistributions::test_distribution_subclass_expand, test/distributions/test_distributions.py::TestDistributions::test_enumerate_support_type, test/distributions/test_distributions.py::TestDistributions::test_exponential, test/distributions/test_distributions.py::TestDistributions::test_exponential_sample, test/distributions/test_distributions.py::TestDistributions::test_fishersnedecor, test/distributions/test_distributions.py::TestDistributions::test_fishersnedecor_sample, test/distributions/test_distributions.py::TestDistributions::test_gamma_gpu_sample, test/distributions/test_distributions.py::TestDistributions::test_gamma_gpu_shape, test/distributions/test_distributions.py::TestDistributions::test_gamma_log_prob_at_boundary, test/distributions/test_distributions.py::TestDistributions::test_gamma_sample, test/distributions/test_distributions.py::TestDistributions::test_gamma_shape, test/distributions/test_distributions.py::TestDistributions::test_generalized_pareto, test/distributions/test_distributions.py::TestDistributions::test_generalized_pareto_sample, test/distributions/test_distributions.py::TestDistributions::test_geometric, test/distributions/test_distributions.py::TestDistributions::test_geometric_log_prob_and_entropy, test/distributions/test_distributions.py::TestDistributions::test_geometric_sample, test/distributions/test_distributions.py::TestDistributions::test_gumbel, test/distributions/test_distributions.py::TestDistributions::test_gumbel_sample, test/distributions/test_distributions.py::TestDistributions::test_halfcauchy, test/distributions/test_distributions.py::TestDistributions::test_halfnormal, test/distributions/test_distributions.py::TestDistributions::test_halfnormal_logprob, test/distributions/test_distributions.py::TestDistributions::test_halfnormal_sample, test/distributions/test_distributions.py::TestDistributions::test_has_examples, test/distributions/test_distributions.py::TestDistributions::test_independent_expand, test/distributions/test_distributions.py::TestDistributions::test_independent_shape, test/distributions/test_distributions.py::TestDistributions::test_invalid_parameter_broadcasting, test/distributions/test_distributions.py::TestDistributions::test_inversegamma, test/distributions/test_distributions.py::TestDistributions::test_inversegamma_sample, test/distributions/test_distributions.py::TestDistributions::test_kumaraswamy_mean_variance, test/distributions/test_distributions.py::TestDistributions::test_kumaraswamy_shape, test/distributions/test_distributions.py::TestDistributions::test_laplace, test/distributions/test_distributions.py::TestDistributions::test_laplace_sample, test/distributions/test_distributions.py::TestDistributions::test_lazy_property_grad, test/distributions/test_distributions.py::TestDistributions::test_lkj_cholesky_log_prob, test/distributions/test_distributions.py::TestDistributions::test_logisticnormal, test/distributions/test_distributions.py::TestDistributions::test_logisticnormal_logprob, test/distributions/test_distributions.py::TestDistributions::test_logisticnormal_sample, test/distributions/test_distributions.py::TestDistributions::test_lognormal, test/distributions/test_distributions.py::TestDistributions::test_lognormal_logprob, test/distributions/test_distributions.py::TestDistributions::test_lognormal_sample, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_log_prob, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_moments, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_properties, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_sample, test/distributions/test_distributions.py::TestDistributions::test_lowrank_multivariate_normal_shape, test/distributions/test_distributions.py::TestDistributions::test_mixture_same_family_binomial_log_prob, test/distributions/test_distributions.py::TestDistributions::test_mixture_same_family_normal_log_prob, test/distributions/test_distributions.py::TestDistributions::test_mixture_same_family_sample, test/distributions/test_distributions.py::TestDistributions::test_mixture_same_family_shape, test/distributions/test_distributions.py::TestDistributions::test_mode, test/distributions/test_distributions.py::TestDistributions::test_multinomial_1d, test/distributions/test_distributions.py::TestDistributions::test_multinomial_1d_log_prob_and_entropy, test/distributions/test_distributions.py::TestDistributions::test_multinomial_2d, test/distributions/test_distributions.py::TestDistributions::test_multinomial_sequential_draw, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_log_prob, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_moments, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_properties, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_sample, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_shape, test/distributions/test_distributions.py::TestDistributions::test_multivariate_normal_stable_with_precision_matrix, test/distributions/test_distributions.py::TestDistributions::test_negative_binomial, test/distributions/test_distributions.py::TestDistributions::test_negative_binomial_log_prob, test/distributions/test_distributions.py::TestDistributions::test_negative_binomial_log_prob_vectorized_count, test/distributions/test_distributions.py::TestDistributions::test_normal, test/distributions/test_distributions.py::TestDistributions::test_normal_sample, test/distributions/test_distributions.py::TestDistributions::test_one_hot_categorical_1d, test/distributions/test_distributions.py::TestDistributions::test_one_hot_categorical_2d, test/distributions/test_distributions.py::TestDistributions::test_one_hot_categorical_enumerate_support, test/distributions/test_distributions.py::TestDistributions::test_pareto, test/distributions/test_distributions.py::TestDistributions::test_pareto_sample, test/distributions/test_distributions.py::TestDistributions::test_poisson_forward_ad, test/distributions/test_distributions.py::TestDistributions::test_poisson_gpu_sample, test/distributions/test_distributions.py::TestDistributions::test_poisson_log_prob, test/distributions/test_distributions.py::TestDistributions::test_poisson_sample, test/distributions/test_distributions.py::TestDistributions::test_poisson_shape, test/distributions/test_distributions.py::TestDistributions::test_relaxed_bernoulli, test/distributions/test_distributions.py::TestDistributions::test_relaxed_one_hot_categorical_1d, test/distributions/test_distributions.py::TestDistributions::test_relaxed_one_hot_categorical_2d, test/distributions/test_distributions.py::TestDistributions::test_repr, test/distributions/test_distributions.py::TestDistributions::test_rounded_relaxed_bernoulli, test/distributions/test_distributions.py::TestDistributions::test_rsample_requires_grad, test/distributions/test_distributions.py::TestDistributions::test_sample_detached, test/distributions/test_distributions.py::TestDistributions::test_studentT, test/distributions/test_distributions.py::TestDistributions::test_studentT_log_prob, test/distributions/test_distributions.py::TestDistributions::test_studentT_sample, test/distributions/test_distributions.py::TestDistributions::test_support_attributes, test/distributions/test_distributions.py::TestDistributions::test_torch_binomial_dtype_errors, test/distributions/test_distributions.py::TestDistributions::test_uniform, test/distributions/test_distributions.py::TestDistributions::test_valid_parameter_broadcasting, test/distributions/test_distributions.py::TestDistributions::test_vonmises_logprob, test/distributions/test_distributions.py::TestDistributions::test_vonmises_sample, test/distributions/test_distributions.py::TestDistributions::test_wishart_log_prob, test/distributions/test_distributions.py::TestDistributions::test_wishart_moments, test/distributions/test_distributions.py::TestDistributions::test_wishart_properties, test/distributions/test_distributions.py::TestDistributions::test_wishart_sample, test/distributions/test_distributions.py::TestDistributions::test_wishart_shape, test/distributions/test_distributions.py::TestDistributions::test_wishart_stable_with_precision_matrix, test/distributions/test_distributions.py::TestDistributions::test_zero_excluded_binomial, test/distributions/test_distributions.py::TestRsample::test_beta_wrt_alpha, test/distributions/test_distributions.py::TestRsample::test_beta_wrt_beta, test/distributions/test_distributions.py::TestRsample::test_chi2, test/distributions/test_distributions.py::TestRsample::test_dirichlet_multivariate, test/distributions/test_distributions.py::TestRsample::test_dirichlet_on_diagonal, test/distributions/test_distributions.py::TestRsample::test_dirichlet_tangent_field, test/distributions/test_distributions.py::TestRsample::test_gamma, test/distributions/test_distributions.py::TestDistributionShapes::test_bernoulli_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_bernoulli_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_beta_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_beta_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_binomial_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_binomial_shape_vectorized_n, test/distributions/test_distributions.py::TestDistributionShapes::test_categorical_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_cauchy_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_cauchy_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_chi2_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_chi2_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_continuous_bernoulli_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_continuous_bernoulli_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_dirichlet_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_entropy_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_exponential_shape_scalar_param, test/distributions/test_distributions.py::TestDistributionShapes::test_exponential_shape_tensor_param, test/distributions/test_distributions.py::TestDistributionShapes::test_gamma_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_gamma_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_geometric_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_geometric_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_gumbel_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_halfcauchy_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_halfcauchy_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_kumaraswamy_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_laplace_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_laplace_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_mixture_same_family_mean_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_mixture_same_family_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_multinomial_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_normal_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_normal_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_one_hot_categorical_shape, test/distributions/test_distributions.py::TestDistributionShapes::test_pareto_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_studentT_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_studentT_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_uniform_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_uniform_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_vonmises_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_vonmises_shape_tensor_params, test/distributions/test_distributions.py::TestDistributionShapes::test_weibull_scale_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_wishart_shape_scalar_params, test/distributions/test_distributions.py::TestDistributionShapes::test_wishart_shape_tensor_params, test/distributions/test_distributions.py::TestKL::test_entropy_exponential_family, test/distributions/test_distributions.py::TestKL::test_entropy_monte_carlo, test/distributions/test_distributions.py::TestKL::test_kl_edgecases, test/distributions/test_distributions.py::TestKL::test_kl_exponential_family, test/distributions/test_distributions.py::TestKL::test_kl_infinite, test/distributions/test_distributions.py::TestKL::test_kl_lowrank_multivariate_normal, test/distributions/test_distributions.py::TestKL::test_kl_lowrank_multivariate_normal_batched, test/distributions/test_distributions.py::TestKL::test_kl_monte_carlo, test/distributions/test_distributions.py::TestKL::test_kl_multivariate_normal, test/distributions/test_distributions.py::TestKL::test_kl_multivariate_normal_batched, test/distributions/test_distributions.py::TestKL::test_kl_multivariate_normal_batched_broadcasted, test/distributions/test_distributions.py::TestKL::test_kl_shape, test/distributions/test_distributions.py::TestKL::test_kl_transformed, test/distributions/test_distributions.py::TestConstraints::test_params_constraints, test/distributions/test_distributions.py::TestConstraints::test_support_constraints, test/distributions/test_distributions.py::TestNumericalStability::test_bernoulli_gradient, test/distributions/test_distributions.py::TestNumericalStability::test_bernoulli_with_logits_overflow, test/distributions/test_distributions.py::TestNumericalStability::test_bernoulli_with_logits_underflow, test/distributions/test_distributions.py::TestNumericalStability::test_categorical_log_prob, test/distributions/test_distributions.py::TestNumericalStability::test_categorical_log_prob_with_logits, test/distributions/test_distributions.py::TestNumericalStability::test_continuous_bernoulli_gradient, test/distributions/test_distributions.py::TestNumericalStability::test_continuous_bernoulli_with_logits_overflow, test/distributions/test_distributions.py::TestNumericalStability::test_continuous_bernoulli_with_logits_underflow, test/distributions/test_distributions.py::TestNumericalStability::test_multinomial_log_prob, test/distributions/test_distributions.py::TestNumericalStability::test_multinomial_log_prob_with_logits, test/distributions/test_distributions.py::TestLazyLogitsInitialization::test_lazy_logits_initialization, test/distributions/test_distributions.py::TestLazyLogitsInitialization::test_lazy_probs_initialization, test/distributions/test_distributions.py::TestAgainstScipy::test_cdf, test/distributions/test_distributions.py::TestAgainstScipy::test_icdf, test/distributions/test_distributions.py::TestAgainstScipy::test_mean, test/distributions/test_distributions.py::TestAgainstScipy::test_variance_stddev, test/distributions/test_distributions.py::TestFunctors::test_cat_event_dim, test/distributions/test_distributions.py::TestFunctors::test_cat_transform, test/distributions/test_distributions.py::TestFunctors::test_cat_transform_non_uniform, test/distributions/test_distributions.py::TestFunctors::test_stack_transform, test/distributions/test_distributions.py::TestValidation::test_invalid, test/distributions/test_distributions.py::TestValidation::test_invalid_log_probs_arg, test/distributions/test_distributions.py::TestValidation::test_valid, test/distributions/test_distributions.py::TestValidation::test_warning_unimplemented_constraints, test/distributions/test_distributions.py::TestJit::test_cdf, test/distributions/test_distributions.py::TestJit::test_entropy, test/distributions/test_distributions.py::TestJit::test_enumerate_support, test/distributions/test_distributions.py::TestJit::test_log_prob, test/distributions/test_distributions.py::TestJit::test_mean, test/distributions/test_distributions.py::TestJit::test_rsample, test/distributions/test_distributions.py::TestJit::test_sample, test/distributions/test_distributions.py::TestJit::test_variance 2025-09-07T07:41:39.6441427Z 2025-09-07T07:41:39.6441585Z Running doctests 1/1 ... [2025-09-07 07:41:39.619735] 2025-09-07T07:41:40.5674335Z msg = Cannot scrape callname=Library.fallback in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=375. 2025-09-07T07:41:40.5675251Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:40.5675844Z Registers the function implementation as the fallback for the given key. 2025-09-07T07:41:40.5676219Z 2025-09-07T07:41:40.5676472Z This function only works for a library with global namespace ("_"). 2025-09-07T07:41:40.5676786Z 2025-09-07T07:41:40.5676878Z Args: 2025-09-07T07:41:40.5677304Z fn: function used as fallback for the given dispatch key or :func:`~fallthrough_kernel` 2025-09-07T07:41:40.5677815Z to register a fallthrough. 2025-09-07T07:41:40.5678334Z dispatch_key: dispatch key that the input function should be registered for. By default, it uses 2025-09-07T07:41:40.5678932Z the dispatch key that the library was created with. 2025-09-07T07:41:40.5679544Z with_keyset: flag controlling if the current dispatcher call keyset should be passed as the first argument 2025-09-07T07:41:40.5680472Z to :attr:`fn` when calling. This should be used to create the appropriate keyset for redispatch calls. 2025-09-07T07:41:40.5680889Z 2025-09-07T07:41:40.5681046Z Example:: 2025-09-07T07:41:40.5681191Z 2025-09-07T07:41:40.5681299Z >>> my_lib = Library("_", "IMPL") 2025-09-07T07:41:40.5681672Z >>> def fallback_kernel(op, *args, **kwargs): 2025-09-07T07:41:40.5682034Z >>> # Handle all autocast ops generically 2025-09-07T07:41:40.5682372Z >>> # ... 2025-09-07T07:41:40.5682663Z >>> my_lib.fallback(fallback_kernel, "Autocast") 2025-09-07T07:41:40.5683049Z 2025-09-07T07:41:40.5683699Z Original Error: IndentationError('expected an indented block', ('', 5, 1, 'my_lib.fallback(fallback_kernel, "Autocast")\n')) 2025-09-07T07:41:40.5684240Z 2025-09-07T07:41:40.5684372Z my_lib.fallback(fallback_kernel, "Autocast") 2025-09-07T07:41:40.5684709Z ^ 2025-09-07T07:41:40.5685287Z msg = Cannot scrape callname=register_fake in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=948. 2025-09-07T07:41:40.5686121Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:40.5686723Z Register a FakeTensor implementation ("fake impl") for this operator. 2025-09-07T07:41:40.5687046Z 2025-09-07T07:41:40.5687222Z Also sometimes known as a "meta kernel", "abstract impl". 2025-09-07T07:41:40.5687518Z 2025-09-07T07:41:40.5687752Z An "FakeTensor implementation" specifies the behavior of this operator on 2025-09-07T07:41:40.5688296Z Tensors that carry no data ("FakeTensor"). Given some input Tensors with 2025-09-07T07:41:40.5688856Z certain properties (sizes/strides/storage_offset/device), it specifies 2025-09-07T07:41:40.5689350Z what the properties of the output Tensors are. 2025-09-07T07:41:40.5689592Z 2025-09-07T07:41:40.5689809Z The FakeTensor implementation has the same signature as the operator. 2025-09-07T07:41:40.5690418Z It is run for both FakeTensors and meta tensors. To write a FakeTensor 2025-09-07T07:41:40.5690926Z implementation, assume that all Tensor inputs to the operator are 2025-09-07T07:41:40.5691518Z regular CPU/CUDA/Meta tensors, but they do not have storage, and 2025-09-07T07:41:40.5692028Z you are trying to return regular CPU/CUDA/Meta tensor(s) as output. 2025-09-07T07:41:40.5692550Z The FakeTensor implementation must consist of only PyTorch operations 2025-09-07T07:41:40.5693156Z (and may not directly access the storage or data of any input or 2025-09-07T07:41:40.5693551Z intermediate Tensors). 2025-09-07T07:41:40.5693746Z 2025-09-07T07:41:40.5693895Z This API may be used as a decorator (see examples). 2025-09-07T07:41:40.5694145Z 2025-09-07T07:41:40.5694282Z For a detailed guide on custom ops, please see 2025-09-07T07:41:40.5694916Z https://pytorch.org/tutorials/advanced/custom_ops_landing_page.html 2025-09-07T07:41:40.5695281Z 2025-09-07T07:41:40.5695413Z Args: 2025-09-07T07:41:40.5695746Z op_name: Operator name (along with the overload) or OpOverload object. 2025-09-07T07:41:40.5696201Z func: Fake tensor implementation. 2025-09-07T07:41:40.5696601Z lib (Optional[Library]): Library to register the fake tensor to. 2025-09-07T07:41:40.5697104Z allow_override: Flag controlling if we want to override an 2025-09-07T07:41:40.5697549Z existing registered fake impl. This is by default off, 2025-09-07T07:41:40.5698029Z and will error you're trying to register a fake impl to 2025-09-07T07:41:40.5698497Z an operator that already has a fake impl. This also only 2025-09-07T07:41:40.5698927Z applies if the custom operator was not created via 2025-09-07T07:41:40.5699404Z torch.library.custom_op, as overriding and existing fake 2025-09-07T07:41:40.5699876Z impl is already allowed. 2025-09-07T07:41:40.5700122Z 2025-09-07T07:41:40.5700214Z Examples: 2025-09-07T07:41:40.5700435Z >>> import torch 2025-09-07T07:41:40.5700724Z >>> import numpy as np 2025-09-07T07:41:40.5701033Z >>> from torch import Tensor 2025-09-07T07:41:40.5701309Z >>> 2025-09-07T07:41:40.5701666Z >>> # Example 1: an operator without data-dependent output shape 2025-09-07T07:41:40.5702184Z >>> @torch.library.custom_op("mylib::custom_linear", mutates_args=()) 2025-09-07T07:41:40.5702782Z >>> def custom_linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-09-07T07:41:40.5703263Z >>> raise NotImplementedError("Implementation goes here") 2025-09-07T07:41:40.5703640Z >>> 2025-09-07T07:41:40.5703970Z >>> @torch.library.register_fake("mylib::custom_linear") 2025-09-07T07:41:40.5704361Z >>> def _(x, weight, bias): 2025-09-07T07:41:40.5704642Z >>> assert x.dim() == 2 2025-09-07T07:41:40.5704952Z >>> assert weight.dim() == 2 2025-09-07T07:41:40.5705282Z >>> assert bias.dim() == 1 2025-09-07T07:41:40.5705593Z >>> assert x.shape[1] == weight.shape[1] 2025-09-07T07:41:40.5705962Z >>> assert weight.shape[0] == bias.shape[0] 2025-09-07T07:41:40.5706298Z >>> assert x.device == weight.device 2025-09-07T07:41:40.5706613Z >>> 2025-09-07T07:41:40.5706831Z >>> return (x @ weight.t()) + bias 2025-09-07T07:41:40.5707151Z >>> 2025-09-07T07:41:40.5707426Z >>> with torch._subclasses.fake_tensor.FakeTensorMode(): 2025-09-07T07:41:40.5707814Z >>> x = torch.randn(2, 3) 2025-09-07T07:41:40.5708120Z >>> w = torch.randn(3, 3) 2025-09-07T07:41:40.5708411Z >>> b = torch.randn(3) 2025-09-07T07:41:40.5708755Z >>> y = torch.ops.mylib.custom_linear(x, w, b) 2025-09-07T07:41:40.5709067Z >>> 2025-09-07T07:41:40.5709301Z >>> assert y.shape == (2, 3) 2025-09-07T07:41:40.5709561Z >>> 2025-09-07T07:41:40.5709912Z >>> # Example 2: an operator with data-dependent output shape 2025-09-07T07:41:40.5710389Z >>> @torch.library.custom_op("mylib::custom_nonzero", mutates_args=()) 2025-09-07T07:41:40.5710906Z >>> def custom_nonzero(x: Tensor) -> Tensor: 2025-09-07T07:41:40.5711264Z >>> x_np = x.numpy(force=True) 2025-09-07T07:41:40.5711583Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-09-07T07:41:40.5711959Z >>> return torch.tensor(res, device=x.device) 2025-09-07T07:41:40.5712267Z >>> 2025-09-07T07:41:40.5712570Z >>> @torch.library.register_fake("mylib::custom_nonzero") 2025-09-07T07:41:40.5712915Z >>> def _(x): 2025-09-07T07:41:40.5713222Z >>> # Number of nonzero-elements is data-dependent. 2025-09-07T07:41:40.5713610Z >>> # Since we cannot peek at the data in an fake impl, 2025-09-07T07:41:40.5714035Z >>> # we use the ctx object to construct a new symint that 2025-09-07T07:41:40.5714442Z >>> # represents the data-dependent size. 2025-09-07T07:41:40.5714775Z >>> ctx = torch.library.get_ctx() 2025-09-07T07:41:40.5715122Z >>> nnz = ctx.new_dynamic_size() 2025-09-07T07:41:40.5715427Z >>> shape = [nnz, x.dim()] 2025-09-07T07:41:40.5715787Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-09-07T07:41:40.5716126Z >>> return result 2025-09-07T07:41:40.5716401Z >>> 2025-09-07T07:41:40.5716684Z >>> from torch.fx.experimental.proxy_tensor import make_fx 2025-09-07T07:41:40.5717065Z >>> 2025-09-07T07:41:40.5717309Z >>> x = torch.tensor([0, 1, 2, 3, 4, 0]) 2025-09-07T07:41:40.5717747Z >>> trace = make_fx(torch.ops.mylib.custom_nonzero, tracing_mode="symbolic")(x) 2025-09-07T07:41:40.5718218Z >>> trace.print_readable() 2025-09-07T07:41:40.5718484Z >>> 2025-09-07T07:41:40.5718891Z >>> assert torch.allclose(trace(x), torch.ops.mylib.custom_nonzero(x)) 2025-09-07T07:41:40.5719224Z 2025-09-07T07:41:40.5719305Z 2025-09-07T07:41:40.5719767Z Original Error: IndentationError('expected an indented block', ('', 38, 1, '_._ = None\n')) 2025-09-07T07:41:40.5720211Z 2025-09-07T07:41:40.5720329Z _._ = None 2025-09-07T07:41:40.5720523Z ^ 2025-09-07T07:41:42.1734375Z msg = Cannot scrape callname=get_kernel in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=1482. 2025-09-07T07:41:42.1735238Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:42.1735887Z Returns the computed kernel for a given operator and dispatch key. 2025-09-07T07:41:42.1736193Z 2025-09-07T07:41:42.1736577Z This function retrieves the kernel that would be executed for a given 2025-09-07T07:41:42.1737144Z operator and dispatch key combination. The returned SafeKernelFunction 2025-09-07T07:41:42.1737662Z can be used to call the kernel in a boxed fashion. The intended use 2025-09-07T07:41:42.1738186Z case for this function is to retrieve the original kernel for a given 2025-09-07T07:41:42.1738693Z dispatch key and then register another kernel to the same dispatch key 2025-09-07T07:41:42.1739194Z that calls into the original kernel for certain cases. 2025-09-07T07:41:42.1739459Z 2025-09-07T07:41:42.1739565Z Args: 2025-09-07T07:41:42.1739865Z op: Operator name (along with the overload) or OpOverload object 2025-09-07T07:41:42.1740420Z Can be a string (e.g., "aten::add.Tensor"), an OpOverload, or a CustomOpDef. 2025-09-07T07:41:42.1740975Z dispatch_key (str | torch.DispatchKey): The dispatch key to get the kernel for. 2025-09-07T07:41:42.1741532Z Can be a string (e.g., "CPU", "CUDA") or a DispatchKey enum value. 2025-09-07T07:41:42.1741825Z 2025-09-07T07:41:42.1741937Z Returns: 2025-09-07T07:41:42.1742277Z torch._C._SafeKernelFunction: A safe kernel function that can be used to 2025-09-07T07:41:42.1742806Z call the kernel. 2025-09-07T07:41:42.1742986Z 2025-09-07T07:41:42.1743070Z Raises: 2025-09-07T07:41:42.1743430Z RuntimeError: If the operator does not exist. 2025-09-07T07:41:42.1743671Z 2025-09-07T07:41:42.1743759Z Example: 2025-09-07T07:41:42.1744019Z >>> # Get the CPU kernel for torch.add 2025-09-07T07:41:42.1744444Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", "CPU") 2025-09-07T07:41:42.1744824Z >>> 2025-09-07T07:41:42.1745081Z >>> # You can also use DispatchKey enum 2025-09-07T07:41:42.1745545Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", torch.DispatchKey.CPU) 2025-09-07T07:41:42.1746003Z >>> 2025-09-07T07:41:42.1746219Z >>> # Or use an OpOverload directly 2025-09-07T07:41:42.1746654Z >>> kernel = torch.library.get_kernel(torch.ops.aten.add.Tensor, "CPU") 2025-09-07T07:41:42.1747156Z >>> 2025-09-07T07:41:42.1747543Z >>> # Example: Using get_kernel in a custom op with conditional dispatch 2025-09-07T07:41:42.1748035Z >>> # Get the original kernel for torch.sin 2025-09-07T07:41:42.1748468Z >>> original_sin_kernel = torch.library.get_kernel("aten::sin", "CPU") 2025-09-07T07:41:42.1748887Z >>> 2025-09-07T07:41:42.1749215Z >>> # If input has negative values, use original sin, otherwise return zeros 2025-09-07T07:41:42.1749690Z >>> def conditional_sin_impl(dispatch_keys, x): 2025-09-07T07:41:42.1750012Z >>> if (x < 0).any(): 2025-09-07T07:41:42.1750383Z >>> return original_sin_kernel.call_boxed(dispatch_keys, x) 2025-09-07T07:41:42.1750764Z >>> else: 2025-09-07T07:41:42.1751014Z >>> return torch.zeros_like(x) 2025-09-07T07:41:42.1751336Z >>> 2025-09-07T07:41:42.1751584Z >>> lib = torch.library.Library("aten", "IMPL") 2025-09-07T07:41:42.1752173Z >>> # with_keyset=True so the first argument to the impl is the current DispatchKeySet 2025-09-07T07:41:42.1752697Z >>> which needs to be the first argument to ``kernel.call_boxed`` 2025-09-07T07:41:42.1753190Z >>> lib.impl("sin", conditional_sin_impl, "CPU", with_keyset=True) 2025-09-07T07:41:42.1753564Z >>> 2025-09-07T07:41:42.1753813Z >>> # Test the conditional behavior 2025-09-07T07:41:42.1754157Z >>> x_positive = torch.tensor([1.0, 2.0]) 2025-09-07T07:41:42.1754476Z >>> x_mixed = torch.tensor([-1.0, 2.0]) 2025-09-07T07:41:42.1754808Z >>> torch.sin(x_positive) 2025-09-07T07:41:42.1755080Z tensor([0., 0.]) 2025-09-07T07:41:42.1755356Z >>> torch.sin(x_mixed) 2025-09-07T07:41:42.1755616Z tensor([-0.8415, 0.9093]) 2025-09-07T07:41:42.1755899Z 2025-09-07T07:41:42.1756486Z Original Error: SyntaxError('invalid syntax', ('', 23, 7, 'which needs to be the first argument to ``kernel.call_boxed``\n')) 2025-09-07T07:41:42.1757042Z 2025-09-07T07:41:42.1757221Z which needs to be the first argument to ``kernel.call_boxed`` 2025-09-07T07:41:42.1757601Z ^ 2025-09-07T07:41:42.1758208Z msg = Cannot scrape callname=is_available in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py line=66. 2025-09-07T07:41:42.1759064Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:42.1759634Z Check if the current accelerator is available at runtime: it was build, all the 2025-09-07T07:41:42.1760202Z required drivers are available and at least one device is visible. 2025-09-07T07:41:42.1760643Z See :ref:`accelerator` for details. 2025-09-07T07:41:42.1760911Z 2025-09-07T07:41:42.1760997Z Returns: 2025-09-07T07:41:42.1761396Z bool: A boolean indicating if there is an available :ref:`accelerator`. 2025-09-07T07:41:42.1761761Z 2025-09-07T07:41:42.1761993Z .. note:: This API delegates to the device-specific version of `is_available`. 2025-09-07T07:41:42.1763160Z On CUDA, when the environment variable ``PYTORCH_NVML_BASED_CUDA_CHECK=1`` is set, 2025-09-07T07:41:42.1763762Z this function will NOT poison fork. Otherwise, it will. For more details, see 2025-09-07T07:41:42.1764332Z :ref:`multiprocessing-poison-fork-note`. 2025-09-07T07:41:42.1764579Z 2025-09-07T07:41:42.1764696Z Example:: 2025-09-07T07:41:42.1764821Z 2025-09-07T07:41:42.1765076Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-09-07T07:41:42.1765545Z 2025-09-07T07:41:42.1766146Z Original Error: SyntaxError('invalid syntax', ('', 1, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-09-07T07:41:42.1766772Z 2025-09-07T07:41:42.1767020Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-09-07T07:41:42.1767501Z ^ 2025-09-07T07:41:42.1768198Z msg = Cannot scrape callname=synchronize in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py line=212. 2025-09-07T07:41:42.1769057Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:42.1769590Z Wait for all kernels in all streams on the given device to complete. 2025-09-07T07:41:42.1769914Z 2025-09-07T07:41:42.1769998Z Args: 2025-09-07T07:41:42.1770421Z device (:class:`torch.device`, str, int, optional): device for which to synchronize. It must match 2025-09-07T07:41:42.1771033Z the current :ref:`accelerator` device type. If not given, 2025-09-07T07:41:42.1771561Z use :func:`torch.accelerator.current_device_index` by default. 2025-09-07T07:41:42.1771858Z 2025-09-07T07:41:42.1772156Z .. note:: This function is a no-op if the current :ref:`accelerator` is not initialized. 2025-09-07T07:41:42.1772628Z 2025-09-07T07:41:42.1772715Z Example:: 2025-09-07T07:41:42.1772839Z 2025-09-07T07:41:42.1773001Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_CUDA) 2025-09-07T07:41:42.1773486Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-09-07T07:41:42.1774005Z >>> start_event = torch.Event(enable_timing=True) 2025-09-07T07:41:42.1774363Z >>> end_event = torch.Event(enable_timing=True) 2025-09-07T07:41:42.1774723Z >>> start_event.record() 2025-09-07T07:41:42.1775129Z >>> tensor = torch.randn(100, device=torch.accelerator.current_accelerator()) 2025-09-07T07:41:42.1775683Z >>> sum = torch.sum(tensor) 2025-09-07T07:41:42.1776001Z >>> end_event.record() 2025-09-07T07:41:42.1776291Z >>> torch.accelerator.synchronize() 2025-09-07T07:41:42.1776758Z >>> elapsed_time_ms = start_event.elapsed_time(end_event) 2025-09-07T07:41:42.1777104Z 2025-09-07T07:41:42.1777734Z Original Error: SyntaxError('invalid syntax', ('', 2, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-09-07T07:41:42.1778431Z 2025-09-07T07:41:42.1778697Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-09-07T07:41:42.1779218Z ^ 2025-09-07T07:41:42.4777814Z msg = Cannot scrape callname=cudart in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\__init__.py line=434. 2025-09-07T07:41:42.4778678Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:42.4779132Z Retrieves the CUDA runtime API module. 2025-09-07T07:41:42.4779408Z 2025-09-07T07:41:42.4779413Z 2025-09-07T07:41:42.4779656Z This function initializes the CUDA runtime environment if it is not already 2025-09-07T07:41:42.4780230Z initialized and returns the CUDA runtime API module (_cudart). The CUDA 2025-09-07T07:41:42.4780783Z runtime API module provides access to various CUDA runtime functions. 2025-09-07T07:41:42.4781129Z 2025-09-07T07:41:42.4781351Z Args: 2025-09-07T07:41:42.4781548Z ``None`` 2025-09-07T07:41:42.4781678Z 2025-09-07T07:41:42.4781790Z Returns: 2025-09-07T07:41:42.4782114Z module: The CUDA runtime API module (_cudart). 2025-09-07T07:41:42.4782379Z 2025-09-07T07:41:42.4782460Z Raises: 2025-09-07T07:41:42.4782790Z RuntimeError: If CUDA cannot be re-initialized in a forked subprocess. 2025-09-07T07:41:42.4783473Z AssertionError: If PyTorch is not compiled with CUDA support or if libcudart functions are unavailable. 2025-09-07T07:41:42.4783917Z 2025-09-07T07:41:42.4784097Z Example of CUDA operations with profiling: 2025-09-07T07:41:42.4784435Z >>> import torch 2025-09-07T07:41:42.4784719Z >>> from torch.cuda import cudart, check_error 2025-09-07T07:41:42.4785061Z >>> import os 2025-09-07T07:41:42.4785288Z >>> 2025-09-07T07:41:42.4785536Z >>> os.environ["CUDA_PROFILE"] = "1" 2025-09-07T07:41:42.4785827Z >>> 2025-09-07T07:41:42.4786130Z >>> def perform_cuda_operations_with_streams(): 2025-09-07T07:41:42.4786470Z >>> stream = torch.cuda.Stream() 2025-09-07T07:41:42.4786819Z >>> with torch.cuda.stream(stream): 2025-09-07T07:41:42.4787159Z >>> x = torch.randn(100, 100, device='cuda') 2025-09-07T07:41:42.4787535Z >>> y = torch.randn(100, 100, device='cuda') 2025-09-07T07:41:42.4787877Z >>> z = torch.mul(x, y) 2025-09-07T07:41:42.4788157Z >>> return z 2025-09-07T07:41:42.4788401Z >>> 2025-09-07T07:41:42.4788619Z >>> torch.cuda.synchronize() 2025-09-07T07:41:42.4788962Z >>> print("====== Start nsys profiling ======") 2025-09-07T07:41:42.4789317Z >>> check_error(cudart().cudaProfilerStart()) 2025-09-07T07:41:42.4789780Z >>> with torch.autograd.profiler.emit_nvtx(): 2025-09-07T07:41:42.4790207Z >>> result = perform_cuda_operations_with_streams() 2025-09-07T07:41:42.4791271Z >>> print("CUDA operations completed.") 2025-09-07T07:41:42.4791674Z >>> check_error(torch.cuda.cudart().cudaProfilerStop()) 2025-09-07T07:41:42.4792062Z >>> print("====== End nsys profiling ======") 2025-09-07T07:41:42.4792287Z 2025-09-07T07:41:42.4792499Z To run this example and save the profiling information, execute: 2025-09-07T07:41:42.4793136Z >>> $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-09-07T07:41:42.4793611Z 2025-09-07T07:41:42.4793839Z This command profiles the CUDA operations in the provided script and saves 2025-09-07T07:41:42.4794417Z the profiling information to a file named `trace_name.prof`. 2025-09-07T07:41:42.4795016Z The `--profile-from-start off` option ensures that profiling starts only 2025-09-07T07:41:42.4795518Z after the `cudaProfilerStart` call in the script. 2025-09-07T07:41:42.4795974Z The `--csv` and `--print-summary` options format the profiling output as a 2025-09-07T07:41:42.4796445Z CSV file and print a summary, respectively. 2025-09-07T07:41:42.4796951Z The `-o` option specifies the output file name, and the `-f` option forces the 2025-09-07T07:41:42.4797439Z overwrite of the output file if it already exists. 2025-09-07T07:41:42.4797788Z 2025-09-07T07:41:42.4798476Z Original Error: SyntaxError('invalid syntax', ('', 1, 1, '$ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py\n')) 2025-09-07T07:41:42.4799188Z 2025-09-07T07:41:42.4799520Z $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-09-07T07:41:42.4800058Z ^ 2025-09-07T07:41:42.4800890Z msg = Cannot scrape callname=ActivationSparsifier in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py line=16. 2025-09-07T07:41:42.4802028Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:42.4802370Z 2025-09-07T07:41:42.4802617Z The Activation sparsifier class aims to sparsify/prune activations in a neural 2025-09-07T07:41:42.4803254Z network. The idea is to attach the sparsifier to a layer (or layers) and it 2025-09-07T07:41:42.4803833Z zeroes out the activations based on the mask_fn (or sparsification function) 2025-09-07T07:41:42.4804258Z input by the user. 2025-09-07T07:41:42.4804629Z The mask_fn is applied once all the inputs are aggregated and reduced i.e. 2025-09-07T07:41:42.4805093Z mask = mask_fn(reduce_fn(aggregate_fn(activations))) 2025-09-07T07:41:42.4805371Z 2025-09-07T07:41:42.4805489Z Note:: 2025-09-07T07:41:42.4805901Z The sparsification mask is computed on the input **before it goes through the attached layer**. 2025-09-07T07:41:42.4806341Z 2025-09-07T07:41:42.4806428Z Args: 2025-09-07T07:41:42.4806654Z model (nn.Module): 2025-09-07T07:41:42.4807025Z The model whose layers will be sparsified. The layers that needs to be 2025-09-07T07:41:42.4807596Z sparsified should be added separately using the register_layer() function 2025-09-07T07:41:42.4808040Z aggregate_fn (Optional, Callable): 2025-09-07T07:41:42.4808512Z default aggregate_fn that is used if not specified while registering the layer. 2025-09-07T07:41:42.4809015Z specifies how inputs should be aggregated over time. 2025-09-07T07:41:42.4809572Z The aggregate_fn should usually take 2 torch tensors and return the aggregated tensor. 2025-09-07T07:41:42.4810059Z Example 2025-09-07T07:41:42.4810357Z def add_agg_fn(tensor1, tensor2): return tensor1 + tensor2 2025-09-07T07:41:42.4810770Z reduce_fn (Optional, Callable): 2025-09-07T07:41:42.4811207Z default reduce_fn that is used if not specified while registering the layer. 2025-09-07T07:41:42.4811870Z reduce_fn will be called on the aggregated tensor i.e. the tensor obtained after 2025-09-07T07:41:42.4812333Z calling agg_fn() on all inputs. 2025-09-07T07:41:42.4812665Z Example 2025-09-07T07:41:42.4813001Z def mean_reduce_fn(agg_tensor): return agg_tensor.mean(dim=0) 2025-09-07T07:41:42.4813434Z mask_fn (Optional, Callable): 2025-09-07T07:41:42.4813963Z default mask_fn that is used to create the sparsification mask using the tensor obtained after 2025-09-07T07:41:42.4814603Z calling the reduce_fn(). This is used by default if a custom one is passed in the 2025-09-07T07:41:42.4815083Z register_layer(). 2025-09-07T07:41:42.4815640Z Note that the mask_fn() definition should contain the sparse arguments that is passed in sparse_config 2025-09-07T07:41:42.4816276Z arguments. 2025-09-07T07:41:42.4816556Z features (Optional, list): 2025-09-07T07:41:42.4816909Z default selected features to sparsify. 2025-09-07T07:41:42.4817418Z If this is non-empty, then the mask_fn will be applied for each feature of the input. 2025-09-07T07:41:42.4817882Z For example, 2025-09-07T07:41:42.4818315Z mask = [mask_fn(reduce_fn(aggregated_fn(input[feature])) for feature in features] 2025-09-07T07:41:42.4818766Z feature_dim (Optional, int): 2025-09-07T07:41:42.4819261Z default dimension of input features. Again, features along this dim will be chosen 2025-09-07T07:41:42.4819722Z for sparsification. 2025-09-07T07:41:42.4820042Z sparse_config (Dict): 2025-09-07T07:41:42.4820455Z Default configuration for the mask_fn. This config will be passed 2025-09-07T07:41:42.4820946Z with the mask_fn() 2025-09-07T07:41:42.4821175Z 2025-09-07T07:41:42.4821286Z Example: 2025-09-07T07:41:42.4821493Z >>> # xdoctest: +SKIP 2025-09-07T07:41:42.4821767Z >>> model = SomeModel() 2025-09-07T07:41:42.4822218Z >>> act_sparsifier = ActivationSparsifier(...) # init activation sparsifier 2025-09-07T07:41:42.4822696Z >>> # Initialize aggregate_fn 2025-09-07T07:41:42.4823027Z >>> def agg_fn(x, y): 2025-09-07T07:41:42.4823302Z >>> return x + y 2025-09-07T07:41:42.4823550Z >>> 2025-09-07T07:41:42.4823752Z >>> # Initialize reduce_fn 2025-09-07T07:41:42.4824031Z >>> def reduce_fn(x): 2025-09-07T07:41:42.4824284Z >>> return torch.mean(x, dim=0) 2025-09-07T07:41:42.4824576Z >>> 2025-09-07T07:41:42.4824774Z >>> # Initialize mask_fn 2025-09-07T07:41:42.4825051Z >>> def mask_fn(data): 2025-09-07T07:41:42.4825335Z >>> return torch.eye(data.shape).to(data.device) 2025-09-07T07:41:42.4825671Z >>> 2025-09-07T07:41:42.4825853Z >>> 2025-09-07T07:41:42.4826086Z >>> act_sparsifier.register_layer( 2025-09-07T07:41:42.4826399Z ... model.some_layer, 2025-09-07T07:41:42.4826666Z ... aggregate_fn=agg_fn, 2025-09-07T07:41:42.4826951Z ... reduce_fn=reduce_fn, 2025-09-07T07:41:42.4827207Z ... mask_fn=mask_fn, 2025-09-07T07:41:42.4827467Z ... ) 2025-09-07T07:41:42.4827650Z >>> 2025-09-07T07:41:42.4827868Z >>> # start training process 2025-09-07T07:41:42.4828131Z >>> for _ in [...]: 2025-09-07T07:41:42.4828375Z >>> # epoch starts 2025-09-07T07:41:42.4828671Z >>> # model.forward(), compute_loss() and model.backwards() 2025-09-07T07:41:42.4829043Z >>> # epoch ends 2025-09-07T07:41:42.4829277Z >>> act_sparsifier.step() 2025-09-07T07:41:42.4829579Z >>> # end training process 2025-09-07T07:41:42.4829870Z >>> sparsifier.squash_mask() 2025-09-07T07:41:42.4830049Z 2025-09-07T07:41:42.4830387Z Original Error: IndentationError('expected an indented block', ('', 26, 1, '_._ = None\n')) 2025-09-07T07:41:42.4830856Z 2025-09-07T07:41:42.4830939Z _._ = None 2025-09-07T07:41:42.4831185Z ^ 2025-09-07T07:41:45.9655067Z msg = Cannot scrape callname=DeviceMesh.__getitem__ in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py line=701. 2025-09-07T07:41:45.9656042Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:45.9656393Z 2025-09-07T07:41:45.9656708Z Slice the current DeviceMesh based on the mesh_dim_names given to create a submesh. 2025-09-07T07:41:45.9657360Z The submesh created consists of the dimensions and the communicators indicated by 2025-09-07T07:41:45.9657807Z ``mesh_dim_names`` 2025-09-07T07:41:45.9657947Z 2025-09-07T07:41:45.9658062Z Args: 2025-09-07T07:41:45.9658394Z mesh_dim_names (Union[str, Tuple[str]]): the name or the tuple of names of the 2025-09-07T07:41:45.9659049Z mesh dimension of the DeviceMesh to create the submesh for. 2025-09-07T07:41:45.9659425Z Returns: 2025-09-07T07:41:45.9659676Z A :class:`DeviceMesh` object 2025-09-07T07:41:45.9659861Z 2025-09-07T07:41:45.9660164Z The following program runs on each process/rank in an SPMD manner in a world size of 8. 2025-09-07T07:41:45.9660630Z In the first example: 2025-09-07T07:41:45.9661084Z Calling mesh_2d["tp"] on rank 0, 1, 2, 3 returns a 1D submesh of DeviceMesh:([0, 1, 2, 3]). 2025-09-07T07:41:45.9661679Z Calling mesh_2d["tp"] on rank 4, 5, 6, 7 returns a 1D submesh of DeviceMesh:([4, 5, 6, 7]). 2025-09-07T07:41:45.9662259Z Calling mesh_2d["dp"] on rank 0, 4 returns a 1D submesh of DeviceMesh:([0, 4]). 2025-09-07T07:41:45.9662792Z Calling mesh_2d["dp"] on rank 1, 5 returns a 1D submesh of DeviceMesh:([1, 5]). 2025-09-07T07:41:45.9663348Z Calling mesh_2d["dp"] on rank 2, 6 returns a 1D submesh of DeviceMesh:([2, 6]). 2025-09-07T07:41:45.9663892Z Calling mesh_2d["dp"] on rank 3, 7 returns a 1D submesh of DeviceMesh:([3, 7]). 2025-09-07T07:41:45.9664212Z 2025-09-07T07:41:45.9664314Z In the second example: 2025-09-07T07:41:45.9664735Z Calling mesh_3d["dp", "cp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 1], [4, 5]]). 2025-09-07T07:41:45.9665413Z Calling mesh_3d["dp", "cp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 3], [6, 7]]). 2025-09-07T07:41:45.9666111Z Calling mesh_3d["cp", "dp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 4], [1, 5]]). 2025-09-07T07:41:45.9666730Z Calling mesh_3d["cp", "dp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 6], [3, 7]]). 2025-09-07T07:41:45.9667085Z 2025-09-07T07:41:45.9667213Z Example:: 2025-09-07T07:41:45.9667332Z 2025-09-07T07:41:45.9667462Z >>> # xdoctest: +SKIP("no rank") 2025-09-07T07:41:45.9667822Z >>> from torch.distributed.device_mesh import DeviceMesh 2025-09-07T07:41:45.9668198Z >>> 2025-09-07T07:41:45.9668499Z >>> # Initialize a 2D device mesh as (2, 4) to represent the topology 2025-09-07T07:41:45.9668952Z >>> # of cross-host(dim 0), and within-host (dim 1). 2025-09-07T07:41:45.9669446Z >>> mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-09-07T07:41:45.9669901Z >>> tp_mesh = mesh_2d["tp"] 2025-09-07T07:41:45.9670196Z >>> dp_mesh = mesh_2d["dp"] 2025-09-07T07:41:45.9670447Z >>> 2025-09-07T07:41:45.9670674Z >>> # Initialize a 3D mesh. 2025-09-07T07:41:45.9671118Z >>> mesh_3d = init_device_mesh(device_type="cuda", (2,2,2), mesh_dim_names=("dp", "pp", "cp")) 2025-09-07T07:41:45.9671790Z >>> # The order of the mesh_dim_names provided deteremines the order of dimensions in the submesh. 2025-09-07T07:41:45.9672317Z >>> dp_cp_mesh = mesh_3d["dp", "cp"] 2025-09-07T07:41:45.9672627Z >>> cp_dp_mesh = mesh_3d["cp", "dp"] 2025-09-07T07:41:45.9672830Z 2025-09-07T07:41:45.9673466Z Original Error: SyntaxError('positional argument follows keyword argument', ('', 6, 82, 'mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp"))\n')) 2025-09-07T07:41:45.9674174Z 2025-09-07T07:41:45.9674405Z mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-09-07T07:41:45.9675028Z ^ 2025-09-07T07:41:45.9675837Z msg = Cannot scrape callname=SavePlanner in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\planner.py line=122. 2025-09-07T07:41:45.9676720Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:45.9677061Z 2025-09-07T07:41:45.9677353Z Abstract class defining the protocol used by save_state_dict to plan the save process. 2025-09-07T07:41:45.9677731Z 2025-09-07T07:41:45.9678006Z SavePlanners are stateful objects that can be used to customize the whole save process. 2025-09-07T07:41:45.9678408Z 2025-09-07T07:41:45.9678721Z SavePlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-09-07T07:41:45.9679227Z will be visible to the whole process. 2025-09-07T07:41:45.9679433Z 2025-09-07T07:41:45.9679709Z A planner subclass can expect the following sequence of calls during save_state_dict: 2025-09-07T07:41:45.9680103Z 2025-09-07T07:41:45.9680226Z 1) set_up_planner - called on all ranks. 2025-09-07T07:41:45.9680555Z Signals the start of a checkpoint save. 2025-09-07T07:41:45.9680795Z 2025-09-07T07:41:45.9680914Z 2) create_local_plan - called on all ranks. 2025-09-07T07:41:45.9681410Z Process the state_dict and produces a `SavePlan` that will be sent for global planning. 2025-09-07T07:41:45.9681788Z 2025-09-07T07:41:45.9681965Z 3) create_global_plan - called on the coordinator rank only. 2025-09-07T07:41:45.9682441Z Takes the SavePlan from all ranks and make any global decision. 2025-09-07T07:41:45.9682735Z 2025-09-07T07:41:45.9682843Z 4) finish_plan - called on all ranks. 2025-09-07T07:41:45.9683271Z This gives each rank a chance to adjust to global planning decisions. 2025-09-07T07:41:45.9683581Z 2025-09-07T07:41:45.9683753Z 5) resolve_data - called multiple times on each rank 2025-09-07T07:41:45.9684249Z Lookups a value on the `state_dict` for the storage layer to write. 2025-09-07T07:41:45.9684548Z 2025-09-07T07:41:45.9684853Z Users are recommended to extend DefaultSavePlanner instead of this interface directly as 2025-09-07T07:41:45.9685474Z most changes can be expressed by changes in a single method. 2025-09-07T07:41:45.9685774Z 2025-09-07T07:41:45.9685896Z There are 3 usual patterns of extension: 2025-09-07T07:41:45.9686104Z 2025-09-07T07:41:45.9686345Z Rewriting state_dict. This is the simplest way to extend the save process as it 2025-09-07T07:41:45.9686925Z doesn't requite understanding the intrincacies of how SavePlan works: 2025-09-07T07:41:45.9687243Z 2025-09-07T07:41:45.9687378Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:41:45.9687711Z >>> class RenamePlanner(DefaultSavePlanner): 2025-09-07T07:41:45.9688052Z >>> def set_up_planner( 2025-09-07T07:41:45.9688296Z >>> self, 2025-09-07T07:41:45.9688551Z >>> state_dict: STATE_DICT_TYPE, 2025-09-07T07:41:45.9688868Z >>> storage_meta: Optional[StorageMeta], 2025-09-07T07:41:45.9689208Z >>> is_coordinator: bool, 2025-09-07T07:41:45.9689498Z >>> ) -> None: 2025-09-07T07:41:45.9689742Z >>> # prefix all keys with `foo_`` 2025-09-07T07:41:45.9690223Z >>> super().set_up_planner({"foo_" + k: v for k, v in state_dict.items()}, storage_meta, is_coordinator) 2025-09-07T07:41:45.9690604Z 2025-09-07T07:41:45.9690918Z Modifying local plan and lookup in tandem. This is useful when fine control of how data is persisted 2025-09-07T07:41:45.9691360Z 2025-09-07T07:41:45.9691474Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:41:45.9691798Z >>> class FP16Planner(DefaultSavePlanner): 2025-09-07T07:41:45.9692151Z >>> def create_local_plan(self): 2025-09-07T07:41:45.9692478Z >>> plan = super().create_local_plan() 2025-09-07T07:41:45.9692787Z >>> for p in plan: 2025-09-07T07:41:45.9693077Z >>> if p.tensor_data is not None: 2025-09-07T07:41:45.9693502Z >>> p.tensor_data.properties.dtype = torch.float16 2025-09-07T07:41:45.9693886Z >>> return plan 2025-09-07T07:41:45.9694118Z >>> 2025-09-07T07:41:45.9694358Z >>> def resolve_data(self, write_item): 2025-09-07T07:41:45.9694684Z >>> item = super().resolve_data(write_item) 2025-09-07T07:41:45.9695182Z >>> return item if write_item.type == WriteItemType.BYTE_IO else item.to(torch.float16) 2025-09-07T07:41:45.9695548Z 2025-09-07T07:41:45.9695894Z Using the global planning step to make central decisions that can't be made individually by each rank 2025-09-07T07:41:45.9696321Z 2025-09-07T07:41:45.9696432Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:41:45.9696764Z >>> from itertools import zip_longest 2025-09-07T07:41:45.9697123Z >>> from dataclasses import replace 2025-09-07T07:41:45.9697507Z >>> class DDPLoadBalancingPlanner(DefaultSavePlanner): 2025-09-07T07:41:45.9698030Z >>> # This uses the default local plan behavior of having all non-sharded writes in rank 0 2025-09-07T07:41:45.9698549Z >>> # This sample doesn't handle ShardedTensors 2025-09-07T07:41:45.9698913Z >>> def create_global_plan(self, all_plans): 2025-09-07T07:41:45.9699283Z >>> iters = [iter(all_plans[0].items)] * len(all_plans) 2025-09-07T07:41:45.9699653Z >>> items_per_rank = [ 2025-09-07T07:41:45.9699952Z >>> [item for item in items if item is not None] 2025-09-07T07:41:45.9700367Z >>> for items in zip(*zip_longest(*iters), strict=True) 2025-09-07T07:41:45.9700702Z >>> ] 2025-09-07T07:41:45.9700942Z >>> all_plans = [ 2025-09-07T07:41:45.9701300Z >>> replace(plan, items=items) 2025-09-07T07:41:45.9701708Z >>> for plan, items in zip(all_plans, items_per_rank, strict=True) 2025-09-07T07:41:45.9702145Z >>> ] 2025-09-07T07:41:45.9702442Z >>> return super().create_global_plan(all_plans) 2025-09-07T07:41:45.9702708Z 2025-09-07T07:41:45.9703024Z Finally, some planners need to save additional metadata in the checkpoint, this is 2025-09-07T07:41:45.9703668Z accomplished by having each rank contribute their data items in the local plan and 2025-09-07T07:41:45.9704219Z the global planner aggregate them: 2025-09-07T07:41:45.9704414Z 2025-09-07T07:41:45.9704527Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:41:45.9704922Z >>> class SaveExtraDataPlanner(DefaultSavePlanner): 2025-09-07T07:41:45.9705307Z >>> def create_local_plan(self) -> SavePlan: 2025-09-07T07:41:45.9705683Z >>> plan = super().create_local_plan() 2025-09-07T07:41:45.9706048Z >>> return replace(plan, planner_data="per-rank-data") 2025-09-07T07:41:45.9706423Z >>> 2025-09-07T07:41:45.9706820Z >>> def create_global_plan(self, all_plans: List[SavePlan]) -> Tuple[List[SavePlan], Metadata]: 2025-09-07T07:41:45.9707429Z >>> global_plan, metadata = super().create_global_plan(all_plans) 2025-09-07T07:41:45.9707913Z >>> merged_data = [p.planner_data for p in global_plan] 2025-09-07T07:41:45.9708342Z >>> metadata = replace(metadata, planner_data=merged_data) 2025-09-07T07:41:45.9708751Z >>> return global_plan, metadata 2025-09-07T07:41:45.9708960Z 2025-09-07T07:41:45.9709293Z Original Error: IndentationError('expected an indented block', ('', 9, 0, '_._ = None\n')) 2025-09-07T07:41:45.9709758Z 2025-09-07T07:41:45.9709844Z _._ = None 2025-09-07T07:41:45.9710082Z ^ 2025-09-07T07:41:46.1551094Z msg = Cannot scrape callname=LoadPlanner in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\planner.py line=305. 2025-09-07T07:41:46.1552087Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:46.1552438Z 2025-09-07T07:41:46.1552732Z Abstract class defining the protocol used by load_state_dict to plan the load process. 2025-09-07T07:41:46.1553141Z 2025-09-07T07:41:46.1553413Z LoadPlanner are stateful objects that can be used to customize the whole load process. 2025-09-07T07:41:46.1553894Z 2025-09-07T07:41:46.1554165Z LoadPlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-09-07T07:41:46.1554681Z will be visible to the whole process. 2025-09-07T07:41:46.1554886Z 2025-09-07T07:41:46.1555234Z A planner subclass can expect the following sequence of calls during load_state_dict: 2025-09-07T07:41:46.1555652Z 2025-09-07T07:41:46.1555820Z 1) set_up_planner - called on all ranks. 2025-09-07T07:41:46.1556196Z Signals the start of loading a checkpoint. 2025-09-07T07:41:46.1556421Z 2025-09-07T07:41:46.1556540Z 2) create_local_plan - called on all ranks. 2025-09-07T07:41:46.1557045Z Process the state_dict and produces a `LoadPlan` that will be sent for global planning. 2025-09-07T07:41:46.1557484Z 2025-09-07T07:41:46.1557683Z 3) create_global_plan - called on the coordinator rank only. 2025-09-07T07:41:46.1558150Z Takes the LoadPlan from all ranks and make any global decision. 2025-09-07T07:41:46.1558448Z 2025-09-07T07:41:46.1558615Z 4) load_bytes - called multiple times on each rank 2025-09-07T07:41:46.1559014Z This is called once per non-tensor value in state_dict. 2025-09-07T07:41:46.1559307Z 2025-09-07T07:41:46.1559518Z 5) resolve_tensor and commit_tensor - called multiple times on each rank 2025-09-07T07:41:46.1560002Z They are called in pair for each Tensor value in state_dict. 2025-09-07T07:41:46.1560300Z 2025-09-07T07:41:46.1560582Z Users are recommended to extend DefaultLoadPlanner instead of this interface directly as 2025-09-07T07:41:46.1561173Z most changes can be expressed by changes in a single method. 2025-09-07T07:41:46.1561448Z 2025-09-07T07:41:46.1561578Z There are two usual patterns of extension: 2025-09-07T07:41:46.1561819Z 2025-09-07T07:41:46.1562063Z Rewriting state_dict. This is the simplest way to extend the load process as it 2025-09-07T07:41:46.1562660Z doesn't requite understanding the intrincacies of how LoadPlan works. We need 2025-09-07T07:41:46.1563289Z to keep a reference to the original state_dict as load happens in place so 2025-09-07T07:41:46.1563760Z we need to be able to perform it in place 2025-09-07T07:41:46.1564028Z 2025-09-07T07:41:46.1564142Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:41:46.1564492Z >>> class RenamePlanner(DefaultLoadPlanner): 2025-09-07T07:41:46.1564822Z >>> def set_up_planner( 2025-09-07T07:41:46.1565121Z >>> self, 2025-09-07T07:41:46.1565355Z >>> state_dict: STATE_DICT_TYPE, 2025-09-07T07:41:46.1565672Z >>> metadata: Metadata, 2025-09-07T07:41:46.1565947Z >>> is_coordinator: bool, 2025-09-07T07:41:46.1566242Z >>> ) -> None: 2025-09-07T07:41:46.1566517Z >>> self.original_state_dict = state_dict 2025-09-07T07:41:46.1566905Z >>> state_dict = {"foo_" + k: v for k, v in state_dict.items()} 2025-09-07T07:41:46.1567277Z >>> 2025-09-07T07:41:46.1567499Z >>> if self.flatten_sharded_tensors: 2025-09-07T07:41:46.1567878Z >>> state_dict = _flatten_sharded_tensors(state_dict) 2025-09-07T07:41:46.1568206Z >>> 2025-09-07T07:41:46.1568441Z >>> if self.flatten_state_dict: 2025-09-07T07:41:46.1568814Z >>> state_dict, self.mappings = flatten_state_dict(state_dict) 2025-09-07T07:41:46.1569197Z >>> 2025-09-07T07:41:46.1569432Z >>> self.state_dict = state_dict 2025-09-07T07:41:46.1569736Z >>> self.metadata = metadata 2025-09-07T07:41:46.1570069Z >>> self.is_coordinator = is_coordinator 2025-09-07T07:41:46.1570365Z >>> 2025-09-07T07:41:46.1570613Z >>> def load_bytes(self, read_item, value): 2025-09-07T07:41:46.1570933Z >>> # Remove the "foo_" prefix 2025-09-07T07:41:46.1571437Z >>> self.original_state_dict[read_item.dest_index.fqn[4:]] = torch.load(value, weights_only=False) 2025-09-07T07:41:46.1571847Z 2025-09-07T07:41:46.1571851Z 2025-09-07T07:41:46.1572119Z Modifying resolve_tensor and commit_tensor to handle load time transformation. 2025-09-07T07:41:46.1572526Z 2025-09-07T07:41:46.1572645Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:41:46.1573018Z >>> class MetaModelMaterialize(DefaultSavePlanner): 2025-09-07T07:41:46.1573383Z >>> def resolve_tensor(self, read_item): 2025-09-07T07:41:46.1573744Z >>> tensor = super().resolve_tensor(read_item) 2025-09-07T07:41:46.1574112Z >>> return torch.empty_like(tensor, device="cpu") 2025-09-07T07:41:46.1574453Z >>> 2025-09-07T07:41:46.1574681Z >>> def commit_tensor(self, read_item, tensor): 2025-09-07T07:41:46.1575082Z >>> self.state_dict[read_item.dest_index.fqn] = tensor 2025-09-07T07:41:46.1575337Z 2025-09-07T07:41:46.1575693Z Original Error: IndentationError('expected an indented block', ('', 23, 0, '_._ = None\n')) 2025-09-07T07:41:46.1576136Z 2025-09-07T07:41:46.1576274Z _._ = None 2025-09-07T07:41:46.1576495Z ^ 2025-09-07T07:41:46.1577147Z msg = Cannot scrape callname=FullStateDictConfig in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py line=295. 2025-09-07T07:41:46.1578058Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:46.1578399Z 2025-09-07T07:41:46.1578618Z ``FullStateDictConfig`` is a config class meant to be used with 2025-09-07T07:41:46.1579102Z ``StateDictType.FULL_STATE_DICT``. We recommend enabling both 2025-09-07T07:41:46.1579600Z ``offload_to_cpu=True`` and ``rank0_only=True`` when saving full state 2025-09-07T07:41:46.1580095Z dicts to save GPU memory and CPU memory, respectively. This config class 2025-09-07T07:41:46.1580614Z is meant to be used via the :func:`state_dict_type` context manager as 2025-09-07T07:41:46.1580988Z follows: 2025-09-07T07:41:46.1581132Z 2025-09-07T07:41:46.1581255Z >>> # xdoctest: +SKIP("undefined variables") 2025-09-07T07:41:46.1581798Z >>> from torch.distributed.fsdp import FullyShardedDataParallel as FSDP 2025-09-07T07:41:46.1582247Z >>> fsdp = FSDP(model, auto_wrap_policy=...) 2025-09-07T07:41:46.1582761Z >>> cfg = FullStateDictConfig(offload_to_cpu=True, rank0_only=True) 2025-09-07T07:41:46.1583272Z >>> with FSDP.state_dict_type(fsdp, StateDictType.FULL_STATE_DICT, cfg): 2025-09-07T07:41:46.1583769Z >>> state = fsdp.state_dict() 2025-09-07T07:41:46.1584166Z >>> # `state` will be empty on non rank 0 and contain CPU tensors on rank 0. 2025-09-07T07:41:46.1584729Z >>> # To reload checkpoint for inference, finetuning, transfer learning, etc: 2025-09-07T07:41:46.1585294Z >>> model = model_fn() # Initialize model in preparation for wrapping with FSDP 2025-09-07T07:41:46.1585724Z >>> if dist.get_rank() == 0: 2025-09-07T07:41:46.1586096Z >>> # Load checkpoint only on rank 0 to avoid memory redundancy 2025-09-07T07:41:46.1586578Z >>> state_dict = torch.load("my_checkpoint.pt") 2025-09-07T07:41:46.1587001Z >>> model.load_state_dict(state_dict) 2025-09-07T07:41:46.1587483Z >>> # All ranks initialize FSDP module as usual. `sync_module_states` argument 2025-09-07T07:41:46.1588065Z >>> # communicates loaded checkpoint states from rank 0 to rest of the world. 2025-09-07T07:41:46.1588510Z >>> fsdp = FSDP( 2025-09-07T07:41:46.1588735Z ... model, 2025-09-07T07:41:46.1589007Z ... device_id=torch.cuda.current_device(), 2025-09-07T07:41:46.1589331Z ... auto_wrap_policy=..., 2025-09-07T07:41:46.1589632Z ... sync_module_states=True, 2025-09-07T07:41:46.1604587Z ... ) 2025-09-07T07:41:46.1605020Z >>> # After this point, all ranks have FSDP model with loaded checkpoint. 2025-09-07T07:41:46.1605354Z 2025-09-07T07:41:46.1605452Z Attributes: 2025-09-07T07:41:46.1605804Z rank0_only (bool): If ``True``, then only rank 0 saves the full state 2025-09-07T07:41:46.1606345Z dict, and nonzero ranks save an empty dict. If ``False``, then all 2025-09-07T07:41:46.1606809Z ranks save the full state dict. (Default: ``False``) 2025-09-07T07:41:46.1607180Z 2025-09-07T07:41:46.1607552Z Original Error: IndentationError('expected an indented block', ('', 11, 1, '_._ = None\n')) 2025-09-07T07:41:46.1607995Z 2025-09-07T07:41:46.1608081Z _._ = None 2025-09-07T07:41:46.1608313Z ^ 2025-09-07T07:41:51.6569679Z msg = Cannot scrape callname=register_parametrization in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrize.py line=424. 2025-09-07T07:41:51.6570665Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:51.6571197Z Register a parametrization to a tensor in a module. 2025-09-07T07:41:51.6571455Z 2025-09-07T07:41:51.6571714Z Assume that ``tensor_name="weight"`` for simplicity. When accessing ``module.weight``, 2025-09-07T07:41:51.6572947Z the module will return the parametrized version ``parametrization(module.weight)``. 2025-09-07T07:41:51.6573577Z If the original tensor requires a gradient, the backward pass will differentiate 2025-09-07T07:41:51.6574250Z through :attr:`parametrization`, and the optimizer will update the tensor accordingly. 2025-09-07T07:41:51.6574631Z 2025-09-07T07:41:51.6574953Z The first time that a module registers a parametrization, this function will add an attribute 2025-09-07T07:41:51.6575588Z ``parametrizations`` to the module of type :class:`~ParametrizationList`. 2025-09-07T07:41:51.6575957Z 2025-09-07T07:41:51.6576206Z The list of parametrizations on the tensor ``weight`` will be accessible under 2025-09-07T07:41:51.6576687Z ``module.parametrizations.weight``. 2025-09-07T07:41:51.6576935Z 2025-09-07T07:41:51.6577056Z The original tensor will be accessible under 2025-09-07T07:41:51.6577455Z ``module.parametrizations.weight.original``. 2025-09-07T07:41:51.6577704Z 2025-09-07T07:41:51.6577946Z Parametrizations may be concatenated by registering several parametrizations 2025-09-07T07:41:51.6578398Z on the same attribute. 2025-09-07T07:41:51.6578554Z 2025-09-07T07:41:51.6578773Z The training mode of a registered parametrization is updated on registration 2025-09-07T07:41:51.6579297Z to match the training mode of the host module 2025-09-07T07:41:51.6579518Z 2025-09-07T07:41:51.6579880Z Parametrized parameters and buffers have an inbuilt caching system that can be activated 2025-09-07T07:41:51.6580378Z using the context manager :func:`cached`. 2025-09-07T07:41:51.6580589Z 2025-09-07T07:41:51.6580820Z A :attr:`parametrization` may optionally implement a method with signature 2025-09-07T07:41:51.6581149Z 2025-09-07T07:41:51.6581291Z .. code-block:: python 2025-09-07T07:41:51.6581466Z 2025-09-07T07:41:51.6581667Z def right_inverse(self, X: Tensor) -> Union[Tensor, Sequence[Tensor]] 2025-09-07T07:41:51.6581969Z 2025-09-07T07:41:51.6582225Z This method is called on the unparametrized tensor when the first parametrization 2025-09-07T07:41:51.6582755Z is registered to compute the initial value of the original tensor. 2025-09-07T07:41:51.6583340Z If this method is not implemented, the original tensor will be just the unparametrized tensor. 2025-09-07T07:41:51.6583725Z 2025-09-07T07:41:51.6584004Z If all the parametrizations registered on a tensor implement `right_inverse` it is possible 2025-09-07T07:41:51.6584671Z to initialize a parametrized tensor by assigning to it, as shown in the example below. 2025-09-07T07:41:51.6585039Z 2025-09-07T07:41:51.6585261Z It is possible for the first parametrization to depend on several inputs. 2025-09-07T07:41:51.6585795Z This may be implemented returning a tuple of tensors from ``right_inverse`` 2025-09-07T07:41:51.6586349Z (see the example implementation of a ``RankOne`` parametrization below). 2025-09-07T07:41:51.6586671Z 2025-09-07T07:41:51.6586984Z In this case, the unconstrained tensors are also located under ``module.parametrizations.weight`` 2025-09-07T07:41:51.6587530Z with names ``original0``, ``original1``,... 2025-09-07T07:41:51.6587807Z 2025-09-07T07:41:51.6587906Z .. note:: 2025-09-07T07:41:51.6588020Z 2025-09-07T07:41:51.6588270Z If unsafe=False (default) both the forward and right_inverse methods will be called 2025-09-07T07:41:51.6588772Z once to perform a number of consistency checks. 2025-09-07T07:41:51.6589249Z If unsafe=True, then right_inverse will be called if the tensor is not parametrized, 2025-09-07T07:41:51.6589820Z and nothing will be called otherwise. 2025-09-07T07:41:51.6590027Z 2025-09-07T07:41:51.6590104Z .. note:: 2025-09-07T07:41:51.6590236Z 2025-09-07T07:41:51.6590420Z In most situations, ``right_inverse`` will be a function such that 2025-09-07T07:41:51.6590820Z ``forward(right_inverse(X)) == X`` (see 2025-09-07T07:41:51.6591359Z `right inverse `_). 2025-09-07T07:41:51.6591965Z Sometimes, when the parametrization is not surjective, it may be reasonable 2025-09-07T07:41:51.6592380Z to relax this. 2025-09-07T07:41:51.6592529Z 2025-09-07T07:41:51.6592613Z .. warning:: 2025-09-07T07:41:51.6592732Z 2025-09-07T07:41:51.6592996Z If a parametrization depends on several inputs, :func:`~register_parametrization` 2025-09-07T07:41:51.6593588Z will register a number of new parameters. If such parametrization is registered 2025-09-07T07:41:51.6594182Z after the optimizer is created, these new parameters will need to be added manually 2025-09-07T07:41:51.6594710Z to the optimizer. See :meth:`torch.Optimizer.add_param_group`. 2025-09-07T07:41:51.6595035Z 2025-09-07T07:41:51.6595112Z Args: 2025-09-07T07:41:51.6595416Z module (nn.Module): module on which to register the parametrization 2025-09-07T07:41:51.6595908Z tensor_name (str): name of the parameter or buffer on which to register 2025-09-07T07:41:51.6596315Z the parametrization 2025-09-07T07:41:51.6596665Z parametrization (nn.Module): the parametrization to register 2025-09-07T07:41:51.6597047Z Keyword args: 2025-09-07T07:41:51.6597421Z unsafe (bool): a boolean flag that denotes whether the parametrization 2025-09-07T07:41:51.6597955Z may change the dtype and shape of the tensor. Default: `False` 2025-09-07T07:41:51.6598500Z Warning: the parametrization is not checked for consistency upon registration. 2025-09-07T07:41:51.6598954Z Enable this flag at your own risk. 2025-09-07T07:41:51.6599162Z 2025-09-07T07:41:51.6599251Z Raises: 2025-09-07T07:41:51.6599618Z ValueError: if the module does not have a parameter or a buffer named :attr:`tensor_name` 2025-09-07T07:41:51.6600001Z 2025-09-07T07:41:51.6600078Z Examples: 2025-09-07T07:41:51.6600329Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_LAPACK) 2025-09-07T07:41:51.6600654Z >>> import torch 2025-09-07T07:41:51.6600907Z >>> import torch.nn as nn 2025-09-07T07:41:51.6601198Z >>> import torch.nn.utils.parametrize as P 2025-09-07T07:41:51.6601504Z >>> 2025-09-07T07:41:51.6601695Z >>> class Symmetric(nn.Module): 2025-09-07T07:41:51.6601989Z >>> def forward(self, X): 2025-09-07T07:41:51.6602329Z >>> return X.triu() + X.triu(1).T # Return a symmetric matrix 2025-09-07T07:41:51.6602690Z >>> 2025-09-07T07:41:51.6602887Z >>> def right_inverse(self, A): 2025-09-07T07:41:51.6603182Z >>> return A.triu() 2025-09-07T07:41:51.6603442Z >>> 2025-09-07T07:41:51.6603626Z >>> m = nn.Linear(5, 5) 2025-09-07T07:41:51.6603956Z >>> P.register_parametrization(m, "weight", Symmetric()) 2025-09-07T07:41:51.6604430Z >>> print(torch.allclose(m.weight, m.weight.T)) # m.weight is now symmetric 2025-09-07T07:41:51.6604848Z True 2025-09-07T07:41:51.6605043Z >>> A = torch.rand(5, 5) 2025-09-07T07:41:51.6605327Z >>> A = A + A.T # A is now symmetric 2025-09-07T07:41:51.6605749Z >>> m.weight = A # Initialize the weight to be the symmetric matrix A 2025-09-07T07:41:51.6606170Z >>> print(torch.allclose(m.weight, A)) 2025-09-07T07:41:51.6606465Z True 2025-09-07T07:41:51.6606577Z 2025-09-07T07:41:51.6606674Z >>> class RankOne(nn.Module): 2025-09-07T07:41:51.6606962Z >>> def forward(self, x, y): 2025-09-07T07:41:51.6607276Z >>> # Form a rank 1 matrix multiplying two vectors 2025-09-07T07:41:51.6607663Z >>> return x.unsqueeze(-1) @ y.unsqueeze(-2) 2025-09-07T07:41:51.6607953Z >>> 2025-09-07T07:41:51.6608182Z >>> def right_inverse(self, Z): 2025-09-07T07:41:51.6608479Z >>> # Project Z onto the rank 1 matrices 2025-09-07T07:41:51.6608829Z >>> U, S, Vh = torch.linalg.svd(Z, full_matrices=False) 2025-09-07T07:41:51.6609238Z >>> # Return rescaled singular vectors 2025-09-07T07:41:51.6609550Z >>> s0_sqrt = S[0].sqrt().unsqueeze(-1) 2025-09-07T07:41:51.6609906Z >>> return U[..., :, 0] * s0_sqrt, Vh[..., 0, :] * s0_sqrt 2025-09-07T07:41:51.6610213Z >>> 2025-09-07T07:41:51.6610464Z >>> linear_rank_one = P.register_parametrization( 2025-09-07T07:41:51.6610803Z ... nn.Linear(4, 4), "weight", RankOne() 2025-09-07T07:41:51.6611097Z ... ) 2025-09-07T07:41:51.6611387Z >>> print(torch.linalg.matrix_rank(linear_rank_one.weight).item()) 2025-09-07T07:41:51.6611766Z 1 2025-09-07T07:41:51.6611868Z 2025-09-07T07:41:51.6611951Z 2025-09-07T07:41:51.6612361Z Original Error: IndentationError('expected an indented block', ('', 3, 0, '_._ = None\n')) 2025-09-07T07:41:51.6612784Z 2025-09-07T07:41:51.6612868Z _._ = None 2025-09-07T07:41:51.6613041Z ^ 2025-09-07T07:41:51.6618426Z msg = Cannot scrape callname=ReduceLROnPlateau in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py line=1236. 2025-09-07T07:41:51.6619310Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:51.6619870Z Reduce learning rate when a metric has stopped improving. 2025-09-07T07:41:51.6620157Z 2025-09-07T07:41:51.6620389Z Models often benefit from reducing the learning rate by a factor 2025-09-07T07:41:51.6620846Z of 2-10 once learning stagnates. This scheduler reads a metrics 2025-09-07T07:41:51.6621303Z quantity and if no improvement is seen for a 'patience' number 2025-09-07T07:41:51.6621701Z of epochs, the learning rate is reduced. 2025-09-07T07:41:51.6621905Z 2025-09-07T07:41:51.6621979Z Args: 2025-09-07T07:41:51.6622212Z optimizer (Optimizer): Wrapped optimizer. 2025-09-07T07:41:51.6622568Z mode (str): One of `min`, `max`. In `min` mode, lr will 2025-09-07T07:41:51.6622965Z be reduced when the quantity monitored has stopped 2025-09-07T07:41:51.6623349Z decreasing; in `max` mode it will be reduced when the 2025-09-07T07:41:51.6623787Z quantity monitored has stopped increasing. Default: 'min'. 2025-09-07T07:41:51.6624231Z factor (float): Factor by which the learning rate will be 2025-09-07T07:41:51.6624609Z reduced. new_lr = lr * factor. Default: 0.1. 2025-09-07T07:41:51.6625032Z patience (int): The number of allowed epochs with no improvement after 2025-09-07T07:41:51.6625461Z which the learning rate will be reduced. 2025-09-07T07:41:51.6625887Z For example, consider the case of having no patience (`patience = 0`). 2025-09-07T07:41:51.6626530Z In the first epoch, a baseline is established and is always considered good as there's no previous baseline. 2025-09-07T07:41:51.6627153Z In the second epoch, if the performance is worse than the baseline, 2025-09-07T07:41:51.6627573Z we have what is considered an intolerable epoch. 2025-09-07T07:41:51.6628047Z Since the count of intolerable epochs (1) is greater than the patience level (0), 2025-09-07T07:41:51.6628605Z the learning rate is reduced at the end of this epoch. 2025-09-07T07:41:51.6629143Z From the third epoch onwards, the learning rate continues to be reduced at the end of each epoch 2025-09-07T07:41:51.6629895Z if the performance is worse than the baseline. If the performance improves or remains the same, 2025-09-07T07:41:51.6630390Z the learning rate is not adjusted. 2025-09-07T07:41:51.6630681Z Default: 10. 2025-09-07T07:41:51.6630991Z threshold (float): Threshold for measuring the new optimum, 2025-09-07T07:41:51.6631418Z to only focus on significant changes. Default: 1e-4. 2025-09-07T07:41:51.6631934Z threshold_mode (str): One of `rel`, `abs`. In `rel` mode, 2025-09-07T07:41:51.6632391Z dynamic_threshold = best * ( 1 + threshold ) in 'max' 2025-09-07T07:41:51.6632769Z mode or best * ( 1 - threshold ) in `min` mode. 2025-09-07T07:41:51.6633135Z In `abs` mode, dynamic_threshold = best + threshold in 2025-09-07T07:41:51.6633543Z `max` mode or best - threshold in `min` mode. Default: 'rel'. 2025-09-07T07:41:51.6633958Z cooldown (int): Number of epochs to wait before resuming 2025-09-07T07:41:51.6634391Z normal operation after lr has been reduced. Default: 0. 2025-09-07T07:41:51.6634810Z min_lr (float or list): A scalar or a list of scalars. A 2025-09-07T07:41:51.6635200Z lower bound on the learning rate of all param groups 2025-09-07T07:41:51.6635571Z or each group respectively. Default: 0. 2025-09-07T07:41:51.6635947Z eps (float): Minimal decay applied to lr. If the difference 2025-09-07T07:41:51.6636371Z between new and old lr is smaller than eps, the update is 2025-09-07T07:41:51.6636728Z ignored. Default: 1e-8. 2025-09-07T07:41:51.6636923Z 2025-09-07T07:41:51.6637001Z Example: 2025-09-07T07:41:51.6637189Z >>> # xdoctest: +SKIP 2025-09-07T07:41:51.6637616Z >>> optimizer = torch.optim.SGD(model.parameters(), lr=0.1, momentum=0.9) 2025-09-07T07:41:51.6638083Z >>> scheduler = ReduceLROnPlateau(optimizer, "min") 2025-09-07T07:41:51.6638459Z >>> for epoch in range(10): 2025-09-07T07:41:51.6638722Z >>> train(...) 2025-09-07T07:41:51.6638957Z >>> val_loss = validate(...) 2025-09-07T07:41:51.6639287Z >>> # Note that step should be called after validate() 2025-09-07T07:41:51.6639618Z >>> scheduler.step(val_loss) 2025-09-07T07:41:51.6639823Z 2025-09-07T07:41:51.6640012Z .. image:: ../scripts/lr_scheduler_images/ReduceLROnPlateau.png 2025-09-07T07:41:51.6640406Z 2025-09-07T07:41:51.6640860Z Original Error: IndentationError('unexpected indent', ('', 8, 4, ' scheduler.step(val_loss)\n')) 2025-09-07T07:41:51.6641319Z 2025-09-07T07:41:51.6641441Z scheduler.step(val_loss) 2025-09-07T07:41:51.6641671Z ^ 2025-09-07T07:41:54.8947976Z msg = Cannot scrape callname=vmap in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\apis.py line=39. 2025-09-07T07:41:54.8948803Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:54.8949143Z 2025-09-07T07:41:54.8949336Z vmap is the vectorizing map; ``vmap(func)`` returns a new function that 2025-09-07T07:41:54.8949813Z maps ``func`` over some dimension of the inputs. Semantically, vmap 2025-09-07T07:41:54.8950274Z pushes the map into PyTorch operations called by ``func``, effectively 2025-09-07T07:41:54.8950673Z vectorizing those operations. 2025-09-07T07:41:54.8950840Z 2025-09-07T07:41:54.8951034Z vmap is useful for handling batch dimensions: one can write a function 2025-09-07T07:41:54.8951494Z ``func`` that runs on examples and then lift it to a function that can 2025-09-07T07:41:54.8951954Z take batches of examples with ``vmap(func)``. vmap can also be used to 2025-09-07T07:41:54.8952532Z compute batched gradients when composed with autograd. 2025-09-07T07:41:54.8952790Z 2025-09-07T07:41:54.8952911Z .. note:: 2025-09-07T07:41:54.8953167Z :func:`torch.vmap` is aliased to :func:`torch.func.vmap` for 2025-09-07T07:41:54.8953547Z convenience. Use whichever one you'd like. 2025-09-07T07:41:54.8953757Z 2025-09-07T07:41:54.8953833Z Args: 2025-09-07T07:41:54.8954108Z func (function): A Python function that takes one or more arguments. 2025-09-07T07:41:54.8954536Z Must return one or more Tensors. 2025-09-07T07:41:54.8954890Z in_dims (int or nested structure): Specifies which dimension of the 2025-09-07T07:41:54.8955319Z inputs should be mapped over. ``in_dims`` should have a 2025-09-07T07:41:54.8955733Z structure like the inputs. If the ``in_dim`` for a particular 2025-09-07T07:41:54.8956386Z input is None, then that indicates there is no map dimension. 2025-09-07T07:41:54.8956734Z Default: 0. 2025-09-07T07:41:54.8957025Z out_dims (int or Tuple[int]): Specifies where the mapped dimension 2025-09-07T07:41:54.8957474Z should appear in the outputs. If ``out_dims`` is a Tuple, then 2025-09-07T07:41:54.8957888Z it should have one element per output. Default: 0. 2025-09-07T07:41:54.8958280Z randomness (str): Specifies whether the randomness in this 2025-09-07T07:41:54.8958731Z vmap should be the same or different across batches. If 'different', 2025-09-07T07:41:54.8959189Z the randomness for each batch will be different. If 'same', the 2025-09-07T07:41:54.8959662Z randomness will be the same across batches. If 'error', any calls to 2025-09-07T07:41:54.8960140Z random functions will error. Default: 'error'. WARNING: this flag 2025-09-07T07:41:54.8960604Z only applies to random PyTorch operations and does not apply to 2025-09-07T07:41:54.8961008Z Python's random module or numpy randomness. 2025-09-07T07:41:54.8961417Z chunk_size (None or int): If None (default), apply a single vmap over inputs. 2025-09-07T07:41:54.8961983Z If not None, then compute the vmap :attr:`chunk_size` samples at a time. 2025-09-07T07:41:54.8962508Z Note that :attr:`chunk_size=1` is equivalent to computing the vmap with a for-loop. 2025-09-07T07:41:54.8963149Z If you run into memory issues computing the vmap, please try a non-None chunk_size. 2025-09-07T07:41:54.8963489Z 2025-09-07T07:41:54.8963567Z Returns: 2025-09-07T07:41:54.8963835Z Returns a new "batched" function. It takes the same inputs as 2025-09-07T07:41:54.8964268Z ``func``, except each input has an extra dimension at the index 2025-09-07T07:41:54.8964694Z specified by ``in_dims``. It takes returns the same outputs as 2025-09-07T07:41:54.8965131Z ``func``, except each output has an extra dimension at the index 2025-09-07T07:41:54.8965479Z specified by ``out_dims``. 2025-09-07T07:41:54.8965651Z 2025-09-07T07:41:54.8965719Z .. warning: 2025-09-07T07:41:54.8966000Z :func:`vmap` works best with functional-style code. Please do not 2025-09-07T07:41:54.8966441Z perform any side-effects in ``func``, with the exception of 2025-09-07T07:41:54.8966911Z in-place PyTorch operations. Examples of side-effects include mutating 2025-09-07T07:41:54.8967417Z Python data structures and assigning values to variables not captured 2025-09-07T07:41:54.8967799Z in ``func``. 2025-09-07T07:41:54.8967918Z 2025-09-07T07:41:54.8968126Z One example of using :func:`vmap` is to compute batched dot products. PyTorch 2025-09-07T07:41:54.8968630Z doesn't provide a batched ``torch.dot`` API; instead of unsuccessfully 2025-09-07T07:41:54.8969117Z rummaging through docs, use :func:`vmap` to construct a new function. 2025-09-07T07:41:54.8969409Z 2025-09-07T07:41:54.8969516Z >>> torch.dot # [D], [D] -> [] 2025-09-07T07:41:54.8969881Z >>> batched_dot = torch.func.vmap(torch.dot) # [N, D], [N, D] -> [N] 2025-09-07T07:41:54.8970266Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-09-07T07:41:54.8970618Z >>> batched_dot(x, y) 2025-09-07T07:41:54.8970764Z 2025-09-07T07:41:54.8970976Z :func:`vmap` can be helpful in hiding batch dimensions, leading to a simpler 2025-09-07T07:41:54.8971377Z model authoring experience. 2025-09-07T07:41:54.8971538Z 2025-09-07T07:41:54.8971640Z >>> batch_size, feature_size = 3, 5 2025-09-07T07:41:54.8971976Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-09-07T07:41:54.8972305Z >>> 2025-09-07T07:41:54.8972487Z >>> def model(feature_vec): 2025-09-07T07:41:54.8972764Z >>> # Very simple linear model with activation 2025-09-07T07:41:54.8973075Z >>> return feature_vec.dot(weights).relu() 2025-09-07T07:41:54.8973349Z >>> 2025-09-07T07:41:54.8973575Z >>> examples = torch.randn(batch_size, feature_size) 2025-09-07T07:41:54.8973947Z >>> result = torch.vmap(model)(examples) 2025-09-07T07:41:54.8974144Z 2025-09-07T07:41:54.8974368Z :func:`vmap` can also help vectorize computations that were previously difficult 2025-09-07T07:41:54.8974906Z or impossible to batch. One example is higher-order gradient computation. 2025-09-07T07:41:54.8975423Z The PyTorch autograd engine computes vjps (vector-Jacobian products). 2025-09-07T07:41:54.8975930Z Computing a full Jacobian matrix for some function f: R^N -> R^N usually 2025-09-07T07:41:54.8976459Z requires N calls to ``autograd.grad``, one per Jacobian row. Using :func:`vmap`, 2025-09-07T07:41:54.8976993Z we can vectorize the whole computation, computing the Jacobian in a single 2025-09-07T07:41:54.8977385Z call to ``autograd.grad``. 2025-09-07T07:41:54.8977540Z 2025-09-07T07:41:54.8977623Z >>> # Setup 2025-09-07T07:41:54.8977800Z >>> N = 5 2025-09-07T07:41:54.8977993Z >>> f = lambda x: x**2 2025-09-07T07:41:54.8978235Z >>> x = torch.randn(N, requires_grad=True) 2025-09-07T07:41:54.8978515Z >>> y = f(x) 2025-09-07T07:41:54.8978706Z >>> I_N = torch.eye(N) 2025-09-07T07:41:54.8978921Z >>> 2025-09-07T07:41:54.8979109Z >>> # Sequential approach 2025-09-07T07:41:54.8979502Z >>> jacobian_rows = [torch.autograd.grad(y, x, v, retain_graph=True)[0] 2025-09-07T07:41:54.8979901Z >>> for v in I_N.unbind()] 2025-09-07T07:41:54.8980239Z >>> jacobian = torch.stack(jacobian_rows) 2025-09-07T07:41:54.8980510Z >>> 2025-09-07T07:41:54.8980699Z >>> # vectorized gradient computation 2025-09-07T07:41:54.8980979Z >>> def get_vjp(v): 2025-09-07T07:41:54.8981220Z >>> return torch.autograd.grad(y, x, v) 2025-09-07T07:41:54.8981525Z >>> jacobian = torch.vmap(get_vjp)(I_N) 2025-09-07T07:41:54.8981716Z 2025-09-07T07:41:54.8981959Z :func:`vmap` can also be nested, producing an output with multiple batched dimensions 2025-09-07T07:41:54.8982306Z 2025-09-07T07:41:54.8982392Z >>> torch.dot # [D], [D] -> [] 2025-09-07T07:41:54.8982662Z >>> batched_dot = torch.vmap( 2025-09-07T07:41:54.8982915Z ... torch.vmap(torch.dot) 2025-09-07T07:41:54.8983179Z ... ) # [N1, N0, D], [N1, N0, D] -> [N1, N0] 2025-09-07T07:41:54.8983495Z >>> x, y = torch.randn(2, 3, 5), torch.randn(2, 3, 5) 2025-09-07T07:41:54.8983822Z >>> batched_dot(x, y) # tensor of size [2, 3] 2025-09-07T07:41:54.8984031Z 2025-09-07T07:41:54.8984245Z If the inputs are not batched along the first dimension, ``in_dims`` specifies 2025-09-07T07:41:54.8984681Z the dimension that each inputs are batched along as 2025-09-07T07:41:54.8984915Z 2025-09-07T07:41:54.8985011Z >>> torch.dot # [N], [N] -> [] 2025-09-07T07:41:54.8985368Z >>> batched_dot = torch.vmap(torch.dot, in_dims=1) # [N, D], [N, D] -> [D] 2025-09-07T07:41:54.8985773Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-09-07T07:41:54.8986050Z >>> batched_dot( 2025-09-07T07:41:54.8986248Z ... x, y 2025-09-07T07:41:54.8986527Z ... ) # output is [5] instead of [2] if batched along the 0th dimension 2025-09-07T07:41:54.8986812Z 2025-09-07T07:41:54.8987038Z If there are multiple inputs each of which is batched along different dimensions, 2025-09-07T07:41:54.8987665Z ``in_dims`` must be a tuple with the batch dimension for each input as 2025-09-07T07:41:54.8987964Z 2025-09-07T07:41:54.8988068Z >>> torch.dot # [D], [D] -> [] 2025-09-07T07:41:54.8988510Z >>> batched_dot = torch.vmap(torch.dot, in_dims=(0, None)) # [N, D], [D] -> [N] 2025-09-07T07:41:54.8988962Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-09-07T07:41:54.8989295Z >>> batched_dot( 2025-09-07T07:41:54.8989516Z ... x, y 2025-09-07T07:41:54.8989840Z ... ) # second arg doesn't have a batch dim because in_dim[1] was None 2025-09-07T07:41:54.8990134Z 2025-09-07T07:41:54.8990375Z If the input is a Python struct, ``in_dims`` must be a tuple containing a struct 2025-09-07T07:41:54.8990808Z matching the shape of the input: 2025-09-07T07:41:54.8991070Z 2025-09-07T07:41:54.8991208Z >>> f = lambda dict: torch.dot(dict["x"], dict["y"]) 2025-09-07T07:41:54.8991557Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-09-07T07:41:54.8991896Z >>> input = {"x": x, "y": y} 2025-09-07T07:41:54.8992245Z >>> batched_dot = torch.vmap(f, in_dims=({"x": 0, "y": None},)) 2025-09-07T07:41:54.8992636Z >>> batched_dot(input) 2025-09-07T07:41:54.8992800Z 2025-09-07T07:41:54.8993073Z By default, the output is batched along the first dimension. However, it can be batched 2025-09-07T07:41:54.8993549Z along any dimension by using ``out_dims`` 2025-09-07T07:41:54.8993781Z 2025-09-07T07:41:54.8993879Z >>> f = lambda x: x**2 2025-09-07T07:41:54.8994134Z >>> x = torch.randn(2, 5) 2025-09-07T07:41:54.8994528Z >>> batched_pow = torch.vmap(f, out_dims=1) 2025-09-07T07:41:54.8994851Z >>> batched_pow(x) # [5, 2] 2025-09-07T07:41:54.8995053Z 2025-09-07T07:41:54.8995333Z For any function that uses kwargs, the returned function will not batch the kwargs but will 2025-09-07T07:41:54.8995820Z accept kwargs 2025-09-07T07:41:54.8995948Z 2025-09-07T07:41:54.8996047Z >>> x = torch.randn([2, 5]) 2025-09-07T07:41:54.8996345Z >>> def fn(x, scale=4.): 2025-09-07T07:41:54.8996651Z >>> return x * scale 2025-09-07T07:41:54.8996919Z >>> 2025-09-07T07:41:54.8997138Z >>> batched_pow = torch.vmap(fn) 2025-09-07T07:41:54.8997922Z >>> assert torch.allclose(batched_pow(x), x * 4) 2025-09-07T07:41:54.8998370Z >>> batched_pow(x, scale=x) # scale is not batched, output has shape [2, 2, 5] 2025-09-07T07:41:54.8998722Z 2025-09-07T07:41:54.8998822Z .. note:: 2025-09-07T07:41:54.8999170Z vmap does not provide general autobatching or handle variable-length 2025-09-07T07:41:54.8999593Z sequences out of the box. 2025-09-07T07:41:54.8999793Z 2025-09-07T07:41:54.9000123Z Original Error: IndentationError('expected an indented block', ('', 5, 1, '_._ = None\n')) 2025-09-07T07:41:54.9000564Z 2025-09-07T07:41:54.9000654Z _._ = None 2025-09-07T07:41:54.9000871Z ^ 2025-09-07T07:41:55.3299260Z msg = Cannot scrape callname=grad in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\apis.py line=306. 2025-09-07T07:41:55.3300167Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:55.3300729Z ``grad`` operator helps computing gradients of ``func`` with respect to the 2025-09-07T07:41:55.3301392Z input(s) specified by ``argnums``. This operator can be nested to 2025-09-07T07:41:55.3301824Z compute higher-order gradients. 2025-09-07T07:41:55.3302068Z 2025-09-07T07:41:55.3302155Z Args: 2025-09-07T07:41:55.3302540Z func (Callable): A Python function that takes one or more arguments. 2025-09-07T07:41:55.3303119Z Must return a single-element Tensor. If specified ``has_aux`` equals ``True``, 2025-09-07T07:41:55.3303729Z function can return a tuple of single-element Tensor and other auxiliary objects: 2025-09-07T07:41:55.3304204Z ``(output, aux)``. 2025-09-07T07:41:55.3304641Z argnums (int or Tuple[int]): Specifies arguments to compute gradients with respect to. 2025-09-07T07:41:55.3305393Z ``argnums`` can be single integer or tuple of integers. Default: 0. 2025-09-07T07:41:55.3305934Z has_aux (bool): Flag indicating that ``func`` returns a tensor and other 2025-09-07T07:41:55.3306413Z auxiliary objects: ``(output, aux)``. Default: False. 2025-09-07T07:41:55.3306735Z 2025-09-07T07:41:55.3306845Z Returns: 2025-09-07T07:41:55.3307277Z Function to compute gradients with respect to its inputs. By default, the output of 2025-09-07T07:41:55.3307891Z the function is the gradient tensor(s) with respect to the first argument. 2025-09-07T07:41:55.3308468Z If specified ``has_aux`` equals ``True``, tuple of gradients and output auxiliary objects 2025-09-07T07:41:55.3309156Z is returned. If ``argnums`` is a tuple of integers, a tuple of output gradients with 2025-09-07T07:41:55.3309664Z respect to each ``argnums`` value is returned. 2025-09-07T07:41:55.3309913Z 2025-09-07T07:41:55.3310021Z Example of using ``grad``: 2025-09-07T07:41:55.3310200Z 2025-09-07T07:41:55.3310327Z >>> # xdoctest: +SKIP 2025-09-07T07:41:55.3310601Z >>> from torch.func import grad 2025-09-07T07:41:55.3310929Z >>> x = torch.randn([]) 2025-09-07T07:41:55.3311214Z >>> cos_x = grad(lambda x: torch.sin(x))(x) 2025-09-07T07:41:55.3311584Z >>> assert torch.allclose(cos_x, x.cos()) 2025-09-07T07:41:55.3311918Z >>> 2025-09-07T07:41:55.3312137Z >>> # Second-order gradients 2025-09-07T07:41:55.3312545Z >>> neg_sin_x = grad(grad(lambda x: torch.sin(x)))(x) 2025-09-07T07:41:55.3312994Z >>> assert torch.allclose(neg_sin_x, -x.sin()) 2025-09-07T07:41:55.3313228Z 2025-09-07T07:41:55.3313484Z When composed with ``vmap``, ``grad`` can be used to compute per-sample-gradients: 2025-09-07T07:41:55.3313828Z 2025-09-07T07:41:55.3313927Z >>> # xdoctest: +SKIP 2025-09-07T07:41:55.3314245Z >>> from torch.func import grad, vmap 2025-09-07T07:41:55.3315274Z >>> batch_size, feature_size = 3, 5 2025-09-07T07:41:55.3315579Z >>> 2025-09-07T07:41:55.3315827Z >>> def model(weights, feature_vec): 2025-09-07T07:41:55.3316410Z >>> # Very simple linear model with activation 2025-09-07T07:41:55.3316775Z >>> assert feature_vec.dim() == 1 2025-09-07T07:41:55.3317100Z >>> return feature_vec.dot(weights).relu() 2025-09-07T07:41:55.3317425Z >>> 2025-09-07T07:41:55.3317666Z >>> def compute_loss(weights, example, target): 2025-09-07T07:41:55.3318085Z >>> y = model(weights, example) 2025-09-07T07:41:55.3318458Z >>> return ((y - target) ** 2).mean() # MSELoss 2025-09-07T07:41:55.3318801Z >>> 2025-09-07T07:41:55.3319082Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-09-07T07:41:55.3319465Z >>> examples = torch.randn(batch_size, feature_size) 2025-09-07T07:41:55.3319798Z >>> targets = torch.randn(batch_size) 2025-09-07T07:41:55.3320098Z >>> inputs = (weights, examples, targets) 2025-09-07T07:41:55.3320518Z >>> grad_weight_per_example = vmap(grad(compute_loss), in_dims=(None, 0, 0))( 2025-09-07T07:41:55.3320913Z ... *inputs 2025-09-07T07:41:55.3321109Z ... ) 2025-09-07T07:41:55.3321214Z 2025-09-07T07:41:55.3321374Z Example of using ``grad`` with ``has_aux`` and ``argnums``: 2025-09-07T07:41:55.3321633Z 2025-09-07T07:41:55.3321717Z >>> # xdoctest: +SKIP 2025-09-07T07:41:55.3321962Z >>> from torch.func import grad 2025-09-07T07:41:55.3322228Z >>> def my_loss_func(y, y_pred): 2025-09-07T07:41:55.3322528Z >>> loss_per_sample = (0.5 * y_pred - y) ** 2 2025-09-07T07:41:55.3322832Z >>> loss = loss_per_sample.mean() 2025-09-07T07:41:55.3323134Z >>> return loss, (y_pred, loss_per_sample) 2025-09-07T07:41:55.3323413Z >>> 2025-09-07T07:41:55.3323755Z >>> fn = grad(my_loss_func, argnums=(0, 1), has_aux=True) 2025-09-07T07:41:55.3324089Z >>> y_true = torch.rand(4) 2025-09-07T07:41:55.3324415Z >>> y_preds = torch.rand(4, requires_grad=True) 2025-09-07T07:41:55.3324725Z >>> out = fn(y_true, y_preds) 2025-09-07T07:41:55.3325113Z >>> # > output is ((grads w.r.t y_true, grads w.r.t y_preds), (y_pred, loss_per_sample)) 2025-09-07T07:41:55.3325446Z 2025-09-07T07:41:55.3325549Z .. note:: 2025-09-07T07:41:55.3325808Z Using PyTorch ``torch.no_grad`` together with ``grad``. 2025-09-07T07:41:55.3326056Z 2025-09-07T07:41:55.3326183Z Case 1: Using ``torch.no_grad`` inside a function: 2025-09-07T07:41:55.3326410Z 2025-09-07T07:41:55.3326501Z >>> # xdoctest: +SKIP 2025-09-07T07:41:55.3326736Z >>> def f(x): 2025-09-07T07:41:55.3327027Z >>> with torch.no_grad(): 2025-09-07T07:41:55.3327286Z >>> c = x ** 2 2025-09-07T07:41:55.3327539Z >>> return x - c 2025-09-07T07:41:55.3327703Z 2025-09-07T07:41:55.3327888Z In this case, ``grad(f)(x)`` will respect the inner ``torch.no_grad``. 2025-09-07T07:41:55.3328172Z 2025-09-07T07:41:55.3328338Z Case 2: Using ``grad`` inside ``torch.no_grad`` context manager: 2025-09-07T07:41:55.3328617Z 2025-09-07T07:41:55.3328701Z >>> # xdoctest: +SKIP 2025-09-07T07:41:55.3328947Z >>> with torch.no_grad(): 2025-09-07T07:41:55.3329205Z >>> grad(f)(x) 2025-09-07T07:41:55.3329353Z 2025-09-07T07:41:55.3329547Z In this case, ``grad`` will respect the inner ``torch.no_grad``, but not the 2025-09-07T07:41:55.3330046Z outer one. This is because ``grad`` is a "function transform": its result 2025-09-07T07:41:55.3330544Z should not depend on the result of a context manager outside of ``f``. 2025-09-07T07:41:55.3330840Z 2025-09-07T07:41:55.3330910Z 2025-09-07T07:41:55.3331323Z Original Error: IndentationError('expected an indented block', ('', 6, 1, '_._ = None\n')) 2025-09-07T07:41:55.3331752Z 2025-09-07T07:41:55.3331879Z _._ = None 2025-09-07T07:41:55.3332055Z ^ 2025-09-07T07:41:55.3332713Z msg = Cannot scrape callname=CustomOpDef.register_fake in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py line=397. 2025-09-07T07:41:55.3333863Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:41:55.3334348Z Register a FakeTensor implementation for this custom op. 2025-09-07T07:41:55.3334674Z 2025-09-07T07:41:55.3334893Z This is necessary to get the operator to work efficiently with torch.compile. 2025-09-07T07:41:55.3335281Z 2025-09-07T07:41:55.3335475Z The Fake impl (sometimes also known as a meta kernel or abstract impl) 2025-09-07T07:41:55.3335985Z specifies the behavior of this operator on Tensors that carry no data. 2025-09-07T07:41:55.3336410Z Given some input Tensors with certain properties 2025-09-07T07:41:55.3336879Z (sizes/strides/storage_offset/device), it specifies what the properties of 2025-09-07T07:41:55.3337297Z the output Tensors are. 2025-09-07T07:41:55.3337471Z 2025-09-07T07:41:55.3337651Z Please see :func:`torch.library.register_fake` for more details. 2025-09-07T07:41:55.3337937Z 2025-09-07T07:41:55.3338006Z Args: 2025-09-07T07:41:55.3338268Z fn (Callable): The function to register as the FakeTensor 2025-09-07T07:41:55.3338611Z implementation. 2025-09-07T07:41:55.3338769Z 2025-09-07T07:41:55.3338839Z Examples: 2025-09-07T07:41:55.3339040Z >>> import torch 2025-09-07T07:41:55.3339272Z >>> import numpy as np 2025-09-07T07:41:55.3339535Z >>> from torch import Tensor 2025-09-07T07:41:55.3339791Z >>> 2025-09-07T07:41:55.3340068Z >>> # Example 1: an operator without data-dependent output shape 2025-09-07T07:41:55.3340927Z >>> @torch.library.custom_op("mylib::linear", mutates_args=()) 2025-09-07T07:41:55.3341378Z >>> def linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-09-07T07:41:55.3341759Z >>> return (x @ weight.t()) + bias 2025-09-07T07:41:55.3342027Z >>> 2025-09-07T07:41:55.3342235Z >>> @linear.register_fake 2025-09-07T07:41:55.3342492Z >>> def _(x, weight, bias): 2025-09-07T07:41:55.3342760Z >>> assert x.dim() == 2 2025-09-07T07:41:55.3343025Z >>> assert weight.dim() == 2 2025-09-07T07:41:55.3343310Z >>> assert bias.dim() == 1 2025-09-07T07:41:55.3343604Z >>> assert x.shape[1] == weight.shape[1] 2025-09-07T07:41:55.3343934Z >>> assert weight.shape[0] == bias.shape[0] 2025-09-07T07:41:55.3344311Z >>> assert x.device == weight.device 2025-09-07T07:41:55.3344638Z >>> return x.new_empty(x.size(0), weight.size(0)) 2025-09-07T07:41:55.3344953Z >>> 2025-09-07T07:41:55.3345152Z >>> x = torch.randn(2, 2) 2025-09-07T07:41:55.3345425Z >>> weight = torch.randn(2, 2) 2025-09-07T07:41:55.3345697Z >>> bias = torch.randn(2) 2025-09-07T07:41:55.3345996Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-09-07T07:41:55.3346376Z >>> out = torch.compile(linear, fullgraph=True)(x, weight, bias) 2025-09-07T07:41:55.3346777Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-09-07T07:41:55.3347223Z >>> assert torch.allclose(out, torch.nn.functional.linear(x, weight, bias)) 2025-09-07T07:41:55.3347618Z >>> 2025-09-07T07:41:55.3347890Z >>> # Example 2: an operator with data-dependent output shape 2025-09-07T07:41:55.3348328Z >>> @torch.library.custom_op("mylib::nonzero", mutates_args=()) 2025-09-07T07:41:55.3348704Z >>> def nonzero(x: Tensor) -> Tensor: 2025-09-07T07:41:55.3348992Z >>> x_np = x.cpu().numpy() 2025-09-07T07:41:55.3349348Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-09-07T07:41:55.3349696Z >>> return torch.tensor(res, device=x.device) 2025-09-07T07:41:55.3350228Z >>> 2025-09-07T07:41:55.3350510Z >>> @nonzero.register_fake 2025-09-07T07:41:55.3350776Z >>> def _(x): 2025-09-07T07:41:55.3351099Z >>> # Number of nonzero-elements is data-dependent. 2025-09-07T07:41:55.3351479Z >>> # Since we cannot peek at the data in an abstract impl, 2025-09-07T07:41:55.3351877Z >>> # we use the ctx object to construct a new symint that 2025-09-07T07:41:55.3352228Z >>> # represents the data-dependent size. 2025-09-07T07:41:55.3352550Z >>> ctx = torch.library.get_ctx() 2025-09-07T07:41:55.3352865Z >>> nnz = ctx.new_dynamic_size() 2025-09-07T07:41:55.3353146Z >>> shape = [nnz, x.dim()] 2025-09-07T07:41:55.3353475Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-09-07T07:41:55.3353788Z >>> return result 2025-09-07T07:41:55.3354021Z >>> 2025-09-07T07:41:55.3354230Z >>> x = torch.tensor([0, 1, 2, 0, 0, 1]) 2025-09-07T07:41:55.3354550Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-09-07T07:41:55.3354977Z >>> out = torch.compile(nonzero, fullgraph=True)(x) 2025-09-07T07:41:55.3355323Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-09-07T07:41:55.3355657Z >>> assert torch.allclose(out, x.nonzero()) 2025-09-07T07:41:55.3355872Z 2025-09-07T07:41:55.3355939Z 2025-09-07T07:41:55.3356369Z Original Error: IndentationError('expected an indented block', ('', 37, 1, '_._ = None\n')) 2025-09-07T07:41:55.3356803Z 2025-09-07T07:41:55.3356869Z _._ = None 2025-09-07T07:41:55.3357047Z ^ 2025-09-07T07:41:55.5724722Z msg = Cannot scrape callname=unsafe_generate_fake_kernels in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_profile.py line=94. 2025-09-07T07:41:55.5725747Z Caused by: DoctestParseError('Failed to parse doctest in _label_docsrc_lines') 2025-09-07T07:41:55.5726100Z 2025-09-07T07:41:55.5726319Z Registers a fake kernel based on the given operator profiles. This fake 2025-09-07T07:41:55.5726839Z kernel registration will override any existing fake kernel registrations. 2025-09-07T07:41:55.5727168Z 2025-09-07T07:41:55.5727355Z The input is a dictionary mapping operator names to a set of operator 2025-09-07T07:41:55.5727858Z profiles, which we will use to generate fake kernels. The operator profiles 2025-09-07T07:41:55.5728342Z are a record of the input and output tensor metadata. Based on this 2025-09-07T07:41:55.5728894Z information we will match a given input to the recorded profile, and return 2025-09-07T07:41:55.5729409Z an output with the same metadata as in the recorded profile. If a profile 2025-09-07T07:41:55.5729839Z doesn't exist then an exception will be thrown. 2025-09-07T07:41:55.5730058Z 2025-09-07T07:41:55.5730266Z The fake kernel generation is considered unsafe because it relies on the 2025-09-07T07:41:55.5730774Z rigid, pre-defined operator profiles that do not account for potential 2025-09-07T07:41:55.5731307Z variations in output behavior. Specifically, the generated kernels assume a 2025-09-07T07:41:55.5731841Z fixed relationship between input and output ranks. However, in reality, it's 2025-09-07T07:41:55.5732375Z possible that data-dependent operations may produce outputs of different 2025-09-07T07:41:55.5732872Z ranks even when given inputs of the same rank. The generated fake kernels 2025-09-07T07:41:55.5733357Z are inflexible and unable to accommodate these nuances, making them 2025-09-07T07:41:55.5733720Z potentially unsafe. 2025-09-07T07:41:55.5733856Z 2025-09-07T07:41:55.5733921Z Args: 2025-09-07T07:41:55.5734207Z op_profiles (dict[str, set[OpProfile]]): A dictionary mapping operator 2025-09-07T07:41:55.5734733Z name to a set of operator profiles from which we will generate fake 2025-09-07T07:41:55.5735081Z kernels. 2025-09-07T07:41:55.5735193Z 2025-09-07T07:41:55.5735322Z Examples: 2025-09-07T07:41:55.5735427Z 2025-09-07T07:41:55.5735631Z >>> # Example: Registering an op-profile from draft-export 2025-09-07T07:41:55.5735953Z >>> import torch 2025-09-07T07:41:55.5736228Z >>> from torch.export._draft_export import draft_export 2025-09-07T07:41:55.5736538Z >>> 2025-09-07T07:41:55.5737335Z >>> @torch.library.custom_op("mylib::foo", mutates_args=()) 2025-09-07T07:41:55.5737711Z >>> def foo(x: Tensor, y: Tensor) -> Tensor: 2025-09-07T07:41:55.5737989Z >>> return x + y 2025-09-07T07:41:55.5738202Z >>> 2025-09-07T07:41:55.5738387Z >>> class M(torch.nn.Module): 2025-09-07T07:41:55.5738647Z >>> def forward(self, a, b): 2025-09-07T07:41:55.5738937Z >>> res = torch.ops.mylib.foo(a, b) # no fake impl 2025-09-07T07:41:55.5739248Z >>> return res 2025-09-07T07:41:55.5739458Z >>> 2025-09-07T07:41:55.5739724Z >>> ep = draft_export(M(), (torch.ones(3, 4), torch.ones(3, 4)) 2025-09-07T07:41:55.5740048Z >>> 2025-09-07T07:41:55.5740409Z >>> with torch._library.fake_profile.unsafe_generate_fake_kernels(ep._report.op_profiles): 2025-09-07T07:41:55.5740897Z >>> decomp = ep.run_decompositions() 2025-09-07T07:41:55.5741093Z 2025-09-07T07:41:55.5741097Z 2025-09-07T07:41:55.5741542Z Original Error: IncompleteParseError('ill-formed doctest: all parts have been processed but the doctest source is not balanced') 2025-09-07T07:41:55.5742075Z 2025-09-07T07:41:55.5742146Z running 863 test(s) 2025-09-07T07:41:55.5742687Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::typename:0, line 1082 <- wrt source file 2025-09-07T07:41:55.5743475Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::typename:0 2025-09-07T07:41:55.5744358Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::is_tensor:0, line 1118 <- wrt source file 2025-09-07T07:41:55.5745157Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::is_tensor:0 2025-09-07T07:41:55.5745979Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_device:0, line 1203 <- wrt source file 2025-09-07T07:41:55.5746843Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_device:0 2025-09-07T07:41:55.5747710Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_tensor_type:0, line 1252 <- wrt source file 2025-09-07T07:41:55.5748649Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_tensor_type:0 2025-09-07T07:41:55.5749513Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_dtype:0, line 1289 <- wrt source file 2025-09-07T07:41:55.5750366Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::set_default_dtype:0 2025-09-07T07:41:55.5751264Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::use_deterministic_algorithms:0, line 1444 <- wrt source file 2025-09-07T07:41:55.5752197Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::use_deterministic_algorithms:0 2025-09-07T07:41:55.5753060Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::compile:0, line 2568 <- wrt source file 2025-09-07T07:41:55.5753858Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::compile:0 2025-09-07T07:41:55.5754739Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::_is_device_backend_autoload_enabled:0, line 2841 <- wrt source file 2025-09-07T07:41:55.5755856Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\__init__.py::_is_device_backend_autoload_enabled:0 2025-09-07T07:41:55.5756797Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_tensors:0, line 64 <- wrt source file 2025-09-07T07:41:55.5757725Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_tensors:0 2025-09-07T07:41:55.5758601Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_shapes:0, line 92 <- wrt source file 2025-09-07T07:41:55.5759471Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::broadcast_shapes:0 2025-09-07T07:41:55.5760315Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::split:0, line 144 <- wrt source file 2025-09-07T07:41:55.5761121Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::split:0 2025-09-07T07:41:55.5761928Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::einsum:0, line 258 <- wrt source file 2025-09-07T07:41:55.5762743Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::einsum:0 2025-09-07T07:41:55.5763545Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::meshgrid:0, line 450 <- wrt source file 2025-09-07T07:41:55.5764370Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::meshgrid:0 2025-09-07T07:41:55.5765196Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_impl:0, line 835 <- wrt source file 2025-09-07T07:41:55.5766033Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_impl:0 2025-09-07T07:41:55.5766916Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_consecutive_impl:0, line 992 <- wrt source file 2025-09-07T07:41:55.5767893Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_unique_consecutive_impl:0 2025-09-07T07:41:55.5768772Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::tensordot:0, line 1267 <- wrt source file 2025-09-07T07:41:55.5769607Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::tensordot:0 2025-09-07T07:41:55.5770450Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cartesian_prod:0, line 1351 <- wrt source file 2025-09-07T07:41:55.5771363Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cartesian_prod:0 2025-09-07T07:41:55.5772213Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::block_diag:0, line 1385 <- wrt source file 2025-09-07T07:41:55.5773048Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::block_diag:0 2025-09-07T07:41:55.5773873Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cdist:0, line 1441 <- wrt source file 2025-09-07T07:41:55.5774667Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::cdist:0 2025-09-07T07:41:55.5775492Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_1d:0, line 1482 <- wrt source file 2025-09-07T07:41:55.5776330Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_1d:0 2025-09-07T07:41:55.5777154Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_2d:0, line 1520 <- wrt source file 2025-09-07T07:41:55.5777978Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_2d:0 2025-09-07T07:41:55.5778860Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_3d:0, line 1560 <- wrt source file 2025-09-07T07:41:55.5779680Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::atleast_3d:0 2025-09-07T07:41:55.5780539Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::norm:0, line 1735 <- wrt source file 2025-09-07T07:41:55.5781336Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::norm:0 2025-09-07T07:41:55.9524867Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::unravel_index:0, line 1903 <- wrt source file 2025-09-07T07:41:55.9525806Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::unravel_index:0 2025-09-07T07:41:55.9526663Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::chain_matmul:0, line 2003 <- wrt source file 2025-09-07T07:41:55.9527523Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::chain_matmul:0 2025-09-07T07:41:55.9528456Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_lu_impl:0, line 2104 <- wrt source file 2025-09-07T07:41:55.9529280Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py::_lu_impl:0 2025-09-07T07:41:55.9530052Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::list:0, line 473 <- wrt source file 2025-09-07T07:41:55.9530793Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::list:0 2025-09-07T07:41:55.9531525Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::help:0, line 533 <- wrt source file 2025-09-07T07:41:55.9532258Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::help:0 2025-09-07T07:41:55.9533148Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load:0, line 624 <- wrt source file 2025-09-07T07:41:55.9533916Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load:0 2025-09-07T07:41:55.9534949Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::_load_local:0, line 672 <- wrt source file 2025-09-07T07:41:55.9535938Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::_load_local:0 2025-09-07T07:41:55.9536764Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::download_url_to_file:0, line 707 <- wrt source file 2025-09-07T07:41:55.9537686Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::download_url_to_file:0 2025-09-07T07:41:55.9538547Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load_state_dict_from_url:0, line 847 <- wrt source file 2025-09-07T07:41:55.9539457Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\hub.py::load_state_dict_from_url:0 2025-09-07T07:41:55.9540362Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.define:0, line 153 <- wrt source file 2025-09-07T07:41:55.9541201Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.define:0 2025-09-07T07:41:55.9542088Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library._impl_with_aoti_compile:0, line 247 <- wrt source file 2025-09-07T07:41:55.9543046Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library._impl_with_aoti_compile:0 2025-09-07T07:41:55.9543956Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.impl:0, line 307 <- wrt source file 2025-09-07T07:41:55.9544779Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::Library.impl:0 2025-09-07T07:41:55.9545743Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::define:0, line 512 <- wrt source file 2025-09-07T07:41:55.9546576Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::define:0 2025-09-07T07:41:55.9547354Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::impl:0, line 618 <- wrt source file 2025-09-07T07:41:55.9548116Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::impl:0 2025-09-07T07:41:55.9548923Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_kernel:0, line 799 <- wrt source file 2025-09-07T07:41:55.9549780Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_kernel:0 2025-09-07T07:41:55.9550630Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autocast:0, line 867 <- wrt source file 2025-09-07T07:41:55.9551581Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autocast:0 2025-09-07T07:41:55.9552436Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autograd:0, line 1116 <- wrt source file 2025-09-07T07:41:55.9553294Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_autograd:0 2025-09-07T07:41:55.9554163Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_torch_dispatch:0, line 1232 <- wrt source file 2025-09-07T07:41:55.9555052Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_torch_dispatch:0 2025-09-07T07:41:55.9555994Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_vmap:0, line 1321 <- wrt source file 2025-09-07T07:41:55.9556938Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::register_vmap:0 2025-09-07T07:41:55.9557788Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::opcheck:0, line 1646 <- wrt source file 2025-09-07T07:41:55.9558583Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py::opcheck:0 2025-09-07T07:41:55.9559423Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_ignored_functions:0, line 116 <- wrt source file 2025-09-07T07:41:55.9560335Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_ignored_functions:0 2025-09-07T07:41:55.9561266Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_testing_overrides:0, line 423 <- wrt source file 2025-09-07T07:41:55.9562141Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::get_testing_overrides:0 2025-09-07T07:41:55.9563135Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::wrap_torch_function:0, line 1578 <- wrt source file 2025-09-07T07:41:55.9564012Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::wrap_torch_function:0 2025-09-07T07:41:55.9564897Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::handle_torch_function:0, line 1713 <- wrt source file 2025-09-07T07:41:55.9565801Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::handle_torch_function:0 2025-09-07T07:41:55.9566706Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_method_or_property:0, line 1961 <- wrt source file 2025-09-07T07:41:55.9567652Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_method_or_property:0 2025-09-07T07:41:55.9568597Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_like:0, line 1980 <- wrt source file 2025-09-07T07:41:55.9569439Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\overrides.py::is_tensor_like:0 2025-09-07T07:41:55.9570335Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\quasirandom.py::SobolEngine:0, line 39 <- wrt source file 2025-09-07T07:41:55.9571180Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\quasirandom.py::SobolEngine:0 2025-09-07T07:41:55.9572061Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::add_safe_globals:0, line 299 <- wrt source file 2025-09-07T07:41:55.9573002Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::add_safe_globals:0 2025-09-07T07:41:55.9573925Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::safe_globals:0, line 324 <- wrt source file 2025-09-07T07:41:55.9574818Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::safe_globals:0 2025-09-07T07:41:55.9575674Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::skip_data:0, line 400 <- wrt source file 2025-09-07T07:41:55.9576531Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::skip_data:0 2025-09-07T07:41:55.9577408Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::register_package:0, line 472 <- wrt source file 2025-09-07T07:41:55.9578296Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::register_package:0 2025-09-07T07:41:55.9579157Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::save:0, line 950 <- wrt source file 2025-09-07T07:41:55.9580011Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::save:0 2025-09-07T07:41:55.9580837Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::load:0, line 1363 <- wrt source file 2025-09-07T07:41:55.9581660Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\serialization.py::load:0 2025-09-07T07:41:55.9794816Z W0907 07:41:55.976685 5996 torch\fx\_symbolic_trace.py:52] is_fx_tracing will return true for both fx.symbolic_trace and torch.export. Please use is_fx_tracing_symbolic_tracing() for specifically fx.symbolic_trace or torch.compiler.is_compiling() for specifically torch.export/compile. 2025-09-07T07:41:56.0300042Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\torch_version.py::TorchVersion:0, line 19 <- wrt source file 2025-09-07T07:41:56.0301521Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\torch_version.py::TorchVersion:0 2025-09-07T07:41:56.0302971Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::Generator:0, line 15 <- wrt source file 2025-09-07T07:41:56.0304438Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::Generator:0 2025-09-07T07:41:56.0305898Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::_LinAlgError:0, line 5 <- wrt source file 2025-09-07T07:41:56.0307366Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_C.cp39-win_amd64.pyd::_LinAlgError:0 2025-09-07T07:41:56.0308789Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::custom_op:0, line 55 <- wrt source file 2025-09-07T07:41:56.0310165Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::custom_op:0 2025-09-07T07:41:56.0311499Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl:0, line 138 <- wrt source file 2025-09-07T07:41:56.0312881Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl:0 2025-09-07T07:41:56.0314314Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl_abstract:0, line 208 <- wrt source file 2025-09-07T07:41:56.0315759Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_custom_ops.py::impl_abstract:0 2025-09-07T07:41:56.0317297Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_namedtensor_internals.py::update_names:0, line 118 <- wrt source file 2025-09-07T07:41:56.0318856Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_namedtensor_internals.py::update_names:0 2025-09-07T07:41:56.0320363Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_hook:0, line 649 <- wrt source file 2025-09-07T07:41:56.0321832Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_hook:0 2025-09-07T07:41:56.0323418Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_post_accumulate_grad_hook:0, line 706 <- wrt source file 2025-09-07T07:41:56.0325145Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.register_post_accumulate_grad_hook:0 2025-09-07T07:41:56.0326709Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.refine_names:0, line 1333 <- wrt source file 2025-09-07T07:41:56.0328157Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.refine_names:0 2025-09-07T07:41:56.0329584Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.align_to:0, line 1378 <- wrt source file 2025-09-07T07:41:56.0330979Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.align_to:0 2025-09-07T07:41:56.0332429Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.rename:0, line 1451 <- wrt source file 2025-09-07T07:41:56.0333816Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.rename:0 2025-09-07T07:41:56.0335226Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.to_sparse_coo:0, line 1481 <- wrt source file 2025-09-07T07:41:56.0336685Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.to_sparse_coo:0 2025-09-07T07:41:56.0338708Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.dim_order:0, line 1513 <- wrt source file 2025-09-07T07:41:56.0340145Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py::Tensor.dim_order:0 2025-09-07T07:41:56.0341572Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor_str.py::set_printoptions:0, line 53 <- wrt source file 2025-09-07T07:41:56.0343011Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor_str.py::set_printoptions:0 2025-09-07T07:41:56.0344549Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::current_accelerator:0, line 113 <- wrt source file 2025-09-07T07:41:56.0346137Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::current_accelerator:0 2025-09-07T07:41:56.0347698Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::device_index:0, line 249 <- wrt source file 2025-09-07T07:41:56.0349219Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py::device_index:0 2025-09-07T07:41:56.0350767Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::allow_in_graph:0, line 127 <- wrt source file 2025-09-07T07:41:56.0352257Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::allow_in_graph:0 2025-09-07T07:41:56.0353826Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::substitute_in_graph:0, line 183 <- wrt source file 2025-09-07T07:41:56.0355382Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::substitute_in_graph:0 2025-09-07T07:41:56.0356972Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::wrap_numpy:0, line 413 <- wrt source file 2025-09-07T07:41:56.0358426Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::wrap_numpy:0 2025-09-07T07:41:56.0359891Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_compiling:0, line 445 <- wrt source file 2025-09-07T07:41:56.0361369Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_compiling:0 2025-09-07T07:41:56.0362868Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_dynamo_compiling:0, line 466 <- wrt source file 2025-09-07T07:41:56.0364416Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_dynamo_compiling:0 2025-09-07T07:41:56.0365914Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_exporting:0, line 484 <- wrt source file 2025-09-07T07:41:56.0367384Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::is_exporting:0 2025-09-07T07:41:56.0368900Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::save_cache_artifacts:0, line 499 <- wrt source file 2025-09-07T07:41:56.0370505Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::save_cache_artifacts:0 2025-09-07T07:41:56.0372058Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::load_cache_artifacts:0, line 514 <- wrt source file 2025-09-07T07:41:56.0373632Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\compiler\__init__.py::load_cache_artifacts:0 2025-09-07T07:41:56.0375129Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\__init__.py::_compile_kernel:0, line 1760 <- wrt source file 2025-09-07T07:41:56.0376584Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\__init__.py::_compile_kernel:0 2025-09-07T07:41:56.0378026Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::save:0, line 349 <- wrt source file 2025-09-07T07:41:56.0379390Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::save:0 2025-09-07T07:41:56.0380758Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::load:0, line 419 <- wrt source file 2025-09-07T07:41:56.0382113Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::load:0 2025-09-07T07:41:56.0383561Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::register_dataclass:0, line 576 <- wrt source file 2025-09-07T07:41:56.0385070Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\__init__.py::register_dataclass:0 2025-09-07T07:41:56.0386561Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.then:0, line 148 <- wrt source file 2025-09-07T07:41:56.0388082Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.then:0 2025-09-07T07:41:56.0389659Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.add_done_callback:0, line 197 <- wrt source file 2025-09-07T07:41:56.0391268Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.add_done_callback:0 2025-09-07T07:41:56.0557757Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_result:0, line 231 <- wrt source file 2025-09-07T07:41:56.0559342Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_result:0 2025-09-07T07:41:56.0560900Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_exception:0, line 261 <- wrt source file 2025-09-07T07:41:56.0562473Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::Future.set_exception:0 2025-09-07T07:41:56.0563982Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::collect_all:0, line 295 <- wrt source file 2025-09-07T07:41:56.0565479Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\futures\__init__.py::collect_all:0 2025-09-07T07:41:56.0566884Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\__init__.py::annotate:0, line 147 <- wrt source file 2025-09-07T07:41:56.0568246Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\__init__.py::annotate:0 2025-09-07T07:41:56.0569731Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\monitor\__init__.py::TensorboardEventHandler:0, line 22 <- wrt source file 2025-09-07T07:41:56.0571402Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\monitor\__init__.py::TensorboardEventHandler:0 2025-09-07T07:41:56.0572937Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\mps\__init__.py::compile_shader:0, line 148 <- wrt source file 2025-09-07T07:41:56.0574465Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\mps\__init__.py::compile_shader:0 2025-09-07T07:41:56.0575917Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::as_nested_tensor:0, line 61 <- wrt source file 2025-09-07T07:41:56.0577446Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::as_nested_tensor:0 2025-09-07T07:41:56.0578911Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor:0, line 240 <- wrt source file 2025-09-07T07:41:56.0580365Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor:0 2025-09-07T07:41:56.0581863Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::narrow:0, line 315 <- wrt source file 2025-09-07T07:41:56.0583290Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::narrow:0 2025-09-07T07:41:56.0584767Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor_from_jagged:0, line 405 <- wrt source file 2025-09-07T07:41:56.0586369Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::nested_tensor_from_jagged:0 2025-09-07T07:41:56.0587928Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::masked_select:0, line 481 <- wrt source file 2025-09-07T07:41:56.0589401Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py::masked_select:0 2025-09-07T07:41:56.0590808Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::sum:0, line 223 <- wrt source file 2025-09-07T07:41:56.0592154Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::sum:0 2025-09-07T07:41:56.0593740Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::check_sparse_tensor_invariants:0, line 475 <- wrt source file 2025-09-07T07:41:56.0595497Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::check_sparse_tensor_invariants:0 2025-09-07T07:41:56.0597149Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::as_sparse_gradcheck:0, line 561 <- wrt source file 2025-09-07T07:41:56.0598673Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\__init__.py::as_sparse_gradcheck:0 2025-09-07T07:41:56.0600259Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_mode_options:0, line 320 <- wrt source file 2025-09-07T07:41:56.0601783Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_mode_options:0 2025-09-07T07:41:56.0603288Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_options:0, line 357 <- wrt source file 2025-09-07T07:41:56.0604759Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\__init__.py::list_options:0 2025-09-07T07:41:56.0606434Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims_common\__init__.py::compute_required_storage_length:0, line 1884 <- wrt source file 2025-09-07T07:41:56.0608202Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims_common\__init__.py::compute_required_storage_length:0 2025-09-07T07:41:56.0609777Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\amp\grad_scaler.py::GradScaler:0, line 64 <- wrt source file 2025-09-07T07:41:56.0611235Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\amp\grad_scaler.py::GradScaler:0 2025-09-07T07:41:56.0612902Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\qat\modules\linear_relu.py::LinearReLU:0, line 30 <- wrt source file 2025-09-07T07:41:56.0614616Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\qat\modules\linear_relu.py::LinearReLU:0 2025-09-07T07:41:56.0616427Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py::LinearReLU:0, line 24 <- wrt source file 2025-09-07T07:41:56.0618413Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py::LinearReLU:0 2025-09-07T07:41:56.0620308Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearReLU:0, line 25 <- wrt source file 2025-09-07T07:41:56.0622105Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearReLU:0 2025-09-07T07:41:56.0624018Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearLeakyReLU:0, line 67 <- wrt source file 2025-09-07T07:41:56.0625891Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearLeakyReLU:0 2025-09-07T07:41:56.0627720Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearTanh:0, line 142 <- wrt source file 2025-09-07T07:41:56.0629569Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py::LinearTanh:0 2025-09-07T07:41:56.0631310Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTMCell:0, line 30 <- wrt source file 2025-09-07T07:41:56.0632934Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTMCell:0 2025-09-07T07:41:56.0634497Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTM:0, line 413 <- wrt source file 2025-09-07T07:41:56.0636241Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantizable\modules\rnn.py::LSTM:0 2025-09-07T07:41:56.0637792Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv1d:0, line 211 <- wrt source file 2025-09-07T07:41:56.0639322Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv1d:0 2025-09-07T07:41:56.0640852Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv2d:0, line 283 <- wrt source file 2025-09-07T07:41:56.0642513Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv2d:0 2025-09-07T07:41:56.0644189Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv3d:0, line 359 <- wrt source file 2025-09-07T07:41:56.0645824Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\functional.py::conv3d:0 2025-09-07T07:41:56.0647493Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::Quantize:0, line 95 <- wrt source file 2025-09-07T07:41:56.0649220Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::Quantize:0 2025-09-07T07:41:56.0650951Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::DeQuantize:0, line 145 <- wrt source file 2025-09-07T07:41:56.0748975Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\__init__.py::DeQuantize:0 2025-09-07T07:41:56.0750687Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv1d:0, line 43 <- wrt source file 2025-09-07T07:41:56.0752334Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv1d:0 2025-09-07T07:41:56.0753974Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv2d:0, line 124 <- wrt source file 2025-09-07T07:41:56.0755601Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv2d:0 2025-09-07T07:41:56.0757334Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv3d:0, line 209 <- wrt source file 2025-09-07T07:41:56.0758982Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::Conv3d:0 2025-09-07T07:41:56.0760683Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose1d:0, line 296 <- wrt source file 2025-09-07T07:41:56.0762448Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose1d:0 2025-09-07T07:41:56.0764192Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose2d:0, line 378 <- wrt source file 2025-09-07T07:41:56.0765945Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose2d:0 2025-09-07T07:41:56.0767708Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose3d:0, line 460 <- wrt source file 2025-09-07T07:41:56.0769507Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\conv.py::ConvTranspose3d:0 2025-09-07T07:41:56.0771226Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\linear.py::Linear:0, line 30 <- wrt source file 2025-09-07T07:41:56.0772948Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\linear.py::Linear:0 2025-09-07T07:41:56.0774569Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTM:0, line 515 <- wrt source file 2025-09-07T07:41:56.0776205Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTM:0 2025-09-07T07:41:56.0777824Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRU:0, line 801 <- wrt source file 2025-09-07T07:41:56.0779402Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRU:0 2025-09-07T07:41:56.0781017Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::RNNCell:0, line 1206 <- wrt source file 2025-09-07T07:41:56.0782659Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::RNNCell:0 2025-09-07T07:41:56.0784292Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTMCell:0, line 1273 <- wrt source file 2025-09-07T07:41:56.0785952Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::LSTMCell:0 2025-09-07T07:41:56.0787583Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRUCell:0, line 1326 <- wrt source file 2025-09-07T07:41:56.0789288Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\dynamic\modules\rnn.py::GRUCell:0 2025-09-07T07:41:56.0790910Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\activation.py::ReLU6:0, line 36 <- wrt source file 2025-09-07T07:41:56.0792505Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\activation.py::ReLU6:0 2025-09-07T07:41:56.0794079Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv1d:0, line 376 <- wrt source file 2025-09-07T07:41:56.0795615Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv1d:0 2025-09-07T07:41:56.0797245Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv2d:0, line 505 <- wrt source file 2025-09-07T07:41:56.0798800Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv2d:0 2025-09-07T07:41:56.0800340Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv3d:0, line 635 <- wrt source file 2025-09-07T07:41:56.0801897Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::Conv3d:0 2025-09-07T07:41:56.0803500Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose1d:0, line 892 <- wrt source file 2025-09-07T07:41:56.0805162Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose1d:0 2025-09-07T07:41:56.0806834Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose2d:0, line 1014 <- wrt source file 2025-09-07T07:41:56.0808540Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose2d:0 2025-09-07T07:41:56.0810210Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose3d:0, line 1140 <- wrt source file 2025-09-07T07:41:56.0811928Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\conv.py::ConvTranspose3d:0 2025-09-07T07:41:56.0813605Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::Embedding:0, line 111 <- wrt source file 2025-09-07T07:41:56.0815308Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::Embedding:0 2025-09-07T07:41:56.0817023Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::EmbeddingBag:0, line 275 <- wrt source file 2025-09-07T07:41:56.0818747Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\embedding_ops.py::EmbeddingBag:0 2025-09-07T07:41:56.0820548Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::FloatFunctional:0, line 23 <- wrt source file 2025-09-07T07:41:56.0822406Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::FloatFunctional:0 2025-09-07T07:41:56.0824214Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::QFunctional:0, line 176 <- wrt source file 2025-09-07T07:41:56.0826007Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\functional_modules.py::QFunctional:0 2025-09-07T07:41:56.0827677Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\linear.py::Linear:0, line 138 <- wrt source file 2025-09-07T07:41:56.0829311Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\linear.py::Linear:0 2025-09-07T07:41:56.0830854Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\rnn.py::LSTM:0, line 24 <- wrt source file 2025-09-07T07:41:56.0832348Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\nn\quantized\modules\rnn.py::LSTM:0 2025-09-07T07:41:56.0833958Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\scheduler\lambda_scheduler.py::LambdaSL:0, line 24 <- wrt source file 2025-09-07T07:41:56.0835705Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\scheduler\lambda_scheduler.py::LambdaSL:0 2025-09-07T07:41:56.0837491Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier:0, line 47 <- wrt source file 2025-09-07T07:41:56.0839294Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier:0 2025-09-07T07:41:56.0841168Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier.squash_mask:0, line 245 <- wrt source file 2025-09-07T07:41:56.0855163Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\sparsifier\base_sparsifier.py::BaseSparsifier.squash_mask:0 2025-09-07T07:41:56.0857340Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py::BaseDataScheduler.get_schedule_param:0, line 98 <- wrt source file 2025-09-07T07:41:56.0859724Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py::BaseDataScheduler.get_schedule_param:0 2025-09-07T07:41:56.0862028Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py::BaseDataSparsifier:0, line 55 <- wrt source file 2025-09-07T07:41:56.0864235Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py::BaseDataSparsifier:0 2025-09-07T07:41:56.0866185Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_conv_bn:0, line 31 <- wrt source file 2025-09-07T07:41:56.0867930Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_conv_bn:0 2025-09-07T07:41:56.0869719Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_conv_bn_relu:0, line 76 <- wrt source file 2025-09-07T07:41:56.0871510Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_conv_bn_relu:0 2025-09-07T07:41:56.0873297Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_linear_bn:0, line 130 <- wrt source file 2025-09-07T07:41:56.0875070Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_linear_bn:0 2025-09-07T07:41:56.0876917Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_convtranspose_bn:0, line 163 <- wrt source file 2025-09-07T07:41:56.0878789Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuser_method_mappings.py::fuse_convtranspose_bn:0 2025-09-07T07:41:56.0880539Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuse_modules.py::fuse_modules:0, line 176 <- wrt source file 2025-09-07T07:41:56.0882219Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fuse_modules.py::fuse_modules:0 2025-09-07T07:41:56.0883815Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_args:0, line 110 <- wrt source file 2025-09-07T07:41:56.0885372Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_args:0 2025-09-07T07:41:56.0886984Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_callable_args:0, line 132 <- wrt source file 2025-09-07T07:41:56.0888705Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\observer.py::_with_callable_args:0 2025-09-07T07:41:56.0890342Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::fuse_fx:0, line 218 <- wrt source file 2025-09-07T07:41:56.0891905Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::fuse_fx:0 2025-09-07T07:41:56.0893471Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_fx:0, line 288 <- wrt source file 2025-09-07T07:41:56.0895055Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_fx:0 2025-09-07T07:41:56.0896680Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_qat_fx:0, line 427 <- wrt source file 2025-09-07T07:41:56.0898315Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::prepare_qat_fx:0 2025-09-07T07:41:56.0899933Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_fx:0, line 608 <- wrt source file 2025-09-07T07:41:56.0902133Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_fx:0 2025-09-07T07:41:56.0903803Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_to_reference_fx:0, line 668 <- wrt source file 2025-09-07T07:41:56.0905602Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::convert_to_reference_fx:0 2025-09-07T07:41:56.0907433Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::_convert_to_reference_decomposed_fx:0, line 720 <- wrt source file 2025-09-07T07:41:56.0909320Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_fx.py::_convert_to_reference_decomposed_fx:0 2025-09-07T07:41:56.0911098Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_pt2e:0, line 51 <- wrt source file 2025-09-07T07:41:56.0912747Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_pt2e:0 2025-09-07T07:41:56.0914408Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_qat_pt2e:0, line 130 <- wrt source file 2025-09-07T07:41:56.0916149Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::prepare_qat_pt2e:0 2025-09-07T07:41:56.0917805Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::convert_pt2e:0, line 228 <- wrt source file 2025-09-07T07:41:56.0919451Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\quantize_pt2e.py::convert_pt2e:0 2025-09-07T07:41:56.0921081Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::get_combined_dict:0, line 172 <- wrt source file 2025-09-07T07:41:56.0922710Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::get_combined_dict:0 2025-09-07T07:41:56.0924300Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_path_of_module:0, line 544 <- wrt source file 2025-09-07T07:41:56.0925910Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_path_of_module:0 2025-09-07T07:41:56.0927521Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_signature_locals:0, line 566 <- wrt source file 2025-09-07T07:41:56.0929201Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_signature_locals:0 2025-09-07T07:41:56.0930812Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_default_kwargs:0, line 580 <- wrt source file 2025-09-07T07:41:56.0932491Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_default_kwargs:0 2025-09-07T07:41:56.0946408Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_normalize_kwargs:0, line 602 <- wrt source file 2025-09-07T07:41:56.0948133Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_normalize_kwargs:0 2025-09-07T07:41:56.0949731Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_num_pos_args:0, line 729 <- wrt source file 2025-09-07T07:41:56.0951388Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\utils.py::_get_num_pos_args:0 2025-09-07T07:41:56.0953125Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\backend_config\backend_config.py::DTypeConfig:0, line 214 <- wrt source file 2025-09-07T07:41:56.0955092Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\backend_config\backend_config.py::DTypeConfig:0 2025-09-07T07:41:56.0957177Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\backend_config\onednn.py::_fuse_linear_bn_leaky_relu:0, line 85 <- wrt source file 2025-09-07T07:41:56.0959100Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\backend_config\onednn.py::_fuse_linear_bn_leaky_relu:0 2025-09-07T07:41:56.0960955Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report.py::ModelReport:0, line 84 <- wrt source file 2025-09-07T07:41:56.1035645Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report.py::ModelReport:0 2025-09-07T07:41:56.1037903Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_filtered_tables:0, line 339 <- wrt source file 2025-09-07T07:41:56.1040399Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_filtered_tables:0 2025-09-07T07:41:56.1042960Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_table_visualization:0, line 427 <- wrt source file 2025-09-07T07:41:56.1045501Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_table_visualization:0 2025-09-07T07:41:56.1048091Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_plot_visualization:0, line 589 <- wrt source file 2025-09-07T07:41:56.1051224Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_plot_visualization:0 2025-09-07T07:41:56.1053817Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_histogram_visualization:0, line 662 <- wrt source file 2025-09-07T07:41:56.1056446Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\fx\_model_report\model_report_visualizer.py::ModelReportVisualizer.generate_histogram_visualization:0 2025-09-07T07:41:56.1058699Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\prepare.py::_get_edge_or_node_to_group_id:0, line 189 <- wrt source file 2025-09-07T07:41:56.1060601Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\prepare.py::_get_edge_or_node_to_group_id:0 2025-09-07T07:41:56.1062493Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\utils.py::_replace_literals_with_new_placeholders:0, line 436 <- wrt source file 2025-09-07T07:41:56.1064433Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\utils.py::_replace_literals_with_new_placeholders:0 2025-09-07T07:41:56.1066408Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_get_reduction_params:0, line 102 <- wrt source file 2025-09-07T07:41:56.1068317Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_get_reduction_params:0 2025-09-07T07:41:56.1070253Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_register_custom_op:0, line 148 <- wrt source file 2025-09-07T07:41:56.1072175Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\quantization\pt2e\_affine_quantization.py::_register_custom_op:0 2025-09-07T07:41:56.1073971Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\anomaly_mode.py::detect_anomaly:0, line 28 <- wrt source file 2025-09-07T07:41:56.1075526Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\anomaly_mode.py::detect_anomaly:0 2025-09-07T07:41:56.1077099Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::make_dual:0, line 82 <- wrt source file 2025-09-07T07:41:56.1078611Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::make_dual:0 2025-09-07T07:41:56.1080147Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::unpack_dual:0, line 151 <- wrt source file 2025-09-07T07:41:56.1081663Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::unpack_dual:0 2025-09-07T07:41:56.1083154Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::dual_level:0, line 187 <- wrt source file 2025-09-07T07:41:56.1084684Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\forward_ad.py::dual_level:0 2025-09-07T07:41:56.1086334Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_backward:0, line 71 <- wrt source file 2025-09-07T07:41:56.1088063Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_backward:0 2025-09-07T07:41:56.1089799Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_forward:0, line 115 <- wrt source file 2025-09-07T07:41:56.1092069Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.save_for_forward:0 2025-09-07T07:41:56.1093763Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_dirty:0, line 167 <- wrt source file 2025-09-07T07:41:56.1095395Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_dirty:0 2025-09-07T07:41:56.1097167Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_non_differentiable:0, line 214 <- wrt source file 2025-09-07T07:41:56.1099048Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.mark_non_differentiable:0 2025-09-07T07:41:56.1100857Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.set_materialize_grads:0, line 243 <- wrt source file 2025-09-07T07:41:56.1102679Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::FunctionCtx.set_materialize_grads:0 2025-09-07T07:41:56.1104345Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::Function:0, line 485 <- wrt source file 2025-09-07T07:41:56.1105799Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\function.py::Function:0 2025-09-07T07:41:56.1107237Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vjp:0, line 293 <- wrt source file 2025-09-07T07:41:56.1108702Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vjp:0 2025-09-07T07:41:56.1110144Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jvp:0, line 395 <- wrt source file 2025-09-07T07:41:56.1111620Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jvp:0 2025-09-07T07:41:56.1113070Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jacobian:0, line 630 <- wrt source file 2025-09-07T07:41:56.1114643Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::jacobian:0 2025-09-07T07:41:56.1116203Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hessian:0, line 894 <- wrt source file 2025-09-07T07:41:56.1117687Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hessian:0 2025-09-07T07:41:56.1119154Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vhp:0, line 1010 <- wrt source file 2025-09-07T07:41:56.1120588Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::vhp:0 2025-09-07T07:41:56.1122104Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hvp:0, line 1109 <- wrt source file 2025-09-07T07:41:56.1123626Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\functional.py::hvp:0 2025-09-07T07:41:56.1125123Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::no_grad:0, line 50 <- wrt source file 2025-09-07T07:41:56.1126648Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::no_grad:0 2025-09-07T07:41:56.1128206Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::enable_grad:0, line 108 <- wrt source file 2025-09-07T07:41:56.1129769Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::enable_grad:0 2025-09-07T07:41:56.1131921Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::set_grad_enabled:0, line 166 <- wrt source file 2025-09-07T07:41:56.1133544Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::set_grad_enabled:0 2025-09-07T07:41:56.1135200Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::inference_mode:0, line 246 <- wrt source file 2025-09-07T07:41:56.1136840Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\grad_mode.py::inference_mode:0 2025-09-07T07:41:56.1138383Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.name:0, line 53 <- wrt source file 2025-09-07T07:41:56.1139851Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.name:0 2025-09-07T07:41:56.1141330Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_hook:0, line 110 <- wrt source file 2025-09-07T07:41:56.1142840Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_hook:0 2025-09-07T07:41:56.1144441Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_prehook:0, line 147 <- wrt source file 2025-09-07T07:41:56.1146096Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::Node.register_prehook:0 2025-09-07T07:41:56.1147713Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::saved_tensors_hooks:0, line 283 <- wrt source file 2025-09-07T07:41:56.1149281Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::saved_tensors_hooks:0 2025-09-07T07:41:56.1150760Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::save_on_cpu:0, line 353 <- wrt source file 2025-09-07T07:41:56.1152252Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::save_on_cpu:0 2025-09-07T07:41:56.1153894Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::disable_saved_tensors_hooks:0, line 410 <- wrt source file 2025-09-07T07:41:56.1155588Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::disable_saved_tensors_hooks:0 2025-09-07T07:41:56.1157287Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::register_multi_grad_hook:0, line 487 <- wrt source file 2025-09-07T07:41:56.1158892Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::register_multi_grad_hook:0 2025-09-07T07:41:56.1160578Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::allow_mutation_on_saved_tensors:0, line 753 <- wrt source file 2025-09-07T07:41:56.1162315Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\graph.py::allow_mutation_on_saved_tensors:0 2025-09-07T07:41:56.1163885Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::profile:0, line 182 <- wrt source file 2025-09-07T07:41:56.1165343Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::profile:0 2025-09-07T07:41:56.1166875Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::record_function:0, line 745 <- wrt source file 2025-09-07T07:41:56.1168483Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::record_function:0 2025-09-07T07:41:56.1169990Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_itt:0, line 880 <- wrt source file 2025-09-07T07:41:56.1171939Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_itt:0 2025-09-07T07:41:56.1173398Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_nvtx:0, line 953 <- wrt source file 2025-09-07T07:41:56.1174879Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\autograd\profiler.py::emit_nvtx:0 2025-09-07T07:41:56.1176309Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_register_buffer:0, line 42 <- wrt source file 2025-09-07T07:41:56.1177773Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_register_buffer:0 2025-09-07T07:41:56.1179387Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_deregister_buffer:0, line 58 <- wrt source file 2025-09-07T07:41:56.1180859Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::gds_deregister_buffer:0 2025-09-07T07:41:56.1182271Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::GdsFile:0, line 85 <- wrt source file 2025-09-07T07:41:56.1183582Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\gds.py::GdsFile:0 2025-09-07T07:41:56.1184981Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:0, line 114 <- wrt source file 2025-09-07T07:41:56.1186457Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:0 2025-09-07T07:41:56.1187923Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:1, line 125 <- wrt source file 2025-09-07T07:41:56.1189402Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:1 2025-09-07T07:41:56.1190910Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:2, line 140 <- wrt source file 2025-09-07T07:41:56.1192390Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_jit_fn:2 2025-09-07T07:41:56.1193983Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_multi_output_jit_fn:0, line 173 <- wrt source file 2025-09-07T07:41:56.1195690Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\jiterator.py::_create_multi_output_jit_fn:0 2025-09-07T07:41:56.1197255Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\profiler.py::profile:0, line 75 <- wrt source file 2025-09-07T07:41:56.1198648Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\profiler.py::profile:0 2025-09-07T07:41:56.1200124Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh:0, line 410 <- wrt source file 2025-09-07T07:41:56.1201688Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh:0 2025-09-07T07:41:56.1203336Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh.get_local_rank:0, line 955 <- wrt source file 2025-09-07T07:41:56.1205091Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::DeviceMesh.get_local_rank:0 2025-09-07T07:41:56.1206783Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::init_device_mesh:0, line 1101 <- wrt source file 2025-09-07T07:41:56.1208402Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py::init_device_mesh:0 2025-09-07T07:41:56.1210092Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_coalescing_manager:0, line 2573 <- wrt source file 2025-09-07T07:41:56.1212352Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_coalescing_manager:0 2025-09-07T07:41:56.1214068Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_time_estimator:0, line 2675 <- wrt source file 2025-09-07T07:41:56.1215763Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::_time_estimator:0 2025-09-07T07:41:56.1217456Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::batch_isend_irecv:0, line 2722 <- wrt source file 2025-09-07T07:41:56.1219223Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::batch_isend_irecv:0 2025-09-07T07:41:56.1220898Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_reduce:0, line 2859 <- wrt source file 2025-09-07T07:41:56.1222516Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_reduce:0 2025-09-07T07:41:56.1224180Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_object:0, line 3146 <- wrt source file 2025-09-07T07:41:56.1225896Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_object:0 2025-09-07T07:41:56.1227676Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather_object:0, line 3250 <- wrt source file 2025-09-07T07:41:56.1229345Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather_object:0 2025-09-07T07:41:56.1231034Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::send_object_list:0, line 3380 <- wrt source file 2025-09-07T07:41:56.1232790Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::send_object_list:0 2025-09-07T07:41:56.1234528Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::recv_object_list:0, line 3497 <- wrt source file 2025-09-07T07:41:56.1236267Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::recv_object_list:0 2025-09-07T07:41:56.1238001Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::broadcast_object_list:0, line 3643 <- wrt source file 2025-09-07T07:41:56.1239796Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::broadcast_object_list:0 2025-09-07T07:41:56.1241559Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter_object_list:0, line 3766 <- wrt source file 2025-09-07T07:41:56.1243295Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter_object_list:0 2025-09-07T07:41:56.1244973Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather:0, line 3868 <- wrt source file 2025-09-07T07:41:56.1246593Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather:0 2025-09-07T07:41:56.1248279Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_into_tensor:0, line 3975 <- wrt source file 2025-09-07T07:41:56.1250041Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_into_tensor:0 2025-09-07T07:41:56.1251857Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_coalesced:0, line 4113 <- wrt source file 2025-09-07T07:41:56.1253613Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_gather_coalesced:0 2025-09-07T07:41:56.1255274Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather:0, line 4219 <- wrt source file 2025-09-07T07:41:56.1256860Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::gather:0 2025-09-07T07:41:56.1258439Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter:0, line 4304 <- wrt source file 2025-09-07T07:41:56.1260079Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::scatter:0 2025-09-07T07:41:56.1261756Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::reduce_scatter_tensor:0, line 4442 <- wrt source file 2025-09-07T07:41:56.1263515Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::reduce_scatter_tensor:0 2025-09-07T07:41:56.1265252Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all_single:0, line 4584 <- wrt source file 2025-09-07T07:41:56.1266972Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all_single:0 2025-09-07T07:41:56.1268635Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all:0, line 4718 <- wrt source file 2025-09-07T07:41:56.1270256Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::all_to_all:0 2025-09-07T07:41:56.1271962Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::monitored_barrier:0, line 4926 <- wrt source file 2025-09-07T07:41:56.1273686Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::monitored_barrier:0 2025-09-07T07:41:56.1275430Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups:0, line 5468 <- wrt source file 2025-09-07T07:41:56.1277169Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups:0 2025-09-07T07:41:56.1279027Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups_by_enumeration:0, line 5562 <- wrt source file 2025-09-07T07:41:56.1280897Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\distributed_c10d.py::new_subgroups_by_enumeration:0 2025-09-07T07:41:56.1282554Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\launch.py::__doc__:0, line 84 <- wrt source file 2025-09-07T07:41:56.1284030Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\launch.py::__doc__:0 2025-09-07T07:41:56.1285487Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\run.py::__doc__:0, line 57 <- wrt source file 2025-09-07T07:41:56.1286901Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\run.py::__doc__:0 2025-09-07T07:41:56.1288403Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_distributed_c10d.py::__doc__:0, line 11 <- wrt source file 2025-09-07T07:41:56.1289986Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_distributed_c10d.py::__doc__:0 2025-09-07T07:41:56.1291627Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\autograd\__init__.py::context:0, line 47 <- wrt source file 2025-09-07T07:41:56.1293257Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\autograd\__init__.py::context:0 2025-09-07T07:41:56.1294811Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\join.py::Join:0, line 141 <- wrt source file 2025-09-07T07:41:56.1296379Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\join.py::Join:0 2025-09-07T07:41:56.1298164Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\__init__.py::register_ddp_comm_hook:0, line 107 <- wrt source file 2025-09-07T07:41:56.1300188Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\__init__.py::register_ddp_comm_hook:0 2025-09-07T07:41:56.1302183Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py::noop_hook:0, line 23 <- wrt source file 2025-09-07T07:41:56.1304146Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py::noop_hook:0 2025-09-07T07:41:56.1306086Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::allreduce_hook:0, line 49 <- wrt source file 2025-09-07T07:41:56.1308088Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::allreduce_hook:0 2025-09-07T07:41:56.1310100Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::fp16_compress_hook:0, line 104 <- wrt source file 2025-09-07T07:41:56.1312148Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::fp16_compress_hook:0 2025-09-07T07:41:56.1314193Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::bf16_compress_hook:0, line 125 <- wrt source file 2025-09-07T07:41:56.1316303Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::bf16_compress_hook:0 2025-09-07T07:41:56.1318334Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::fp16_compress_wrapper:0, line 143 <- wrt source file 2025-09-07T07:41:56.1320454Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::fp16_compress_wrapper:0 2025-09-07T07:41:56.1322508Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::bf16_compress_wrapper:0, line 182 <- wrt source file 2025-09-07T07:41:56.1324557Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py::bf16_compress_wrapper:0 2025-09-07T07:41:56.1326686Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py::post_localSGD_hook:0, line 91 <- wrt source file 2025-09-07T07:41:56.1328745Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py::post_localSGD_hook:0 2025-09-07T07:41:56.1330773Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py::powerSGD_hook:0, line 395 <- wrt source file 2025-09-07T07:41:56.1332802Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py::powerSGD_hook:0 2025-09-07T07:41:56.1334861Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py::batched_powerSGD_hook:0, line 708 <- wrt source file 2025-09-07T07:41:56.1336912Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py::batched_powerSGD_hook:0 2025-09-07T07:41:56.1339107Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py::quantization_pertensor_hook:0, line 64 <- wrt source file 2025-09-07T07:41:56.1341708Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py::quantization_pertensor_hook:0 2025-09-07T07:41:56.1344014Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py::quantization_perchannel_hook:0, line 145 <- wrt source file 2025-09-07T07:41:56.1346265Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py::quantization_perchannel_hook:0 2025-09-07T07:41:56.1348415Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\averagers.py::PeriodicModelAverager:0, line 57 <- wrt source file 2025-09-07T07:41:56.1350547Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\averagers.py::PeriodicModelAverager:0 2025-09-07T07:41:56.1352773Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py::HierarchicalModelAverager:0, line 54 <- wrt source file 2025-09-07T07:41:56.1355194Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py::HierarchicalModelAverager:0 2025-09-07T07:41:56.1357498Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::BroadcastingTorchSaveReader:0, line 49 <- wrt source file 2025-09-07T07:41:56.1359544Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::BroadcastingTorchSaveReader:0 2025-09-07T07:41:56.1361525Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::DynamicMetaLoadPlanner:0, line 161 <- wrt source file 2025-09-07T07:41:56.1363479Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\format_utils.py::DynamicMetaLoadPlanner:0 2025-09-07T07:41:56.1365416Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\optimizer.py::load_sharded_optimizer_state_dict:0, line 225 <- wrt source file 2025-09-07T07:41:56.1367449Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\optimizer.py::load_sharded_optimizer_state_dict:0 2025-09-07T07:41:56.1369351Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::get_state_dict:0, line 1144 <- wrt source file 2025-09-07T07:41:56.1371083Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::get_state_dict:0 2025-09-07T07:41:56.1372869Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_model_state_dict:0, line 1395 <- wrt source file 2025-09-07T07:41:56.1374777Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_model_state_dict:0 2025-09-07T07:41:56.1376640Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_optimizer_state_dict:0, line 1454 <- wrt source file 2025-09-07T07:41:56.1378585Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict.py::_patch_optimizer_state_dict:0 2025-09-07T07:41:56.1380460Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_loader.py::load:0, line 131 <- wrt source file 2025-09-07T07:41:56.1382162Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_loader.py::load:0 2025-09-07T07:41:56.1383872Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::save:0, line 159 <- wrt source file 2025-09-07T07:41:56.1385666Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::save:0 2025-09-07T07:41:56.1387398Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::async_save:0, line 273 <- wrt source file 2025-09-07T07:41:56.1389158Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\state_dict_saver.py::async_save:0 2025-09-07T07:41:56.1391012Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\barriers.py::BarrierConfig:0, line 50 <- wrt source file 2025-09-07T07:41:56.1392959Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\barriers.py::BarrierConfig:0 2025-09-07T07:41:56.1394916Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_sync_checkpointer:0, line 77 <- wrt source file 2025-09-07T07:41:56.1397005Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_sync_checkpointer:0 2025-09-07T07:41:56.1399101Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_async_checkpointer:0, line 138 <- wrt source file 2025-09-07T07:41:56.1401165Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\builder.py::make_async_checkpointer:0 2025-09-07T07:41:56.1403252Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer:0, line 104 <- wrt source file 2025-09-07T07:41:56.1405292Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer:0 2025-09-07T07:41:56.1407362Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer.save:0, line 142 <- wrt source file 2025-09-07T07:41:56.1409535Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::SyncCheckpointer.save:0 2025-09-07T07:41:56.1411614Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer:0, line 213 <- wrt source file 2025-09-07T07:41:56.1413654Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer:0 2025-09-07T07:41:56.1415802Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer.save:0, line 260 <- wrt source file 2025-09-07T07:41:56.1417931Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\checkpointer.py::AsyncCheckpointer.save:0 2025-09-07T07:41:56.1420019Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\staging.py::DefaultStager.close:0, line 206 <- wrt source file 2025-09-07T07:41:56.1422074Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\_experimental\staging.py::DefaultStager.close:0 2025-09-07T07:41:56.1424030Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\events\__init__.py::construct_and_record_rdzv_event:0, line 110 <- wrt source file 2025-09-07T07:41:56.1425985Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\events\__init__.py::construct_and_record_rdzv_event:0 2025-09-07T07:41:56.1428048Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\rendezvous\api.py::RendezvousHandler.shutdown:0, line 231 <- wrt source file 2025-09-07T07:41:56.1430008Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\rendezvous\api.py::RendezvousHandler.shutdown:0 2025-09-07T07:41:56.1431873Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\utils\distributed.py::get_free_port:0, line 141 <- wrt source file 2025-09-07T07:41:56.1433731Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\elastic\utils\distributed.py::get_free_port:0 2025-09-07T07:41:56.1435406Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::MixedPrecision:0, line 202 <- wrt source file 2025-09-07T07:41:56.1437009Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::MixedPrecision:0 2025-09-07T07:41:56.1438627Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::StateDictType:0, line 262 <- wrt source file 2025-09-07T07:41:56.1440219Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py::StateDictType:0 2025-09-07T07:41:56.1442018Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel:0, line 125 <- wrt source file 2025-09-07T07:41:56.1444129Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel:0 2025-09-07T07:41:56.1446342Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.set_state_dict_type:0, line 651 <- wrt source file 2025-09-07T07:41:56.1448666Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.set_state_dict_type:0 2025-09-07T07:41:56.1451031Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.state_dict_type:0, line 798 <- wrt source file 2025-09-07T07:41:56.1453300Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.state_dict_type:0 2025-09-07T07:41:56.1455684Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.shard_full_optim_state_dict:0, line 1490 <- wrt source file 2025-09-07T07:41:56.1458147Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.shard_full_optim_state_dict:0 2025-09-07T07:41:56.1460598Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.scatter_full_optim_state_dict:0, line 1610 <- wrt source file 2025-09-07T07:41:56.1463178Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.scatter_full_optim_state_dict:0 2025-09-07T07:41:56.1465605Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.rekey_optim_state_dict:0, line 1695 <- wrt source file 2025-09-07T07:41:56.1468007Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.rekey_optim_state_dict:0 2025-09-07T07:41:56.1470412Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.optim_state_dict:0, line 1824 <- wrt source file 2025-09-07T07:41:56.1472707Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.optim_state_dict:0 2025-09-07T07:41:56.1475104Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.optim_state_dict_to_load:0, line 1911 <- wrt source file 2025-09-07T07:41:56.1477536Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\fully_sharded_data_parallel.py::FullyShardedDataParallel.optim_state_dict_to_load:0 2025-09-07T07:41:56.1479627Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\sharded_grad_scaler.py::ShardedGradScaler:0, line 54 <- wrt source file 2025-09-07T07:41:56.1481507Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\sharded_grad_scaler.py::ShardedGradScaler:0 2025-09-07T07:41:56.1483196Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\wrap.py::CustomPolicy:0, line 224 <- wrt source file 2025-09-07T07:41:56.1484800Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\wrap.py::CustomPolicy:0 2025-09-07T07:41:56.1486496Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\functional.py::_all_gather_base:0, line 130 <- wrt source file 2025-09-07T07:41:56.1488165Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\functional.py::_all_gather_base:0 2025-09-07T07:41:56.1489880Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::_RemoteModule.__init__:0, line 196 <- wrt source file 2025-09-07T07:41:56.1491717Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::_RemoteModule.__init__:0 2025-09-07T07:41:56.1493643Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::_RemoteModule.init_from_module_rref:0, line 520 <- wrt source file 2025-09-07T07:41:56.1495614Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::_RemoteModule.init_from_module_rref:0 2025-09-07T07:41:56.1497436Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::RemoteModule:0, line 643 <- wrt source file 2025-09-07T07:41:56.1499176Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\nn\api\remote_module.py::RemoteModule:0 2025-09-07T07:41:56.1501041Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\apply_optimizer_in_backward.py::_apply_optimizer_in_backward:0, line 43 <- wrt source file 2025-09-07T07:41:56.1503107Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\apply_optimizer_in_backward.py::_apply_optimizer_in_backward:0 2025-09-07T07:41:56.1505266Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\apply_optimizer_in_backward.py::_get_in_backward_optimizers:0, line 114 <- wrt source file 2025-09-07T07:41:56.1507300Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\apply_optimizer_in_backward.py::_get_in_backward_optimizers:0 2025-09-07T07:41:56.1509206Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\named_optimizer.py::_NamedOptimizer:0, line 43 <- wrt source file 2025-09-07T07:41:56.1511014Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\named_optimizer.py::_NamedOptimizer:0 2025-09-07T07:41:56.1512821Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\optimizer.py::DistributedOptimizer:0, line 162 <- wrt source file 2025-09-07T07:41:56.1514597Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\optimizer.py::DistributedOptimizer:0 2025-09-07T07:41:56.1516549Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\post_localSGD_optimizer.py::PostLocalSGDOptimizer:0, line 19 <- wrt source file 2025-09-07T07:41:56.1518515Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\post_localSGD_optimizer.py::PostLocalSGDOptimizer:0 2025-09-07T07:41:56.1520368Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\utils.py::register_functional_optim:0, line 37 <- wrt source file 2025-09-07T07:41:56.1522163Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\utils.py::register_functional_optim:0 2025-09-07T07:41:56.1524080Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\zero_redundancy_optimizer.py::ZeroRedundancyOptimizer:0, line 335 <- wrt source file 2025-09-07T07:41:56.1526156Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\optim\zero_redundancy_optimizer.py::ZeroRedundancyOptimizer:0 2025-09-07T07:41:56.1528134Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::_CustomReducer:0, line 34 <- wrt source file 2025-09-07T07:41:56.1529895Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::_CustomReducer:0 2025-09-07T07:41:56.1531757Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_tuple:0, line 83 <- wrt source file 2025-09-07T07:41:56.1533753Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_tuple:0 2025-09-07T07:41:56.1535697Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_dict:0, line 102 <- wrt source file 2025-09-07T07:41:56.1537635Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\microbatch.py::TensorChunkSpec.from_dict:0 2025-09-07T07:41:56.1539451Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\_IR.py::pipe_split:0, line 333 <- wrt source file 2025-09-07T07:41:56.1541056Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\pipelining\_IR.py::pipe_split:0 2025-09-07T07:41:56.1542591Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::_wait_all:0, line 174 <- wrt source file 2025-09-07T07:41:56.1544076Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::_wait_all:0 2025-09-07T07:41:56.1545657Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::shutdown:0, line 345 <- wrt source file 2025-09-07T07:41:56.1547223Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::shutdown:0 2025-09-07T07:41:56.1548699Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::remote:0, line 606 <- wrt source file 2025-09-07T07:41:56.1550146Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::remote:0 2025-09-07T07:41:56.1551666Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_sync:0, line 786 <- wrt source file 2025-09-07T07:41:56.1553190Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_sync:0 2025-09-07T07:41:56.1554667Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_async:0, line 878 <- wrt source file 2025-09-07T07:41:56.1556208Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\api.py::rpc_async:0 2025-09-07T07:41:56.1557834Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\functions.py::async_execution:0, line 34 <- wrt source file 2025-09-07T07:41:56.1559470Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\functions.py::async_execution:0 2025-09-07T07:41:56.1561330Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\options.py::TensorPipeRpcBackendOptions.set_device_map:0, line 125 <- wrt source file 2025-09-07T07:41:56.1563433Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\options.py::TensorPipeRpcBackendOptions.set_device_map:0 2025-09-07T07:41:56.1565484Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\server_process_global_profiler.py::_server_process_global_profile:0, line 60 <- wrt source file 2025-09-07T07:41:56.1567621Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\rpc\server_process_global_profiler.py::_server_process_global_profile:0 2025-09-07T07:41:56.1569551Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_api.py::_shard_tensor:0, line 828 <- wrt source file 2025-09-07T07:41:56.1571118Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_api.py::_shard_tensor:0 2025-09-07T07:41:56.1572926Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_random.py::OffsetBasedRNGTracker._set_pre_op_offset:0, line 294 <- wrt source file 2025-09-07T07:41:56.1574982Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_random.py::OffsetBasedRNGTracker._set_pre_op_offset:0 2025-09-07T07:41:56.1576881Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_func_map.py::local_map:0, line 103 <- wrt source file 2025-09-07T07:41:56.1578667Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_func_map.py::local_map:0 2025-09-07T07:41:56.1580622Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_register_sharding.py::register_sharding:0, line 47 <- wrt source file 2025-09-07T07:41:56.1582647Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\experimental\_register_sharding.py::register_sharding:0 2025-09-07T07:41:56.1584520Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\api.py::parallelize_module:0, line 56 <- wrt source file 2025-09-07T07:41:56.1586339Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\api.py::parallelize_module:0 2025-09-07T07:41:56.1588179Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\ddp.py::_pre_dp_module_transform:0, line 88 <- wrt source file 2025-09-07T07:41:56.1589978Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\ddp.py::_pre_dp_module_transform:0 2025-09-07T07:41:56.1591787Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\loss.py::loss_parallel:0, line 56 <- wrt source file 2025-09-07T07:41:56.1593528Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\loss.py::loss_parallel:0 2025-09-07T07:41:56.1595292Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::ColwiseParallel:0, line 64 <- wrt source file 2025-09-07T07:41:56.1597109Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::ColwiseParallel:0 2025-09-07T07:41:56.1598938Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::RowwiseParallel:0, line 198 <- wrt source file 2025-09-07T07:41:56.1600709Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::RowwiseParallel:0 2025-09-07T07:41:56.1602490Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::SequenceParallel:0, line 350 <- wrt source file 2025-09-07T07:41:56.1604321Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::SequenceParallel:0 2025-09-07T07:41:56.1606110Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInput:0, line 452 <- wrt source file 2025-09-07T07:41:56.1607977Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInput:0 2025-09-07T07:41:56.1609796Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleOutput:0, line 615 <- wrt source file 2025-09-07T07:41:56.1611956Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleOutput:0 2025-09-07T07:41:56.1613836Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInputOutput:0, line 740 <- wrt source file 2025-09-07T07:41:56.1615823Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\parallel\style.py::PrepareModuleInputOutput:0 2025-09-07T07:41:56.1617656Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_ops\_common_rules.py::pointwise_rule:0, line 230 <- wrt source file 2025-09-07T07:41:56.1619438Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\tensor\_ops\_common_rules.py::pointwise_rule:0 2025-09-07T07:41:56.1825783Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\checkpoint_activation.py::checkpoint:0, line 53 <- wrt source file 2025-09-07T07:41:56.1826922Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\checkpoint_activation.py::checkpoint:0 2025-09-07T07:41:56.1827965Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\contract.py::contract:0, line 66 <- wrt source file 2025-09-07T07:41:56.1828970Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\contract.py::contract:0 2025-09-07T07:41:56.1829976Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate.py::replicate:0, line 190 <- wrt source file 2025-09-07T07:41:56.1831081Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate.py::replicate:0 2025-09-07T07:41:56.1832131Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate_with_fsdp.py::replicate:0, line 247 <- wrt source file 2025-09-07T07:41:56.1833224Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_composable\replicate_with_fsdp.py::replicate:0 2025-09-07T07:41:56.1834370Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_optim\__init__.py::named_params_with_sharded_tensor:0, line 31 <- wrt source file 2025-09-07T07:41:56.1835631Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_optim\__init__.py::named_params_with_sharded_tensor:0 2025-09-07T07:41:56.1836898Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\__init__.py::init_from_local_shards:0, line 384 <- wrt source file 2025-09-07T07:41:56.1838038Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\__init__.py::init_from_local_shards:0 2025-09-07T07:41:56.1839184Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\__init__.py::custom_sharded_op_impl:0, line 457 <- wrt source file 2025-09-07T07:41:56.1840335Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\__init__.py::custom_sharded_op_impl:0 2025-09-07T07:41:56.1841510Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\api.py::ShardedTensor._init_from_local_tensor:0, line 856 <- wrt source file 2025-09-07T07:41:56.1843212Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\api.py::ShardedTensor._init_from_local_tensor:0 2025-09-07T07:41:56.1844404Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\api.py::ShardedTensor.reshard:0, line 1094 <- wrt source file 2025-09-07T07:41:56.1845575Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\api.py::ShardedTensor.reshard:0 2025-09-07T07:41:56.1846695Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\_ops\_common.py::_sharded_op_common:0, line 18 <- wrt source file 2025-09-07T07:41:56.1847834Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharded_tensor\_ops\_common.py::_sharded_op_common:0 2025-09-07T07:41:56.1848936Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharding_plan\api.py::ShardingPlan:0, line 36 <- wrt source file 2025-09-07T07:41:56.1849985Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_shard\sharding_plan\api.py::ShardingPlan:0 2025-09-07T07:41:56.1851016Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::put:0, line 142 <- wrt source file 2025-09-07T07:41:56.1852055Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::put:0 2025-09-07T07:41:56.1853092Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::get:0, line 195 <- wrt source file 2025-09-07T07:41:56.1854125Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::get:0 2025-09-07T07:41:56.1855265Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::putmem_signal_block:0, line 268 <- wrt source file 2025-09-07T07:41:56.1856413Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::putmem_signal_block:0 2025-09-07T07:41:56.1857524Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::wait_until:0, line 323 <- wrt source file 2025-09-07T07:41:56.1858621Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::wait_until:0 2025-09-07T07:41:56.1859765Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_wait_until:0, line 386 <- wrt source file 2025-09-07T07:41:56.1860904Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_wait_until:0 2025-09-07T07:41:56.1862012Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_op:0, line 437 <- wrt source file 2025-09-07T07:41:56.1863091Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::signal_op:0 2025-09-07T07:41:56.1864161Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::fence:0, line 490 <- wrt source file 2025-09-07T07:41:56.1865219Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::fence:0 2025-09-07T07:41:56.1866274Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::quiet:0, line 536 <- wrt source file 2025-09-07T07:41:56.1867374Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::quiet:0 2025-09-07T07:41:56.1868418Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::my_pe:0, line 580 <- wrt source file 2025-09-07T07:41:56.1869511Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::my_pe:0 2025-09-07T07:41:56.1870561Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::n_pes:0, line 623 <- wrt source file 2025-09-07T07:41:56.1871618Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::n_pes:0 2025-09-07T07:41:56.1872688Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::barrier_all:0, line 674 <- wrt source file 2025-09-07T07:41:56.1873789Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::barrier_all:0 2025-09-07T07:41:56.1874863Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::sync_all:0, line 720 <- wrt source file 2025-09-07T07:41:56.1875941Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::sync_all:0 2025-09-07T07:41:56.1877107Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::alltoall:0, line 759 <- wrt source file 2025-09-07T07:41:56.1878184Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::alltoall:0 2025-09-07T07:41:56.1879262Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::broadcast:0, line 814 <- wrt source file 2025-09-07T07:41:56.1880410Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::broadcast:0 2025-09-07T07:41:56.1881487Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce:0, line 875 <- wrt source file 2025-09-07T07:41:56.1882551Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce:0 2025-09-07T07:41:56.2003583Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce_extern_wrapper:0, line 921 <- wrt source file 2025-09-07T07:41:56.2004799Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_symmetric_memory\_nvshmem_triton.py::reduce_extern_wrapper:0 2025-09-07T07:41:56.2005910Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_tools\memory_tracker.py::MemoryTracker:0, line 55 <- wrt source file 2025-09-07T07:41:56.2006938Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\_tools\memory_tracker.py::MemoryTracker:0 2025-09-07T07:41:56.2008684Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\bernoulli.py::Bernoulli:0, line 30 <- wrt source file 2025-09-07T07:41:56.2009731Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\bernoulli.py::Bernoulli:0 2025-09-07T07:41:56.2010625Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\beta.py::Beta:0, line 21 <- wrt source file 2025-09-07T07:41:56.2011484Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\beta.py::Beta:0 2025-09-07T07:41:56.2012434Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\binomial.py::Binomial:0, line 31 <- wrt source file 2025-09-07T07:41:56.2013339Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\binomial.py::Binomial:0 2025-09-07T07:41:56.2015071Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\categorical.py::Categorical:0, line 42 <- wrt source file 2025-09-07T07:41:56.2016132Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\categorical.py::Categorical:0 2025-09-07T07:41:56.2017044Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\cauchy.py::Cauchy:0, line 23 <- wrt source file 2025-09-07T07:41:56.2017926Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\cauchy.py::Cauchy:0 2025-09-07T07:41:56.2018782Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\chi2.py::Chi2:0, line 18 <- wrt source file 2025-09-07T07:41:56.2019635Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\chi2.py::Chi2:0 2025-09-07T07:41:56.2021148Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::is_dependent:0, line 166 <- wrt source file 2025-09-07T07:41:56.2022355Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::is_dependent:0 2025-09-07T07:41:56.2023362Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::_DependentProperty:0, line 187 <- wrt source file 2025-09-07T07:41:56.2024388Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\constraints.py::_DependentProperty:0 2025-09-07T07:41:56.2025453Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\continuous_bernoulli.py::ContinuousBernoulli:0, line 35 <- wrt source file 2025-09-07T07:41:56.2026997Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\continuous_bernoulli.py::ContinuousBernoulli:0 2025-09-07T07:41:56.2028488Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\dirichlet.py::Dirichlet:0, line 42 <- wrt source file 2025-09-07T07:41:56.2029412Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\dirichlet.py::Dirichlet:0 2025-09-07T07:41:56.2030356Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\exponential.py::Exponential:0, line 20 <- wrt source file 2025-09-07T07:41:56.2031368Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\exponential.py::Exponential:0 2025-09-07T07:41:56.2032358Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\fishersnedecor.py::FisherSnedecor:0, line 21 <- wrt source file 2025-09-07T07:41:56.2033374Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\fishersnedecor.py::FisherSnedecor:0 2025-09-07T07:41:56.2034326Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gamma.py::Gamma:0, line 24 <- wrt source file 2025-09-07T07:41:56.2035194Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gamma.py::Gamma:0 2025-09-07T07:41:56.2036194Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\generalized_pareto.py::GeneralizedPareto:0, line 26 <- wrt source file 2025-09-07T07:41:56.2037268Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\generalized_pareto.py::GeneralizedPareto:0 2025-09-07T07:41:56.2038954Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\geometric.py::Geometric:0, line 36 <- wrt source file 2025-09-07T07:41:56.2040148Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\geometric.py::Geometric:0 2025-09-07T07:41:56.2041057Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gumbel.py::Gumbel:0, line 23 <- wrt source file 2025-09-07T07:41:56.2041991Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\gumbel.py::Gumbel:0 2025-09-07T07:41:56.2042911Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_cauchy.py::HalfCauchy:0, line 24 <- wrt source file 2025-09-07T07:41:56.2043866Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_cauchy.py::HalfCauchy:0 2025-09-07T07:41:56.2045454Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_normal.py::HalfNormal:0, line 24 <- wrt source file 2025-09-07T07:41:56.2046412Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\half_normal.py::HalfNormal:0 2025-09-07T07:41:56.2047356Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\independent.py::Independent:0, line 27 <- wrt source file 2025-09-07T07:41:56.2048329Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\independent.py::Independent:0 2025-09-07T07:41:56.2049291Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\inverse_gamma.py::InverseGamma:0, line 24 <- wrt source file 2025-09-07T07:41:56.2050252Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\inverse_gamma.py::InverseGamma:0 2025-09-07T07:41:56.2051225Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\kumaraswamy.py::Kumaraswamy:0, line 30 <- wrt source file 2025-09-07T07:41:56.2052191Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\kumaraswamy.py::Kumaraswamy:0 2025-09-07T07:41:56.2053175Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\laplace.py::Laplace:0, line 20 <- wrt source file 2025-09-07T07:41:56.2054086Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\laplace.py::Laplace:0 2025-09-07T07:41:56.2055156Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lkj_cholesky.py::LKJCholesky:0, line 43 <- wrt source file 2025-09-07T07:41:56.2056638Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lkj_cholesky.py::LKJCholesky:0 2025-09-07T07:41:56.2057688Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\logistic_normal.py::LogisticNormal:0, line 28 <- wrt source file 2025-09-07T07:41:56.2058706Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\logistic_normal.py::LogisticNormal:0 2025-09-07T07:41:56.2059689Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\log_normal.py::LogNormal:0, line 23 <- wrt source file 2025-09-07T07:41:56.2060624Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\log_normal.py::LogNormal:0 2025-09-07T07:41:56.2061697Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lowrank_multivariate_normal.py::LowRankMultivariateNormal:0, line 63 <- wrt source file 2025-09-07T07:41:56.2062915Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\lowrank_multivariate_normal.py::LowRankMultivariateNormal:0 2025-09-07T07:41:56.2064036Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\mixture_same_family.py::MixtureSameFamily:0, line 24 <- wrt source file 2025-09-07T07:41:56.2065222Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\mixture_same_family.py::MixtureSameFamily:0 2025-09-07T07:41:56.2066236Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multinomial.py::Multinomial:0, line 38 <- wrt source file 2025-09-07T07:41:56.2295025Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multinomial.py::Multinomial:0 2025-09-07T07:41:56.2296787Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multivariate_normal.py::MultivariateNormal:0, line 103 <- wrt source file 2025-09-07T07:41:56.2298662Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\multivariate_normal.py::MultivariateNormal:0 2025-09-07T07:41:56.2300349Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\normal.py::Normal:0, line 22 <- wrt source file 2025-09-07T07:41:56.2301827Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\normal.py::Normal:0 2025-09-07T07:41:56.2303464Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\one_hot_categorical.py::OneHotCategorical:0, line 34 <- wrt source file 2025-09-07T07:41:56.2305308Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\one_hot_categorical.py::OneHotCategorical:0 2025-09-07T07:41:56.2306942Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\pareto.py::Pareto:0, line 20 <- wrt source file 2025-09-07T07:41:56.2308411Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\pareto.py::Pareto:0 2025-09-07T07:41:56.2309898Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\poisson.py::Poisson:0, line 25 <- wrt source file 2025-09-07T07:41:56.2311466Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\poisson.py::Poisson:0 2025-09-07T07:41:56.2313206Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_bernoulli.py::RelaxedBernoulli:0, line 127 <- wrt source file 2025-09-07T07:41:56.2314993Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_bernoulli.py::RelaxedBernoulli:0 2025-09-07T07:41:56.2316955Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_categorical.py::RelaxedOneHotCategorical:0, line 116 <- wrt source file 2025-09-07T07:41:56.2318914Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\relaxed_categorical.py::RelaxedOneHotCategorical:0 2025-09-07T07:41:56.2320705Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\studentT.py::StudentT:0, line 22 <- wrt source file 2025-09-07T07:41:56.2322239Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\studentT.py::StudentT:0 2025-09-07T07:41:56.2323880Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CatTransform:0, line 1065 <- wrt source file 2025-09-07T07:41:56.2325500Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CatTransform:0 2025-09-07T07:41:56.2327121Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::StackTransform:0, line 1177 <- wrt source file 2025-09-07T07:41:56.2328807Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::StackTransform:0 2025-09-07T07:41:56.2330642Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CumulativeDistributionTransform:0, line 1253 <- wrt source file 2025-09-07T07:41:56.2332590Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\transforms.py::CumulativeDistributionTransform:0 2025-09-07T07:41:56.2334373Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\uniform.py::Uniform:0, line 21 <- wrt source file 2025-09-07T07:41:56.2335991Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\uniform.py::Uniform:0 2025-09-07T07:41:56.2337496Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\utils.py::clamp_probs:0, line 114 <- wrt source file 2025-09-07T07:41:56.2339019Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\utils.py::clamp_probs:0 2025-09-07T07:41:56.2340547Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\von_mises.py::VonMises:0, line 117 <- wrt source file 2025-09-07T07:41:56.2342134Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\von_mises.py::VonMises:0 2025-09-07T07:41:56.2343656Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\weibull.py::Weibull:0, line 22 <- wrt source file 2025-09-07T07:41:56.2345146Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\weibull.py::Weibull:0 2025-09-07T07:41:56.2346639Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\wishart.py::Wishart:0, line 39 <- wrt source file 2025-09-07T07:41:56.2348187Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributions\wishart.py::Wishart:0 2025-09-07T07:41:56.2349661Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::Dim:0, line 103 <- wrt source file 2025-09-07T07:41:56.2351094Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::Dim:0 2025-09-07T07:41:56.2352617Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:0, line 715 <- wrt source file 2025-09-07T07:41:56.2354338Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:0 2025-09-07T07:41:56.2355952Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:1, line 731 <- wrt source file 2025-09-07T07:41:56.2357637Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::ShapesCollection:1 2025-09-07T07:41:56.2359266Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::AdditionalInputs:0, line 815 <- wrt source file 2025-09-07T07:41:56.2360948Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\export\dynamic_shapes.py::AdditionalInputs:0 2025-09-07T07:41:56.2362427Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::_snake_case:0, line 102 <- wrt source file 2025-09-07T07:41:56.2363793Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::_snake_case:0 2025-09-07T07:41:56.2365267Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.eliminate_dead_code:0, line 1873 <- wrt source file 2025-09-07T07:41:56.2366830Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.eliminate_dead_code:0 2025-09-07T07:41:56.2368332Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.on_generate_code:0, line 1967 <- wrt source file 2025-09-07T07:41:56.2369812Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\graph.py::Graph.on_generate_code:0 2025-09-07T07:41:56.2371339Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Interpreter:0, line 49 <- wrt source file 2025-09-07T07:41:56.2372828Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Interpreter:0 2025-09-07T07:41:56.2374271Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Transformer:0, line 480 <- wrt source file 2025-09-07T07:41:56.2375765Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\interpreter.py::Transformer:0 2025-09-07T07:41:56.2377317Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\subgraph_rewriter.py::replace_pattern:0, line 125 <- wrt source file 2025-09-07T07:41:56.2378884Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\subgraph_rewriter.py::replace_pattern:0 2025-09-07T07:41:56.2380371Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::TensorType:0, line 12 <- wrt source file 2025-09-07T07:41:56.2381800Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::TensorType:0 2025-09-07T07:41:56.2383291Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_consistent:0, line 65 <- wrt source file 2025-09-07T07:41:56.2384741Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_consistent:0 2025-09-07T07:41:56.2386192Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_more_precise:0, line 93 <- wrt source file 2025-09-07T07:41:56.2387662Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\tensor_type.py::is_more_precise:0 2025-09-07T07:41:56.2389344Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\rewriter.py::AST_Rewriter.visit_AnnAssign:0, line 96 <- wrt source file 2025-09-07T07:41:56.3934367Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\rewriter.py::AST_Rewriter.visit_AnnAssign:0 2025-09-07T07:41:56.3936322Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\core.py::reify:0, line 58 <- wrt source file 2025-09-07T07:41:56.3937474Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\core.py::reify:0 2025-09-07T07:41:56.3938461Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\match.py::VarDispatcher:0, line 48 <- wrt source file 2025-09-07T07:41:56.3939485Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\match.py::VarDispatcher:0 2025-09-07T07:41:56.3940574Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unifiable:0, line 11 <- wrt source file 2025-09-07T07:41:56.3941609Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unifiable:0 2025-09-07T07:41:56.3942636Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::reify_object:0, line 37 <- wrt source file 2025-09-07T07:41:56.3943647Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::reify_object:0 2025-09-07T07:41:56.3944646Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unify_object:0, line 93 <- wrt source file 2025-09-07T07:41:56.3945640Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\more.py::unify_object:0 2025-09-07T07:41:56.3946660Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge:0, line 37 <- wrt source file 2025-09-07T07:41:56.3947785Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge:0 2025-09-07T07:41:56.3948920Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge_with:0, line 64 <- wrt source file 2025-09-07T07:41:56.3950082Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::merge_with:0 2025-09-07T07:41:56.3951152Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valmap:0, line 90 <- wrt source file 2025-09-07T07:41:56.3952221Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valmap:0 2025-09-07T07:41:56.3953338Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keymap:0, line 106 <- wrt source file 2025-09-07T07:41:56.3954425Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keymap:0 2025-09-07T07:41:56.3955490Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemmap:0, line 122 <- wrt source file 2025-09-07T07:41:56.3956621Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemmap:0 2025-09-07T07:41:56.3957702Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valfilter:0, line 138 <- wrt source file 2025-09-07T07:41:56.3958859Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::valfilter:0 2025-09-07T07:41:56.3960345Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keyfilter:0, line 158 <- wrt source file 2025-09-07T07:41:56.3962424Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::keyfilter:0 2025-09-07T07:41:56.3964499Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemfilter:0, line 178 <- wrt source file 2025-09-07T07:41:56.3966652Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::itemfilter:0 2025-09-07T07:41:56.3968625Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc:0, line 204 <- wrt source file 2025-09-07T07:41:56.3970754Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc:0 2025-09-07T07:41:56.3972794Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::dissoc:0, line 221 <- wrt source file 2025-09-07T07:41:56.3974836Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::dissoc:0 2025-09-07T07:41:56.3976911Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc_in:0, line 247 <- wrt source file 2025-09-07T07:41:56.3978950Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::assoc_in:0 2025-09-07T07:41:56.3980926Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::update_in:0, line 275 <- wrt source file 2025-09-07T07:41:56.3983046Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::update_in:0 2025-09-07T07:41:56.3985205Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::get_in:0, line 328 <- wrt source file 2025-09-07T07:41:56.3987230Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::get_in:0 2025-09-07T07:41:56.3989406Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::groupby:0, line 375 <- wrt source file 2025-09-07T07:41:56.3991390Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::groupby:0 2025-09-07T07:41:56.3993367Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::first:0, line 416 <- wrt source file 2025-09-07T07:41:56.3995410Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\unification_tools.py::first:0 2025-09-07T07:41:56.3997455Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::transitive_get:0, line 15 <- wrt source file 2025-09-07T07:41:56.3999391Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::transitive_get:0 2025-09-07T07:41:56.4001368Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::_toposort:0, line 42 <- wrt source file 2025-09-07T07:41:56.4003239Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::_toposort:0 2025-09-07T07:41:56.4005115Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::reverse_dict:0, line 70 <- wrt source file 2025-09-07T07:41:56.4007097Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::reverse_dict:0 2025-09-07T07:41:56.4009088Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::freeze:0, line 95 <- wrt source file 2025-09-07T07:41:56.4010858Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\utils.py::freeze:0 2025-09-07T07:41:56.4012774Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\variable.py::variables:0, line 67 <- wrt source file 2025-09-07T07:41:56.4014701Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\variable.py::variables:0 2025-09-07T07:41:56.4017420Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\core.py::dispatch:0, line 20 <- wrt source file 2025-09-07T07:41:56.4019669Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\core.py::dispatch:0 2025-09-07T07:41:56.4021878Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher:0, line 113 <- wrt source file 2025-09-07T07:41:56.4328180Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher:0 2025-09-07T07:41:56.4329450Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.register:0, line 138 <- wrt source file 2025-09-07T07:41:56.4330745Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.register:0 2025-09-07T07:41:56.4331997Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.add:0, line 191 <- wrt source file 2025-09-07T07:41:56.4333312Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.add:0 2025-09-07T07:41:56.4334621Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.dispatch:0, line 304 <- wrt source file 2025-09-07T07:41:56.4335908Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::Dispatcher.dispatch:0 2025-09-07T07:41:56.4337175Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::str_signature:0, line 434 <- wrt source file 2025-09-07T07:41:56.4338383Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\dispatcher.py::str_signature:0 2025-09-07T07:41:56.4339565Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::expand_tuples:0, line 18 <- wrt source file 2025-09-07T07:41:56.4340729Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::expand_tuples:0 2025-09-07T07:41:56.4341868Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::_toposort:0, line 41 <- wrt source file 2025-09-07T07:41:56.4343002Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::_toposort:0 2025-09-07T07:41:56.4344132Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::reverse_dict:0, line 68 <- wrt source file 2025-09-07T07:41:56.4345323Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::reverse_dict:0 2025-09-07T07:41:56.4346463Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::groupby:0, line 87 <- wrt source file 2025-09-07T07:41:56.4347576Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::groupby:0 2025-09-07T07:41:56.4348713Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::typename:0, line 117 <- wrt source file 2025-09-07T07:41:56.4349906Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\utils.py::typename:0 2025-09-07T07:41:56.4351039Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::isvariadic:0, line 47 <- wrt source file 2025-09-07T07:41:56.4352205Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::isvariadic:0 2025-09-07T07:41:56.4353378Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::Variadic:0, line 83 <- wrt source file 2025-09-07T07:41:56.4354513Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\unification\multipledispatch\variadic.py::Variadic:0 2025-09-07T07:41:56.4355611Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\graph_drawer.py::FxGraphDrawer.get_dot_graph:0, line 129 <- wrt source file 2025-09-07T07:41:56.4356737Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\graph_drawer.py::FxGraphDrawer.get_dot_graph:0 2025-09-07T07:41:56.4357761Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\shape_prop.py::ShapeProp:0, line 99 <- wrt source file 2025-09-07T07:41:56.4358667Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\shape_prop.py::ShapeProp:0 2025-09-07T07:41:56.4359624Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\split_module.py::split_module:0, line 89 <- wrt source file 2025-09-07T07:41:56.4360543Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\split_module.py::split_module:0 2025-09-07T07:41:56.4361640Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\utils\matcher_with_name_node_map_utils.py::SubgraphMatcherWithNameNodeMap:0, line 51 <- wrt source file 2025-09-07T07:41:56.4362901Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\passes\utils\matcher_with_name_node_map_utils.py::SubgraphMatcherWithNameNodeMap:0 2025-09-07T07:41:56.4364038Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\_check.py::AttributeTypeIsSupportedChecker:0, line 36 <- wrt source file 2025-09-07T07:41:56.4365043Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\_check.py::AttributeTypeIsSupportedChecker:0 2025-09-07T07:41:56.4366022Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_load_for_lite_interpreter:0, line 22 <- wrt source file 2025-09-07T07:41:56.4367002Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_load_for_lite_interpreter:0 2025-09-07T07:41:56.4368006Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_mobile_model_contained_types:0, line 122 <- wrt source file 2025-09-07T07:41:56.4369024Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_mobile_model_contained_types:0 2025-09-07T07:41:56.4370064Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_model_ops_and_info:0, line 214 <- wrt source file 2025-09-07T07:41:56.4371008Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\jit\mobile\__init__.py::_get_model_ops_and_info:0 2025-09-07T07:41:56.4371916Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\_ops.py::logaddexp:0, line 1530 <- wrt source file 2025-09-07T07:41:56.4372750Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\_ops.py::logaddexp:0 2025-09-07T07:41:56.4373681Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\maskedtensor\core.py::is_masked_tensor:0, line 25 <- wrt source file 2025-09-07T07:41:56.4374655Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\masked\maskedtensor\core.py::is_masked_tensor:0 2025-09-07T07:41:56.4375654Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool2d_with_indices:0, line 460 <- wrt source file 2025-09-07T07:41:56.4376662Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool2d_with_indices:0 2025-09-07T07:41:56.4377680Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool3d_with_indices:0, line 579 <- wrt source file 2025-09-07T07:41:56.4378685Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::fractional_max_pool3d_with_indices:0 2025-09-07T07:41:56.4379640Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::gumbel_softmax:0, line 2174 <- wrt source file 2025-09-07T07:41:56.4380525Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::gumbel_softmax:0 2025-09-07T07:41:56.4381417Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding:0, line 2478 <- wrt source file 2025-09-07T07:41:56.4382301Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding:0 2025-09-07T07:41:56.4383165Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding_bag:0, line 2618 <- wrt source file 2025-09-07T07:41:56.4384042Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::embedding_bag:0 2025-09-07T07:41:56.4384905Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::ctc_loss:0, line 3051 <- wrt source file 2025-09-07T07:41:56.8751183Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::ctc_loss:0 2025-09-07T07:41:56.8752082Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::nll_loss:0, line 3121 <- wrt source file 2025-09-07T07:41:56.8752936Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::nll_loss:0 2025-09-07T07:41:56.8753799Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::cross_entropy:0, line 3430 <- wrt source file 2025-09-07T07:41:56.8754668Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::cross_entropy:0 2025-09-07T07:41:56.8755566Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy:0, line 3495 <- wrt source file 2025-09-07T07:41:56.8756492Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy:0 2025-09-07T07:41:56.8757538Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy_with_logits:0, line 3565 <- wrt source file 2025-09-07T07:41:56.8758828Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::binary_cross_entropy_with_logits:0 2025-09-07T07:41:56.8759747Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::pad:0, line 5263 <- wrt source file 2025-09-07T07:41:56.8760547Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\functional.py::pad:0 2025-09-07T07:41:56.8761359Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_input:0, line 32 <- wrt source file 2025-09-07T07:41:56.8762164Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_input:0 2025-09-07T07:41:56.8763052Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_weight:0, line 79 <- wrt source file 2025-09-07T07:41:56.8763864Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv1d_weight:0 2025-09-07T07:41:56.8764675Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_input:0, line 130 <- wrt source file 2025-09-07T07:41:56.8765496Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_input:0 2025-09-07T07:41:56.8766297Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_weight:0, line 177 <- wrt source file 2025-09-07T07:41:56.8767109Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv2d_weight:0 2025-09-07T07:41:56.8767918Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_input:0, line 228 <- wrt source file 2025-09-07T07:41:56.8768721Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_input:0 2025-09-07T07:41:56.8769590Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_weight:0, line 275 <- wrt source file 2025-09-07T07:41:56.8770398Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\grad.py::conv3d_weight:0 2025-09-07T07:41:56.8771287Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::calculate_gain:0, line 171 <- wrt source file 2025-09-07T07:41:56.8772113Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::calculate_gain:0 2025-09-07T07:41:56.8772906Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::uniform_:0, line 230 <- wrt source file 2025-09-07T07:41:56.8773697Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::uniform_:0 2025-09-07T07:41:56.8774466Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::normal_:0, line 257 <- wrt source file 2025-09-07T07:41:56.8775248Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::normal_:0 2025-09-07T07:41:56.8776051Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::trunc_normal_:0, line 292 <- wrt source file 2025-09-07T07:41:56.8776864Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::trunc_normal_:0 2025-09-07T07:41:56.8777666Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::constant_:0, line 306 <- wrt source file 2025-09-07T07:41:56.8778456Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::constant_:0 2025-09-07T07:41:56.8779257Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::ones_:0, line 323 <- wrt source file 2025-09-07T07:41:56.8780024Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::ones_:0 2025-09-07T07:41:56.8780790Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::zeros_:0, line 336 <- wrt source file 2025-09-07T07:41:56.8781614Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::zeros_:0 2025-09-07T07:41:56.8782371Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::eye_:0, line 352 <- wrt source file 2025-09-07T07:41:56.8783124Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::eye_:0 2025-09-07T07:41:56.8783888Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::dirac_:0, line 374 <- wrt source file 2025-09-07T07:41:56.8784672Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::dirac_:0 2025-09-07T07:41:56.8785504Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_uniform_:0, line 460 <- wrt source file 2025-09-07T07:41:56.8786352Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_uniform_:0 2025-09-07T07:41:56.8787173Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_normal_:0, line 492 <- wrt source file 2025-09-07T07:41:56.8788002Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::xavier_normal_:0 2025-09-07T07:41:56.8788832Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_uniform_:0, line 543 <- wrt source file 2025-09-07T07:41:56.8789733Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_uniform_:0 2025-09-07T07:41:56.8790605Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_normal_:0, line 608 <- wrt source file 2025-09-07T07:41:56.8791440Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::kaiming_normal_:0 2025-09-07T07:41:56.8792306Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::orthogonal_:0, line 647 <- wrt source file 2025-09-07T07:41:56.8793118Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::orthogonal_:0 2025-09-07T07:41:56.8793961Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::sparse_:0, line 700 <- wrt source file 2025-09-07T07:41:56.8794752Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\init.py::sparse_:0 2025-09-07T07:41:56.8795589Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\__init__.py::sdpa_kernel:0, line 120 <- wrt source file 2025-09-07T07:41:56.8796504Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\__init__.py::sdpa_kernel:0 2025-09-07T07:41:56.8797444Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\bias.py::CausalBias:0, line 95 <- wrt source file 2025-09-07T07:41:56.8798328Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\attention\bias.py::CausalBias:0 2025-09-07T07:41:56.8799216Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Threshold:0, line 72 <- wrt source file 2025-09-07T07:41:56.8800119Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Threshold:0 2025-09-07T07:41:56.8800990Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU:0, line 120 <- wrt source file 2025-09-07T07:41:56.8801864Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU:0 2025-09-07T07:41:56.8802726Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::RReLU:0, line 185 <- wrt source file 2025-09-07T07:41:56.8803602Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::RReLU:0 2025-09-07T07:41:56.8804531Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardtanh:0, line 247 <- wrt source file 2025-09-07T07:41:56.8805418Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardtanh:0 2025-09-07T07:41:56.8806292Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU6:0, line 318 <- wrt source file 2025-09-07T07:41:56.8807150Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ReLU6:0 2025-09-07T07:41:57.3016681Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Sigmoid:0, line 349 <- wrt source file 2025-09-07T07:41:57.3018550Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Sigmoid:0 2025-09-07T07:41:57.3020379Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardsigmoid:0, line 384 <- wrt source file 2025-09-07T07:41:57.3021937Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardsigmoid:0 2025-09-07T07:41:57.3023467Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanh:0, line 420 <- wrt source file 2025-09-07T07:41:57.3024970Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanh:0 2025-09-07T07:41:57.3026427Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SiLU:0, line 456 <- wrt source file 2025-09-07T07:41:57.3027890Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SiLU:0 2025-09-07T07:41:57.3029376Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Mish:0, line 501 <- wrt source file 2025-09-07T07:41:57.3030947Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Mish:0 2025-09-07T07:41:57.3032519Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardswish:0, line 552 <- wrt source file 2025-09-07T07:41:57.3034038Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardswish:0 2025-09-07T07:41:57.3035554Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ELU:0, line 598 <- wrt source file 2025-09-07T07:41:57.3037040Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::ELU:0 2025-09-07T07:41:57.3038598Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::CELU:0, line 646 <- wrt source file 2025-09-07T07:41:57.3040062Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::CELU:0 2025-09-07T07:41:57.3041552Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SELU:0, line 705 <- wrt source file 2025-09-07T07:41:57.3043048Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::SELU:0 2025-09-07T07:41:57.3044490Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GLU:0, line 751 <- wrt source file 2025-09-07T07:41:57.3045931Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GLU:0 2025-09-07T07:41:57.3047376Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GELU:0, line 799 <- wrt source file 2025-09-07T07:41:57.3048890Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::GELU:0 2025-09-07T07:41:57.3050466Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardshrink:0, line 848 <- wrt source file 2025-09-07T07:41:57.3052000Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Hardshrink:0 2025-09-07T07:41:57.3053865Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LeakyReLU:0, line 903 <- wrt source file 2025-09-07T07:41:57.3055651Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LeakyReLU:0 2025-09-07T07:41:57.3057483Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSigmoid:0, line 945 <- wrt source file 2025-09-07T07:41:57.3059315Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSigmoid:0 2025-09-07T07:41:57.3060901Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softplus:0, line 981 <- wrt source file 2025-09-07T07:41:57.3062411Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softplus:0 2025-09-07T07:41:57.3063948Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softshrink:0, line 1030 <- wrt source file 2025-09-07T07:41:57.3065499Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softshrink:0 2025-09-07T07:41:57.3067160Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::MultiheadAttention:0, line 1144 <- wrt source file 2025-09-07T07:41:57.3068831Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::MultiheadAttention:0 2025-09-07T07:41:57.3070776Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::PReLU:0, line 1609 <- wrt source file 2025-09-07T07:41:57.3072550Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::PReLU:0 2025-09-07T07:41:57.3074933Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softsign:0, line 1660 <- wrt source file 2025-09-07T07:41:57.3076635Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softsign:0 2025-09-07T07:41:57.3078249Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanhshrink:0, line 1686 <- wrt source file 2025-09-07T07:41:57.3079818Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Tanhshrink:0 2025-09-07T07:41:57.3081339Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmin:0, line 1724 <- wrt source file 2025-09-07T07:41:57.3082842Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmin:0 2025-09-07T07:41:57.3084379Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax:0, line 1788 <- wrt source file 2025-09-07T07:41:57.3085899Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax:0 2025-09-07T07:41:57.3087398Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax2d:0, line 1835 <- wrt source file 2025-09-07T07:41:57.3088917Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::Softmax2d:0 2025-09-07T07:41:57.3090479Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSoftmax:0, line 1874 <- wrt source file 2025-09-07T07:41:57.3092112Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\activation.py::LogSoftmax:0 2025-09-07T07:41:57.3093645Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm1d:0, line 332 <- wrt source file 2025-09-07T07:41:57.3095176Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm1d:0 2025-09-07T07:41:57.3096738Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm2d:0, line 443 <- wrt source file 2025-09-07T07:41:57.3098300Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm2d:0 2025-09-07T07:41:57.3100215Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm3d:0, line 554 <- wrt source file 2025-09-07T07:41:57.3101985Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::BatchNorm3d:0 2025-09-07T07:41:57.3103834Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm:0, line 678 <- wrt source file 2025-09-07T07:41:57.3105668Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm:0 2025-09-07T07:41:57.3107683Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm.convert_sync_batchnorm:0, line 844 <- wrt source file 2025-09-07T07:41:57.3109722Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\batchnorm.py::SyncBatchNorm.convert_sync_batchnorm:0 2025-09-07T07:41:57.3111492Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\channelshuffle.py::ChannelShuffle:0, line 21 <- wrt source file 2025-09-07T07:41:57.3113135Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\channelshuffle.py::ChannelShuffle:0 2025-09-07T07:41:57.3115282Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential:0, line 81 <- wrt source file 2025-09-07T07:41:57.3117062Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential:0 2025-09-07T07:41:57.9340340Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.append:0, line 260 <- wrt source file 2025-09-07T07:41:57.9342005Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.append:0 2025-09-07T07:41:57.9343642Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.insert:0, line 283 <- wrt source file 2025-09-07T07:41:57.9345229Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.insert:0 2025-09-07T07:41:57.9346843Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.extend:0, line 314 <- wrt source file 2025-09-07T07:41:57.9348438Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::Sequential.extend:0 2025-09-07T07:41:57.9349991Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleList:0, line 343 <- wrt source file 2025-09-07T07:41:57.9351497Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleList:0 2025-09-07T07:41:57.9352995Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleDict:0, line 523 <- wrt source file 2025-09-07T07:41:57.9354492Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ModuleDict:0 2025-09-07T07:41:57.9356159Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterList:0, line 653 <- wrt source file 2025-09-07T07:41:57.9357726Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterList:0 2025-09-07T07:41:57.9359325Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterDict:0, line 808 <- wrt source file 2025-09-07T07:41:57.9360862Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\container.py::ParameterDict:0 2025-09-07T07:41:57.9362410Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::PairwiseDistance:0, line 38 <- wrt source file 2025-09-07T07:41:57.9364054Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::PairwiseDistance:0 2025-09-07T07:41:57.9365630Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::CosineSimilarity:0, line 81 <- wrt source file 2025-09-07T07:41:57.9367224Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\distance.py::CosineSimilarity:0 2025-09-07T07:41:57.9368727Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout:0, line 60 <- wrt source file 2025-09-07T07:41:57.9370160Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout:0 2025-09-07T07:41:57.9371616Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout1d:0, line 108 <- wrt source file 2025-09-07T07:41:57.9373074Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout1d:0 2025-09-07T07:41:57.9374543Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout2d:0, line 163 <- wrt source file 2025-09-07T07:41:57.9376084Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout2d:0 2025-09-07T07:41:57.9378525Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout3d:0, line 211 <- wrt source file 2025-09-07T07:41:57.9380008Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::Dropout3d:0 2025-09-07T07:41:57.9381492Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::AlphaDropout:0, line 257 <- wrt source file 2025-09-07T07:41:57.9382990Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::AlphaDropout:0 2025-09-07T07:41:57.9384548Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::FeatureAlphaDropout:0, line 309 <- wrt source file 2025-09-07T07:41:57.9386149Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\dropout.py::FeatureAlphaDropout:0 2025-09-07T07:41:57.9387660Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Flatten:0, line 30 <- wrt source file 2025-09-07T07:41:57.9389177Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Flatten:0 2025-09-07T07:41:57.9390612Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Unflatten:0, line 87 <- wrt source file 2025-09-07T07:41:57.9392073Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\flatten.py::Unflatten:0 2025-09-07T07:41:57.9393479Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Fold:0, line 224 <- wrt source file 2025-09-07T07:41:57.9394838Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Fold:0 2025-09-07T07:41:57.9396770Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Unfold:0, line 395 <- wrt source file 2025-09-07T07:41:57.9398158Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\fold.py::Unfold:0 2025-09-07T07:41:57.9399724Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm1d:0, line 187 <- wrt source file 2025-09-07T07:41:57.9401332Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm1d:0 2025-09-07T07:41:57.9402918Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm2d:0, line 303 <- wrt source file 2025-09-07T07:41:57.9404594Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm2d:0 2025-09-07T07:41:57.9406194Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm3d:0, line 419 <- wrt source file 2025-09-07T07:41:57.9407790Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\instancenorm.py::InstanceNorm3d:0 2025-09-07T07:41:57.9409331Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\lazy.py::LazyModuleMixin:0, line 77 <- wrt source file 2025-09-07T07:41:57.9410813Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\lazy.py::LazyModuleMixin:0 2025-09-07T07:41:57.9412279Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Identity:0, line 34 <- wrt source file 2025-09-07T07:41:57.9413718Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Identity:0 2025-09-07T07:41:57.9415139Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Linear:0, line 83 <- wrt source file 2025-09-07T07:41:57.9416604Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Linear:0 2025-09-07T07:41:57.9418319Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Bilinear:0, line 191 <- wrt source file 2025-09-07T07:41:57.9419760Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\linear.py::Bilinear:0 2025-09-07T07:41:57.9421166Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::L1Loss:0, line 115 <- wrt source file 2025-09-07T07:41:57.9422548Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::L1Loss:0 2025-09-07T07:41:57.9423935Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::NLLLoss:0, line 215 <- wrt source file 2025-09-07T07:41:57.9425324Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::NLLLoss:0 2025-09-07T07:41:57.9426758Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::PoissonNLLLoss:0, line 329 <- wrt source file 2025-09-07T07:41:57.9428260Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::PoissonNLLLoss:0 2025-09-07T07:41:57.9429740Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::GaussianNLLLoss:0, line 418 <- wrt source file 2025-09-07T07:41:57.9431231Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::GaussianNLLLoss:0 2025-09-07T07:41:57.9432685Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::KLDivLoss:0, line 535 <- wrt source file 2025-09-07T07:41:57.9434096Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::KLDivLoss:0 2025-09-07T07:41:59.6894080Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MSELoss:0, line 617 <- wrt source file 2025-09-07T07:41:59.6907759Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MSELoss:0 2025-09-07T07:41:59.6909351Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCELoss:0, line 703 <- wrt source file 2025-09-07T07:41:59.6910761Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCELoss:0 2025-09-07T07:41:59.6912218Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:0, line 778 <- wrt source file 2025-09-07T07:41:59.6913961Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:0 2025-09-07T07:41:59.6915507Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:1, line 826 <- wrt source file 2025-09-07T07:41:59.6917048Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::BCEWithLogitsLoss:1 2025-09-07T07:41:59.6918608Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiLabelMarginLoss:0, line 974 <- wrt source file 2025-09-07T07:41:59.6922044Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiLabelMarginLoss:0 2025-09-07T07:41:59.6923614Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:0, line 1306 <- wrt source file 2025-09-07T07:41:59.6925173Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:0 2025-09-07T07:41:59.6926712Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:1, line 1333 <- wrt source file 2025-09-07T07:41:59.6928354Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CrossEntropyLoss:1 2025-09-07T07:41:59.6930467Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CosineEmbeddingLoss:0, line 1495 <- wrt source file 2025-09-07T07:41:59.6932050Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CosineEmbeddingLoss:0 2025-09-07T07:41:59.6933607Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MarginRankingLoss:0, line 1562 <- wrt source file 2025-09-07T07:41:59.6935135Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MarginRankingLoss:0 2025-09-07T07:41:59.6936661Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiMarginLoss:0, line 1643 <- wrt source file 2025-09-07T07:41:59.6938163Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::MultiMarginLoss:0 2025-09-07T07:41:59.6939681Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginLoss:0, line 1745 <- wrt source file 2025-09-07T07:41:59.6941224Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginLoss:0 2025-09-07T07:41:59.6942854Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginWithDistanceLoss:0, line 1858 <- wrt source file 2025-09-07T07:41:59.6944590Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::TripletMarginWithDistanceLoss:0 2025-09-07T07:41:59.6946153Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CTCLoss:0, line 1990 <- wrt source file 2025-09-07T07:41:59.6947636Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\loss.py::CTCLoss:0 2025-09-07T07:41:59.6949156Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.register_buffer:0, line 551 <- wrt source file 2025-09-07T07:41:59.6952700Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.register_buffer:0 2025-09-07T07:41:59.6954264Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.apply:0, line 1039 <- wrt source file 2025-09-07T07:41:59.6955765Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.apply:0 2025-09-07T07:41:59.6957315Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.to:0, line 1290 <- wrt source file 2025-09-07T07:41:59.6958962Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.to:0 2025-09-07T07:41:59.6960535Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.state_dict:0, line 2229 <- wrt source file 2025-09-07T07:41:59.6962193Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.state_dict:0 2025-09-07T07:41:59.6963752Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.parameters:0, line 2670 <- wrt source file 2025-09-07T07:41:59.6965315Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.parameters:0 2025-09-07T07:41:59.6967010Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_parameters:0, line 2698 <- wrt source file 2025-09-07T07:41:59.6968829Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_parameters:0 2025-09-07T07:41:59.6970481Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.buffers:0, line 2725 <- wrt source file 2025-09-07T07:41:59.6972411Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.buffers:0 2025-09-07T07:41:59.6973961Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_buffers:0, line 2752 <- wrt source file 2025-09-07T07:41:59.6975548Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_buffers:0 2025-09-07T07:41:59.6977140Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_children:0, line 2783 <- wrt source file 2025-09-07T07:41:59.6978736Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_children:0 2025-09-07T07:41:59.6980295Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.modules:0, line 2807 <- wrt source file 2025-09-07T07:41:59.6981821Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.modules:0 2025-09-07T07:41:59.6983363Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_modules:0, line 2845 <- wrt source file 2025-09-07T07:41:59.6984941Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\module.py::Module.named_modules:0 2025-09-07T07:41:59.6986556Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LocalResponseNorm:0, line 38 <- wrt source file 2025-09-07T07:41:59.6988229Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LocalResponseNorm:0 2025-09-07T07:41:59.6989915Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LayerNorm:0, line 163 <- wrt source file 2025-09-07T07:41:59.6991468Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::LayerNorm:0 2025-09-07T07:41:59.6993035Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::GroupNorm:0, line 274 <- wrt source file 2025-09-07T07:41:59.6994592Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::GroupNorm:0 2025-09-07T07:41:59.6996122Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::RMSNorm:0, line 367 <- wrt source file 2025-09-07T07:41:59.6997699Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\normalization.py::RMSNorm:0 2025-09-07T07:41:59.6999210Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad1d:0, line 70 <- wrt source file 2025-09-07T07:41:59.7000723Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad1d:0 2025-09-07T07:41:59.7002336Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad2d:0, line 122 <- wrt source file 2025-09-07T07:41:59.7003839Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad2d:0 2025-09-07T07:41:59.7005366Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad3d:0, line 187 <- wrt source file 2025-09-07T07:42:01.6600019Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::CircularPad3d:0 2025-09-07T07:42:01.6601633Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad1d:0, line 241 <- wrt source file 2025-09-07T07:42:01.6603325Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad1d:0 2025-09-07T07:42:01.6605018Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad2d:0, line 294 <- wrt source file 2025-09-07T07:42:01.6606544Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad2d:0 2025-09-07T07:42:01.6608075Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad3d:0, line 350 <- wrt source file 2025-09-07T07:42:01.6609601Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ConstantPad3d:0 2025-09-07T07:42:01.6611136Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad1d:0, line 395 <- wrt source file 2025-09-07T07:42:01.6612699Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad1d:0 2025-09-07T07:42:01.6614259Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad2d:0, line 439 <- wrt source file 2025-09-07T07:42:01.6615803Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad2d:0 2025-09-07T07:42:01.6617368Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad3d:0, line 497 <- wrt source file 2025-09-07T07:42:01.6618923Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReflectionPad3d:0 2025-09-07T07:42:01.6620494Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad1d:0, line 556 <- wrt source file 2025-09-07T07:42:01.6622151Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad1d:0 2025-09-07T07:42:01.6623719Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad2d:0, line 600 <- wrt source file 2025-09-07T07:42:01.6625300Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad2d:0 2025-09-07T07:42:01.6626853Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad3d:0, line 658 <- wrt source file 2025-09-07T07:42:01.6628432Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ReplicationPad3d:0 2025-09-07T07:42:01.6630051Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad1d:0, line 692 <- wrt source file 2025-09-07T07:42:01.6631519Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad1d:0 2025-09-07T07:42:01.6632993Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad2d:0, line 750 <- wrt source file 2025-09-07T07:42:01.6634475Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad2d:0 2025-09-07T07:42:01.6635931Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad3d:0, line 812 <- wrt source file 2025-09-07T07:42:01.6637398Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\padding.py::ZeroPad3d:0 2025-09-07T07:42:01.6638918Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelShuffle:0, line 40 <- wrt source file 2025-09-07T07:42:01.6640549Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelShuffle:0 2025-09-07T07:42:01.6642205Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelUnshuffle:0, line 99 <- wrt source file 2025-09-07T07:42:01.6643802Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pixelshuffle.py::PixelUnshuffle:0 2025-09-07T07:42:01.6645447Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool1d:0, line 129 <- wrt source file 2025-09-07T07:42:01.6646918Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool1d:0 2025-09-07T07:42:01.6648397Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool2d:0, line 207 <- wrt source file 2025-09-07T07:42:01.6649869Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool2d:0 2025-09-07T07:42:01.6651326Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool3d:0, line 291 <- wrt source file 2025-09-07T07:42:01.6652811Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxPool3d:0 2025-09-07T07:42:01.6654292Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool1d:0, line 366 <- wrt source file 2025-09-07T07:42:01.6655773Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool1d:0 2025-09-07T07:42:01.6657262Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool2d:0, line 452 <- wrt source file 2025-09-07T07:42:01.6658755Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool2d:0 2025-09-07T07:42:01.6660236Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool3d:0, line 550 <- wrt source file 2025-09-07T07:42:01.6661794Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::MaxUnpool3d:0 2025-09-07T07:42:01.6663261Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool1d:0, line 642 <- wrt source file 2025-09-07T07:42:01.6664729Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool1d:0 2025-09-07T07:42:01.6666255Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool2d:0, line 738 <- wrt source file 2025-09-07T07:42:01.6667721Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool2d:0 2025-09-07T07:42:01.6669250Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool3d:0, line 855 <- wrt source file 2025-09-07T07:42:01.6670714Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AvgPool3d:0 2025-09-07T07:42:01.6672271Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool2d:0, line 946 <- wrt source file 2025-09-07T07:42:01.6673881Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool2d:0 2025-09-07T07:42:01.6675480Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool3d:0, line 1033 <- wrt source file 2025-09-07T07:42:01.6677097Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::FractionalMaxPool3d:0 2025-09-07T07:42:01.6678630Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool1d:0, line 1152 <- wrt source file 2025-09-07T07:42:01.6680085Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool1d:0 2025-09-07T07:42:01.6681609Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool2d:0, line 1204 <- wrt source file 2025-09-07T07:42:01.6683109Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool2d:0 2025-09-07T07:42:01.6684628Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool3d:0, line 1264 <- wrt source file 2025-09-07T07:42:01.6686110Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::LPPool3d:0 2025-09-07T07:42:01.6687636Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool1d:0, line 1320 <- wrt source file 2025-09-07T07:42:01.6689234Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool1d:0 2025-09-07T07:42:01.6690823Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool2d:0, line 1355 <- wrt source file 2025-09-07T07:42:01.6692414Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool2d:0 2025-09-07T07:42:01.6694011Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool3d:0, line 1399 <- wrt source file 2025-09-07T07:42:01.6929285Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveMaxPool3d:0 2025-09-07T07:42:01.6930920Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool1d:0, line 1447 <- wrt source file 2025-09-07T07:42:01.6932576Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool1d:0 2025-09-07T07:42:01.6934195Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool2d:0, line 1481 <- wrt source file 2025-09-07T07:42:01.6935909Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool2d:0 2025-09-07T07:42:01.6937496Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool3d:0, line 1521 <- wrt source file 2025-09-07T07:42:01.6939125Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\pooling.py::AdaptiveAvgPool3d:0 2025-09-07T07:42:01.6940577Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNN:0, line 595 <- wrt source file 2025-09-07T07:42:01.6941977Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNN:0 2025-09-07T07:42:01.6943315Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTM:0, line 953 <- wrt source file 2025-09-07T07:42:01.6944726Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTM:0 2025-09-07T07:42:01.6946057Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRU:0, line 1288 <- wrt source file 2025-09-07T07:42:01.6947402Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRU:0 2025-09-07T07:42:01.6948757Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNNCell:0, line 1537 <- wrt source file 2025-09-07T07:42:01.6950178Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::RNNCell:0 2025-09-07T07:42:01.6951598Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTMCell:0, line 1659 <- wrt source file 2025-09-07T07:42:01.6952993Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::LSTMCell:0 2025-09-07T07:42:01.6954434Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRUCell:0, line 1773 <- wrt source file 2025-09-07T07:42:01.6955889Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\rnn.py::GRUCell:0 2025-09-07T07:42:01.6957332Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding:0, line 71 <- wrt source file 2025-09-07T07:42:01.6958786Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding:0 2025-09-07T07:42:01.6960332Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding.from_pretrained:0, line 243 <- wrt source file 2025-09-07T07:42:01.6962026Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::Embedding.from_pretrained:0 2025-09-07T07:42:01.6963635Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag:0, line 322 <- wrt source file 2025-09-07T07:42:01.6965173Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag:0 2025-09-07T07:42:01.6966784Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag.from_pretrained:0, line 521 <- wrt source file 2025-09-07T07:42:01.6968528Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\sparse.py::EmbeddingBag.from_pretrained:0 2025-09-07T07:42:01.6970159Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer:0, line 90 <- wrt source file 2025-09-07T07:42:01.6971708Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer:0 2025-09-07T07:42:01.6973307Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer.forward:0, line 258 <- wrt source file 2025-09-07T07:42:01.6975083Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::Transformer.forward:0 2025-09-07T07:42:01.6976762Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoder:0, line 336 <- wrt source file 2025-09-07T07:42:01.6978400Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoder:0 2025-09-07T07:42:01.6980103Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoder:0, line 562 <- wrt source file 2025-09-07T07:42:01.6982330Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoder:0 2025-09-07T07:42:01.6984033Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoderLayer:0, line 686 <- wrt source file 2025-09-07T07:42:01.6985832Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerEncoderLayer:0 2025-09-07T07:42:01.6987683Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoderLayer:0, line 995 <- wrt source file 2025-09-07T07:42:01.6989515Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py::TransformerDecoderLayer:0 2025-09-07T07:42:01.6991252Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::Upsample:0, line 77 <- wrt source file 2025-09-07T07:42:01.6992854Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::Upsample:0 2025-09-07T07:42:01.6994680Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingNearest2d:0, line 229 <- wrt source file 2025-09-07T07:42:01.6996455Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingNearest2d:0 2025-09-07T07:42:01.6998236Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingBilinear2d:0, line 279 <- wrt source file 2025-09-07T07:42:01.6999902Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\upsampling.py::UpsamplingBilinear2d:0 2025-09-07T07:42:01.7001526Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\data_parallel.py::DataParallel:0, line 127 <- wrt source file 2025-09-07T07:42:01.7003194Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\data_parallel.py::DataParallel:0 2025-09-07T07:42:01.7005051Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel:0, line 642 <- wrt source file 2025-09-07T07:42:01.7006937Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel:0 2025-09-07T07:42:01.7008894Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.no_sync:0, line 1446 <- wrt source file 2025-09-07T07:42:01.7010906Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.no_sync:0 2025-09-07T07:42:01.7012882Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.join:0, line 1833 <- wrt source file 2025-09-07T07:42:01.7014865Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.join:0 2025-09-07T07:42:01.7016987Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:0, line 1999 <- wrt source file 2025-09-07T07:42:01.7019029Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:0 2025-09-07T07:42:01.7021074Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:1, line 2009 <- wrt source file 2025-09-07T07:42:01.7023203Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel.register_comm_hook:1 2025-09-07T07:42:01.7025347Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_builtin_comm_hook:0, line 2044 <- wrt source file 2025-09-07T07:42:01.7038146Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_builtin_comm_hook:0 2025-09-07T07:42:01.7039374Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_fused_optim:0, line 2102 <- wrt source file 2025-09-07T07:42:01.7040694Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\parallel\distributed.py::DistributedDataParallel._register_fused_optim:0 2025-09-07T07:42:01.7041703Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\init.py::skip_init:0, line 33 <- wrt source file 2025-09-07T07:42:01.7042527Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\init.py::skip_init:0 2025-09-07T07:42:01.7043492Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\memory_format.py::convert_conv2d_weight_memory_format:0, line 64 <- wrt source file 2025-09-07T07:42:01.7044697Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\memory_format.py::convert_conv2d_weight_memory_format:0 2025-09-07T07:42:01.7045828Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\memory_format.py::convert_conv3d_weight_memory_format:0, line 142 <- wrt source file 2025-09-07T07:42:01.7046911Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\memory_format.py::convert_conv3d_weight_memory_format:0 2025-09-07T07:42:01.7047932Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::orthogonal:0, line 265 <- wrt source file 2025-09-07T07:42:01.7048877Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::orthogonal:0 2025-09-07T07:42:01.7049837Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::weight_norm:0, line 360 <- wrt source file 2025-09-07T07:42:01.7050789Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::weight_norm:0 2025-09-07T07:42:01.7052011Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::spectral_norm:0, line 591 <- wrt source file 2025-09-07T07:42:01.7052989Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrizations.py::spectral_norm:0 2025-09-07T07:42:01.7053885Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::identity:0, line 849 <- wrt source file 2025-09-07T07:42:01.7054741Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::identity:0 2025-09-07T07:42:01.7055613Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_unstructured:0, line 885 <- wrt source file 2025-09-07T07:42:01.7056574Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_unstructured:0 2025-09-07T07:42:01.7057476Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::l1_unstructured:0, line 928 <- wrt source file 2025-09-07T07:42:01.7058358Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::l1_unstructured:0 2025-09-07T07:42:01.7059256Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_structured:0, line 968 <- wrt source file 2025-09-07T07:42:01.7060162Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::random_structured:0 2025-09-07T07:42:01.7061080Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::ln_structured:0, line 1014 <- wrt source file 2025-09-07T07:42:01.7061958Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::ln_structured:0 2025-09-07T07:42:01.7062844Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::global_unstructured:0, line 1067 <- wrt source file 2025-09-07T07:42:01.7063754Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::global_unstructured:0 2025-09-07T07:42:01.7064648Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::custom_from_mask:0, line 1169 <- wrt source file 2025-09-07T07:42:01.7065538Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::custom_from_mask:0 2025-09-07T07:42:01.7066398Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::remove:0, line 1197 <- wrt source file 2025-09-07T07:42:01.7067267Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::remove:0 2025-09-07T07:42:01.7068203Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::is_pruned:0, line 1225 <- wrt source file 2025-09-07T07:42:01.7069090Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\prune.py::is_pruned:0 2025-09-07T07:42:01.7069954Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_packed_sequence:0, line 359 <- wrt source file 2025-09-07T07:42:01.7070841Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_packed_sequence:0 2025-09-07T07:42:01.7071720Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_sequence:0, line 439 <- wrt source file 2025-09-07T07:42:01.7072558Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pad_sequence:0 2025-09-07T07:42:01.7073417Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpad_sequence:0, line 500 <- wrt source file 2025-09-07T07:42:01.7074282Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpad_sequence:0 2025-09-07T07:42:01.7075125Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pack_sequence:0, line 556 <- wrt source file 2025-09-07T07:42:01.7075983Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::pack_sequence:0 2025-09-07T07:42:01.7076827Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpack_sequence:0, line 584 <- wrt source file 2025-09-07T07:42:01.7077694Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\rnn.py::unpack_sequence:0 2025-09-07T07:42:01.7078601Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::spectral_norm:0, line 314 <- wrt source file 2025-09-07T07:42:01.7079575Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::spectral_norm:0 2025-09-07T07:42:01.7080534Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::remove_spectral_norm:0, line 346 <- wrt source file 2025-09-07T07:42:01.7081517Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\spectral_norm.py::remove_spectral_norm:0 2025-09-07T07:42:01.7082467Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\stateless.py::functional_call:0, line 196 <- wrt source file 2025-09-07T07:42:01.7083375Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\stateless.py::functional_call:0 2025-09-07T07:42:01.7084379Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::weight_norm:0, line 134 <- wrt source file 2025-09-07T07:42:01.7085289Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::weight_norm:0 2025-09-07T07:42:01.7086208Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::remove_weight_norm:0, line 156 <- wrt source file 2025-09-07T07:42:01.7087149Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py::remove_weight_norm:0 2025-09-07T07:42:01.7088127Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_per_sample_grad.py::call_for_per_sample_grads:0, line 35 <- wrt source file 2025-09-07T07:42:01.7089145Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_per_sample_grad.py::call_for_per_sample_grads:0 2025-09-07T07:42:01.7090145Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_expanded_weights\conv_utils.py::unfold3d:0, line 315 <- wrt source file 2025-09-07T07:42:01.7091188Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_expanded_weights\conv_utils.py::unfold3d:0 2025-09-07T07:42:01.7092309Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_expanded_weights\expanded_weights_utils.py::sum_over_all_but_batch_and_last_n:0, line 178 <- wrt source file 2025-09-07T07:42:01.7093609Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\_expanded_weights\expanded_weights_utils.py::sum_over_all_but_batch_and_last_n:0 2025-09-07T07:42:01.7245021Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LambdaLR:0, line 283 <- wrt source file 2025-09-07T07:42:01.7245952Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LambdaLR:0 2025-09-07T07:42:01.7246877Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiplicativeLR:0, line 391 <- wrt source file 2025-09-07T07:42:01.7247830Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiplicativeLR:0 2025-09-07T07:42:01.7248730Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::StepLR:0, line 494 <- wrt source file 2025-09-07T07:42:01.7249588Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::StepLR:0 2025-09-07T07:42:01.7250457Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiStepLR:0, line 550 <- wrt source file 2025-09-07T07:42:01.7251343Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::MultiStepLR:0 2025-09-07T07:42:01.7252238Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ConstantLR:0, line 611 <- wrt source file 2025-09-07T07:42:01.7253224Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ConstantLR:0 2025-09-07T07:42:01.7254096Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LinearLR:0, line 686 <- wrt source file 2025-09-07T07:42:01.7254975Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::LinearLR:0 2025-09-07T07:42:01.7255851Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ExponentialLR:0, line 776 <- wrt source file 2025-09-07T07:42:01.7256764Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ExponentialLR:0 2025-09-07T07:42:01.7257713Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::SequentialLR:0, line 823 <- wrt source file 2025-09-07T07:42:01.7258621Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::SequentialLR:0 2025-09-07T07:42:01.7259523Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::PolynomialLR:0, line 974 <- wrt source file 2025-09-07T07:42:01.7260412Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::PolynomialLR:0 2025-09-07T07:42:01.7261341Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingLR:0, line 1065 <- wrt source file 2025-09-07T07:42:01.7262293Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingLR:0 2025-09-07T07:42:01.7263231Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ChainedScheduler:0, line 1137 <- wrt source file 2025-09-07T07:42:01.7264159Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::ChainedScheduler:0 2025-09-07T07:42:01.7265094Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CyclicLR:0, line 1511 <- wrt source file 2025-09-07T07:42:01.7265965Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CyclicLR:0 2025-09-07T07:42:01.7266986Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts:0, line 1752 <- wrt source file 2025-09-07T07:42:01.7268006Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts:0 2025-09-07T07:42:01.7269089Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:0, line 1806 <- wrt source file 2025-09-07T07:42:01.7270178Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:0 2025-09-07T07:42:01.7271244Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:1, line 1822 <- wrt source file 2025-09-07T07:42:01.7272321Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::CosineAnnealingWarmRestarts.step:1 2025-09-07T07:42:01.7273302Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::OneCycleLR:0, line 1960 <- wrt source file 2025-09-07T07:42:01.7274178Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py::OneCycleLR:0 2025-09-07T07:42:01.7275110Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\optimizer.py::Optimizer.load_state_dict:0, line 890 <- wrt source file 2025-09-07T07:42:01.7276071Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\optimizer.py::Optimizer.load_state_dict:0 2025-09-07T07:42:01.7277043Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:0, line 152 <- wrt source file 2025-09-07T07:42:01.7277931Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:0 2025-09-07T07:42:01.7278815Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:1, line 178 <- wrt source file 2025-09-07T07:42:01.7279704Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::AveragedModel:1 2025-09-07T07:42:01.7280568Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::update_bn:0, line 337 <- wrt source file 2025-09-07T07:42:01.7281446Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::update_bn:0 2025-09-07T07:42:01.7282293Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::SWALR:0, line 396 <- wrt source file 2025-09-07T07:42:01.7283116Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\swa_utils.py::SWALR:0 2025-09-07T07:42:01.7284047Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\package\glob_group.py::GlobGroup:0, line 22 <- wrt source file 2025-09-07T07:42:01.7284939Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\package\glob_group.py::GlobGroup:0 2025-09-07T07:42:01.7285944Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::_KinetoProfile.toggle_collection_dynamic:0, line 295 <- wrt source file 2025-09-07T07:42:01.7287060Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::_KinetoProfile.toggle_collection_dynamic:0 2025-09-07T07:42:01.7288058Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::profile:0, line 616 <- wrt source file 2025-09-07T07:42:01.7288965Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\profiler\profiler.py::profile:0 2025-09-07T07:42:01.7289941Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\semi_structured.py::to_sparse_semi_structured:0, line 339 <- wrt source file 2025-09-07T07:42:01.7290954Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\sparse\semi_structured.py::to_sparse_semi_structured:0 2025-09-07T07:42:01.7291933Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_comparison.py::assert_close:0, line 1466 <- wrt source file 2025-09-07T07:42:01.7292846Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_comparison.py::assert_close:0 2025-09-07T07:42:01.7293729Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_creation.py::make_tensor:0, line 114 <- wrt source file 2025-09-07T07:42:01.7294619Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_creation.py::make_tensor:0 2025-09-07T07:42:01.7295546Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::parametrize:0, line 615 <- wrt source file 2025-09-07T07:42:01.7296535Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::parametrize:0 2025-09-07T07:42:01.7297524Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::reparametrize:0, line 736 <- wrt source file 2025-09-07T07:42:01.7298519Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::reparametrize:0 2025-09-07T07:42:01.7299499Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::decorateIf:0, line 825 <- wrt source file 2025-09-07T07:42:01.7300506Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::decorateIf:0 2025-09-07T07:42:01.7458631Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_symmetric_psd_matrix:0, line 4734 <- wrt source file 2025-09-07T07:42:01.7459783Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_symmetric_psd_matrix:0 2025-09-07T07:42:01.7461513Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_psd_matrix:0, line 4748 <- wrt source file 2025-09-07T07:42:01.7462725Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_psd_matrix:0 2025-09-07T07:42:01.7463826Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_pd_matrix:0, line 4778 <- wrt source file 2025-09-07T07:42:01.7464912Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\common_utils.py::random_hermitian_pd_matrix:0 2025-09-07T07:42:01.7465956Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::logs_to_string:0, line 194 <- wrt source file 2025-09-07T07:42:01.7467594Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::logs_to_string:0 2025-09-07T07:42:01.7468628Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::multiple_logs_to_string:0, line 220 <- wrt source file 2025-09-07T07:42:01.7469697Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\logging_utils.py::multiple_logs_to_string:0 2025-09-07T07:42:01.7470909Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\distributed\_tensor\common_dtensor.py::skip_unless_torch_gpu:0, line 331 <- wrt source file 2025-09-07T07:42:01.7472214Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\distributed\_tensor\common_dtensor.py::skip_unless_torch_gpu:0 2025-09-07T07:42:01.7474053Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\optests\autograd_registration.py::autograd_registration_check:0, line 29 <- wrt source file 2025-09-07T07:42:01.7475310Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\testing\_internal\optests\autograd_registration.py::autograd_registration_check:0 2025-09-07T07:42:01.7476458Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::rename_privateuse1_backend:0, line 69 <- wrt source file 2025-09-07T07:42:01.7477521Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::rename_privateuse1_backend:0 2025-09-07T07:42:01.7479208Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::generate_methods_for_privateuse1_backend:0, line 375 <- wrt source file 2025-09-07T07:42:01.7480406Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::generate_methods_for_privateuse1_backend:0 2025-09-07T07:42:01.7481493Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::_get_custom_mod_func:0, line 410 <- wrt source file 2025-09-07T07:42:01.7482507Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\backend_registration.py::_get_custom_mod_func:0 2025-09-07T07:42:01.7483491Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::checkpoint_sequential:0, line 555 <- wrt source file 2025-09-07T07:42:01.7485050Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::checkpoint_sequential:0 2025-09-07T07:42:01.7486104Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::set_checkpoint_early_stop:0, line 757 <- wrt source file 2025-09-07T07:42:01.7487101Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::set_checkpoint_early_stop:0 2025-09-07T07:42:01.7488104Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::SelectiveCheckpointContext:0, line 1234 <- wrt source file 2025-09-07T07:42:01.7489111Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::SelectiveCheckpointContext:0 2025-09-07T07:42:01.7490518Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::create_selective_checkpoint_contexts:0, line 1390 <- wrt source file 2025-09-07T07:42:01.7492635Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\checkpoint.py::create_selective_checkpoint_contexts:0 2025-09-07T07:42:01.7494577Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CppExtension:0, line 1186 <- wrt source file 2025-09-07T07:42:01.7496374Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CppExtension:0 2025-09-07T07:42:01.7498137Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:0, line 1258 <- wrt source file 2025-09-07T07:42:01.7499943Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:0 2025-09-07T07:42:01.7501736Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:1, line 1336 <- wrt source file 2025-09-07T07:42:01.7504246Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::CUDAExtension:1 2025-09-07T07:42:01.7505205Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::SyclExtension:0, line 1448 <- wrt source file 2025-09-07T07:42:01.7506185Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::SyclExtension:0 2025-09-07T07:42:01.7507061Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load:0, line 1684 <- wrt source file 2025-09-07T07:42:01.7507932Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load:0 2025-09-07T07:42:01.7508822Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load_inline:0, line 1960 <- wrt source file 2025-09-07T07:42:01.7510565Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\cpp_extension.py::load_inline:0 2025-09-07T07:42:01.7512283Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\dlpack.py::from_dlpack:0, line 93 <- wrt source file 2025-09-07T07:42:01.7513903Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\dlpack.py::from_dlpack:0 2025-09-07T07:42:01.7515753Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\throughput_benchmark.py::ThroughputBenchmark:0, line 77 <- wrt source file 2025-09-07T07:42:01.7517188Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\throughput_benchmark.py::ThroughputBenchmark:0 2025-09-07T07:42:01.7518169Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::register_pytree_node:0, line 156 <- wrt source file 2025-09-07T07:42:01.7519111Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::register_pytree_node:0 2025-09-07T07:42:01.7520079Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_is_leaf:0, line 277 <- wrt source file 2025-09-07T07:42:01.7520979Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_is_leaf:0 2025-09-07T07:42:01.7522495Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_flatten:0, line 320 <- wrt source file 2025-09-07T07:42:01.7523585Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_flatten:0 2025-09-07T07:42:01.7524551Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_unflatten:0, line 357 <- wrt source file 2025-09-07T07:42:01.7525512Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_unflatten:0 2025-09-07T07:42:01.7526406Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_iter:0, line 387 <- wrt source file 2025-09-07T07:42:01.7527275Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_iter:0 2025-09-07T07:42:01.7528684Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_leaves:0, line 422 <- wrt source file 2025-09-07T07:42:01.7529883Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_leaves:0 2025-09-07T07:42:01.7530766Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_structure:0, line 457 <- wrt source file 2025-09-07T07:42:02.3463452Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_structure:0 2025-09-07T07:42:02.3464378Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_map:0, line 494 <- wrt source file 2025-09-07T07:42:02.3465384Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::tree_map:0 2025-09-07T07:42:02.3466400Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::broadcast_prefix:0, line 893 <- wrt source file 2025-09-07T07:42:02.3467900Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_cxx_pytree.py::broadcast_prefix:0 2025-09-07T07:42:02.3468808Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_dataclass:0, line 303 <- wrt source file 2025-09-07T07:42:02.3469708Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_dataclass:0 2025-09-07T07:42:02.3470615Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_constant:0, line 419 <- wrt source file 2025-09-07T07:42:02.3471506Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::register_constant:0 2025-09-07T07:42:02.3472514Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_is_leaf:0, line 1026 <- wrt source file 2025-09-07T07:42:02.3473820Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_is_leaf:0 2025-09-07T07:42:02.3474662Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_map:0, line 1345 <- wrt source file 2025-09-07T07:42:02.3475496Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_pytree.py::tree_map:0 2025-09-07T07:42:02.3476370Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::IterableDataset:0, line 94 <- wrt source file 2025-09-07T07:42:02.3477315Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::IterableDataset:0 2025-09-07T07:42:02.3479441Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::StackDataset:0, line 219 <- wrt source file 2025-09-07T07:42:02.3480365Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::StackDataset:0 2025-09-07T07:42:02.3481260Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::random_split:0, line 441 <- wrt source file 2025-09-07T07:42:02.3482145Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\dataset.py::random_split:0 2025-09-07T07:42:02.3483161Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\distributed.py::DistributedSampler:0, line 55 <- wrt source file 2025-09-07T07:42:02.3484192Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\distributed.py::DistributedSampler:0 2025-09-07T07:42:02.3485818Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::Sampler:0, line 40 <- wrt source file 2025-09-07T07:42:02.3486694Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::Sampler:0 2025-09-07T07:42:02.3487621Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::WeightedRandomSampler:0, line 238 <- wrt source file 2025-09-07T07:42:02.3488592Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::WeightedRandomSampler:0 2025-09-07T07:42:02.3489532Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::BatchSampler:0, line 309 <- wrt source file 2025-09-07T07:42:02.3490768Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\sampler.py::BatchSampler:0 2025-09-07T07:42:02.3492061Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::IterDataPipe:0, line 97 <- wrt source file 2025-09-07T07:42:02.3493061Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::IterDataPipe:0 2025-09-07T07:42:02.3494090Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::MapDataPipe:0, line 268 <- wrt source file 2025-09-07T07:42:02.3495073Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\datapipe.py::MapDataPipe:0 2025-09-07T07:42:02.3496185Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::MapperIterDataPipe:0, line 53 <- wrt source file 2025-09-07T07:42:02.3497792Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::MapperIterDataPipe:0 2025-09-07T07:42:02.3498874Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::CollatorIterDataPipe:0, line 201 <- wrt source file 2025-09-07T07:42:02.3499953Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\callable.py::CollatorIterDataPipe:0 2025-09-07T07:42:02.3501064Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combinatorics.py::ShufflerIterDataPipe:0, line 90 <- wrt source file 2025-09-07T07:42:02.3502467Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combinatorics.py::ShufflerIterDataPipe:0 2025-09-07T07:42:02.3503910Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ConcaterIterDataPipe:0, line 38 <- wrt source file 2025-09-07T07:42:02.3505000Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ConcaterIterDataPipe:0 2025-09-07T07:42:02.3506167Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ForkerIterDataPipe:0, line 88 <- wrt source file 2025-09-07T07:42:02.3507241Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ForkerIterDataPipe:0 2025-09-07T07:42:02.3508765Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::_ChildDataPipe:0, line 304 <- wrt source file 2025-09-07T07:42:02.3509971Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::_ChildDataPipe:0 2025-09-07T07:42:02.3511125Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::DemultiplexerIterDataPipe:0, line 390 <- wrt source file 2025-09-07T07:42:02.3512292Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::DemultiplexerIterDataPipe:0 2025-09-07T07:42:02.3513420Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::MultiplexerIterDataPipe:0, line 604 <- wrt source file 2025-09-07T07:42:02.3515177Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::MultiplexerIterDataPipe:0 2025-09-07T07:42:02.3516288Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ZipperIterDataPipe:0, line 674 <- wrt source file 2025-09-07T07:42:02.3517361Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\combining.py::ZipperIterDataPipe:0 2025-09-07T07:42:02.3518468Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\filelister.py::FileListerIterDataPipe:0, line 30 <- wrt source file 2025-09-07T07:42:02.3519668Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\filelister.py::FileListerIterDataPipe:0 2025-09-07T07:42:02.3521382Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\fileopener.py::FileOpenerIterDataPipe:0, line 35 <- wrt source file 2025-09-07T07:42:02.3522512Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\fileopener.py::FileOpenerIterDataPipe:0 2025-09-07T07:42:02.3523614Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::BatcherIterDataPipe:0, line 53 <- wrt source file 2025-09-07T07:42:02.3524685Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::BatcherIterDataPipe:0 2025-09-07T07:42:02.3526217Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::UnBatcherIterDataPipe:0, line 113 <- wrt source file 2025-09-07T07:42:02.3527574Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::UnBatcherIterDataPipe:0 2025-09-07T07:42:02.7785960Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::GrouperIterDataPipe:0, line 180 <- wrt source file 2025-09-07T07:42:02.7787093Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\grouping.py::GrouperIterDataPipe:0 2025-09-07T07:42:02.7788216Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\selecting.py::FilterIterDataPipe:0, line 37 <- wrt source file 2025-09-07T07:42:02.7789300Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\selecting.py::FilterIterDataPipe:0 2025-09-07T07:42:02.7790597Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\streamreader.py::StreamReaderIterDataPipe:0, line 25 <- wrt source file 2025-09-07T07:42:02.7791754Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\streamreader.py::StreamReaderIterDataPipe:0 2025-09-07T07:42:02.7792893Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\utils.py::IterableWrapperIterDataPipe:0, line 29 <- wrt source file 2025-09-07T07:42:02.7794027Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\iter\utils.py::IterableWrapperIterDataPipe:0 2025-09-07T07:42:02.7795178Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\callable.py::MapperMapDataPipe:0, line 35 <- wrt source file 2025-09-07T07:42:02.7796256Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\callable.py::MapperMapDataPipe:0 2025-09-07T07:42:02.7797354Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combinatorics.py::ShufflerIterDataPipe:0, line 34 <- wrt source file 2025-09-07T07:42:02.7798482Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combinatorics.py::ShufflerIterDataPipe:0 2025-09-07T07:42:02.7799586Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ConcaterMapDataPipe:0, line 29 <- wrt source file 2025-09-07T07:42:02.7800680Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ConcaterMapDataPipe:0 2025-09-07T07:42:02.7801738Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ZipperMapDataPipe:0, line 73 <- wrt source file 2025-09-07T07:42:02.7802871Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\combining.py::ZipperMapDataPipe:0 2025-09-07T07:42:02.7803984Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\grouping.py::BatcherMapDataPipe:0, line 29 <- wrt source file 2025-09-07T07:42:02.7805060Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\grouping.py::BatcherMapDataPipe:0 2025-09-07T07:42:02.7806371Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\utils.py::SequenceWrapperMapDataPipe:0, line 29 <- wrt source file 2025-09-07T07:42:02.7807510Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\map\utils.py::SequenceWrapperMapDataPipe:0 2025-09-07T07:42:02.7808590Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\common.py::validate_input_col:0, line 37 <- wrt source file 2025-09-07T07:42:02.7809647Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\common.py::validate_input_col:0 2025-09-07T07:42:02.7810676Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\decoder.py::basichandlers:0, line 47 <- wrt source file 2025-09-07T07:42:02.7811690Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\datapipes\utils\decoder.py::basichandlers:0 2025-09-07T07:42:02.7812678Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_convert:0, line 39 <- wrt source file 2025-09-07T07:42:02.7813634Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_convert:0 2025-09-07T07:42:02.7814568Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::collate:0, line 137 <- wrt source file 2025-09-07T07:42:02.7815539Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::collate:0 2025-09-07T07:42:02.7816466Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_collate:0, line 364 <- wrt source file 2025-09-07T07:42:02.7817437Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\data\_utils\collate.py::default_collate:0 2025-09-07T07:42:02.7818409Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::find_closure_group:0, line 439 <- wrt source file 2025-09-07T07:42:02.7819465Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::find_closure_group:0 2025-09-07T07:42:02.7820474Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::replace_extern_shared:0, line 535 <- wrt source file 2025-09-07T07:42:02.7821483Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\hipify\hipify_python.py::replace_extern_shared:0 2025-09-07T07:42:02.7822508Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.__init__:0, line 216 <- wrt source file 2025-09-07T07:42:02.7823532Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.__init__:0 2025-09-07T07:42:02.7824562Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_hparams:0, line 314 <- wrt source file 2025-09-07T07:42:02.7825621Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_hparams:0 2025-09-07T07:42:02.7826703Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalar:0, line 362 <- wrt source file 2025-09-07T07:42:02.7827749Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalar:0 2025-09-07T07:42:02.7828845Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalars:0, line 394 <- wrt source file 2025-09-07T07:42:02.7829885Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_scalars:0 2025-09-07T07:42:02.7830926Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_tensor:0, line 441 <- wrt source file 2025-09-07T07:42:02.7831969Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_tensor:0 2025-09-07T07:42:02.7833017Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram:0, line 480 <- wrt source file 2025-09-07T07:42:02.7834083Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram:0 2025-09-07T07:42:02.7835150Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram_raw:0, line 533 <- wrt source file 2025-09-07T07:42:02.7836257Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_histogram_raw:0 2025-09-07T07:42:02.7837315Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_image:0, line 599 <- wrt source file 2025-09-07T07:42:02.7838335Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_image:0 2025-09-07T07:42:02.7839410Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_images:0, line 648 <- wrt source file 2025-09-07T07:42:02.7840453Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_images:0 2025-09-07T07:42:02.7841478Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_text:0, line 811 <- wrt source file 2025-09-07T07:42:02.7842497Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_text:0 2025-09-07T07:42:03.0237079Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_embedding:0, line 878 <- wrt source file 2025-09-07T07:42:03.0238220Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_embedding:0 2025-09-07T07:42:03.0239293Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_pr_curve:0, line 989 <- wrt source file 2025-09-07T07:42:03.0240349Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_pr_curve:0 2025-09-07T07:42:03.0241489Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_multilinechart:0, line 1063 <- wrt source file 2025-09-07T07:42:03.0242713Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_multilinechart:0 2025-09-07T07:42:03.0243939Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_marginchart:0, line 1084 <- wrt source file 2025-09-07T07:42:03.0245204Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars_marginchart:0 2025-09-07T07:42:03.0246471Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars:0, line 1108 <- wrt source file 2025-09-07T07:42:03.0247579Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_custom_scalars:0 2025-09-07T07:42:03.0248640Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_mesh:0, line 1154 <- wrt source file 2025-09-07T07:42:03.0249664Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\tensorboard\writer.py::SummaryWriter.add_mesh:0 2025-09-07T07:42:03.0250706Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_sympy\functions.py::MinMaxBase._collapse_arguments:0, line 724 <- wrt source file 2025-09-07T07:42:03.0251754Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\utils\_sympy\functions.py::MinMaxBase._collapse_arguments:0 2025-09-07T07:42:03.0252755Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\decorators.py::substitute_in_graph:0, line 349 <- wrt source file 2025-09-07T07:42:03.0253704Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\decorators.py::substitute_in_graph:0 2025-09-07T07:42:03.0254702Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\variables\base.py::VariableTracker.python_type:0, line 322 <- wrt source file 2025-09-07T07:42:03.0255747Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_dynamo\variables\base.py::VariableTracker.python_type:0 2025-09-07T07:42:03.0256857Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\utils.py::register_module_as_pytree_input_node:0, line 1410 <- wrt source file 2025-09-07T07:42:03.0257873Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\utils.py::register_module_as_pytree_input_node:0 2025-09-07T07:42:03.0258975Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\wrappers.py::mark_subclass_constructor_exportable_experimental:0, line 158 <- wrt source file 2025-09-07T07:42:03.0260135Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_export\wrappers.py::mark_subclass_constructor_exportable_experimental:0 2025-09-07T07:42:03.0261214Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\aot_autograd.py::aot_function:0, line 768 <- wrt source file 2025-09-07T07:42:03.0262149Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\aot_autograd.py::aot_function:0 2025-09-07T07:42:03.0263131Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\benchmark_utils.py::benchmark_utilization:0, line 184 <- wrt source file 2025-09-07T07:42:03.0264141Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\benchmark_utils.py::benchmark_utilization:0 2025-09-07T07:42:03.0265099Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::vjp:0, line 233 <- wrt source file 2025-09-07T07:42:03.0265995Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::vjp:0 2025-09-07T07:42:03.0266905Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacrev:0, line 475 <- wrt source file 2025-09-07T07:42:03.0267889Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacrev:0 2025-09-07T07:42:03.0268887Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jvp:0, line 1023 <- wrt source file 2025-09-07T07:42:03.0269844Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jvp:0 2025-09-07T07:42:03.0270756Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacfwd:0, line 1181 <- wrt source file 2025-09-07T07:42:03.0271676Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::jacfwd:0 2025-09-07T07:42:03.0272601Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::hessian:0, line 1341 <- wrt source file 2025-09-07T07:42:03.0273532Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::hessian:0 2025-09-07T07:42:03.0274499Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::functionalize:0, line 1505 <- wrt source file 2025-09-07T07:42:03.0275478Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::functionalize:0 2025-09-07T07:42:03.0276438Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::linearize:0, line 1704 <- wrt source file 2025-09-07T07:42:03.0277383Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\eager_transforms.py::linearize:0 2025-09-07T07:42:03.0278336Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\functional_call.py::functional_call:0, line 36 <- wrt source file 2025-09-07T07:42:03.0279311Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\functional_call.py::functional_call:0 2025-09-07T07:42:03.0280305Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\fx_minifier.py::minifier:0, line 194 <- wrt source file 2025-09-07T07:42:03.0281198Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\fx_minifier.py::minifier:0 2025-09-07T07:42:03.0282223Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::CompilerWrapper.post_compile:0, line 1131 <- wrt source file 2025-09-07T07:42:03.0283358Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::CompilerWrapper.post_compile:0 2025-09-07T07:42:03.0284519Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::InductorWrapper.post_compile:0, line 1186 <- wrt source file 2025-09-07T07:42:03.0285647Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\_aot_autograd\schemas.py::InductorWrapper.post_compile:0 2025-09-07T07:42:03.0286803Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::associative_scan:0, line 186 <- wrt source file 2025-09-07T07:42:03.0287841Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::associative_scan:0 2025-09-07T07:42:03.0288917Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::generic_associative_scan:0, line 322 <- wrt source file 2025-09-07T07:42:03.0290016Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\associative_scan.py::generic_associative_scan:0 2025-09-07T07:42:03.0290993Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\cond.py::cond:0, line 155 <- wrt source file 2025-09-07T07:42:03.0291865Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\cond.py::cond:0 2025-09-07T07:42:03.0292844Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\flat_apply.py::FlatApply.__call__:0, line 80 <- wrt source file 2025-09-07T07:42:03.0342998Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\flat_apply.py::FlatApply.__call__:0 2025-09-07T07:42:03.0343948Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\map.py::map:0, line 79 <- wrt source file 2025-09-07T07:42:03.0344796Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\map.py::map:0 2025-09-07T07:42:03.0345703Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::scan:0, line 156 <- wrt source file 2025-09-07T07:42:03.0346593Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::scan:0 2025-09-07T07:42:03.0347493Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::ScanAutogradOp:0, line 474 <- wrt source file 2025-09-07T07:42:03.0348452Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_higher_order_ops\scan.py::ScanAutogradOp:0 2025-09-07T07:42:03.0349394Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\codecache.py::WritableTempFile:0, line 374 <- wrt source file 2025-09-07T07:42:03.0350363Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\codecache.py::WritableTempFile:0 2025-09-07T07:42:03.0351599Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\cpp_builder.py::get_name_and_dir_from_output_file_path:0, line 1721 <- wrt source file 2025-09-07T07:42:03.0352684Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\cpp_builder.py::get_name_and_dir_from_output_file_path:0 2025-09-07T07:42:03.0353821Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\select_algorithm.py::add_preprocessing_fn:0, line 3473 <- wrt source file 2025-09-07T07:42:03.0354853Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\select_algorithm.py::add_preprocessing_fn:0 2025-09-07T07:42:03.0355940Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\template_heuristics\registry.py::register_template_heuristic:0, line 54 <- wrt source file 2025-09-07T07:42:03.0357118Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_inductor\template_heuristics\registry.py::register_template_heuristic:0 2025-09-07T07:42:03.0358665Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::custom_op:0, line 98 <- wrt source file 2025-09-07T07:42:03.0359557Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::custom_op:0 2025-09-07T07:42:03.0360530Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.set_kernel_enabled:0, line 238 <- wrt source file 2025-09-07T07:42:03.0361575Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.set_kernel_enabled:0 2025-09-07T07:42:03.0362592Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_kernel:0, line 307 <- wrt source file 2025-09-07T07:42:03.0363609Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_kernel:0 2025-09-07T07:42:03.0364638Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autograd:0, line 541 <- wrt source file 2025-09-07T07:42:03.0365677Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autograd:0 2025-09-07T07:42:03.0366835Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_vmap:0, line 709 <- wrt source file 2025-09-07T07:42:03.0367881Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_vmap:0 2025-09-07T07:42:03.0368973Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autocast:0, line 795 <- wrt source file 2025-09-07T07:42:03.0370057Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py::CustomOpDef.register_autocast:0 2025-09-07T07:42:03.0371083Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_class_registry.py::register_fake_class:0, line 230 <- wrt source file 2025-09-07T07:42:03.0372101Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_class_registry.py::register_fake_class:0 2025-09-07T07:42:03.0373103Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_impl.py::FakeImplCtx.new_dynamic_size:0, line 175 <- wrt source file 2025-09-07T07:42:03.0374113Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_impl.py::FakeImplCtx.new_dynamic_size:0 2025-09-07T07:42:03.0375172Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\infer_schema.py::infer_schema:0, line 51 <- wrt source file 2025-09-07T07:42:03.0376077Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\infer_schema.py::infer_schema:0 2025-09-07T07:42:03.0376965Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::triton_op:0, line 136 <- wrt source file 2025-09-07T07:42:03.0377818Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::triton_op:0 2025-09-07T07:42:03.0378732Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::wrap_triton:0, line 307 <- wrt source file 2025-09-07T07:42:03.0379606Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\triton.py::wrap_triton:0 2025-09-07T07:42:03.0380506Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_logging\_internal.py::set_logs:0, line 459 <- wrt source file 2025-09-07T07:42:03.0381414Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_logging\_internal.py::set_logs:0 2025-09-07T07:42:03.0382344Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_equal:0, line 171 <- wrt source file 2025-09-07T07:42:03.0383245Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_equal:0 2025-09-07T07:42:03.0384171Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::print_assert_equal:0, line 302 <- wrt source file 2025-09-07T07:42:03.0385115Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::print_assert_equal:0 2025-09-07T07:42:03.0386059Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_almost_equal:0, line 375 <- wrt source file 2025-09-07T07:42:03.0387096Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_almost_equal:0 2025-09-07T07:42:03.0388032Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_approx_equal:0, line 496 <- wrt source file 2025-09-07T07:42:03.0388986Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_approx_equal:0 2025-09-07T07:42:03.0389980Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_equal:0, line 793 <- wrt source file 2025-09-07T07:42:03.0390916Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_equal:0 2025-09-07T07:42:03.0391917Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal:0, line 899 <- wrt source file 2025-09-07T07:42:03.0392982Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal:0 2025-09-07T07:42:03.0393947Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_less:0, line 1008 <- wrt source file 2025-09-07T07:42:03.0394886Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_less:0 2025-09-07T07:42:03.0395821Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_string_equal:0, line 1073 <- wrt source file 2025-09-07T07:42:03.0396780Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_string_equal:0 2025-09-07T07:42:03.0397723Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_allclose:0, line 1294 <- wrt source file 2025-09-07T07:42:03.0398722Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_allclose:0 2025-09-07T07:42:03.0399699Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal_nulp:0, line 1360 <- wrt source file 2025-09-07T07:42:03.0400731Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_almost_equal_nulp:0 2025-09-07T07:42:03.0401778Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_max_ulp:0, line 1423 <- wrt source file 2025-09-07T07:42:03.0402749Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_array_max_ulp:0 2025-09-07T07:42:03.0403669Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::nulp_diff:0, line 1468 <- wrt source file 2025-09-07T07:42:03.0404648Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::nulp_diff:0 2025-09-07T07:42:03.0405555Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_warns:0, line 1578 <- wrt source file 2025-09-07T07:42:03.0406596Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::assert_warns:0 2025-09-07T07:42:03.0407557Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::clear_and_catch_warnings:0, line 1881 <- wrt source file 2025-09-07T07:42:03.0408533Z * SUCCESS: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_numpy\testing\utils.py::clear_and_catch_warnings:0 2025-09-07T07:42:03.0409464Z * DOCTEST : C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims\context.py::TorchRefsMode:0, line 95 <- wrt source file 2025-09-07T07:42:03.0410433Z * SKIPPED: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_prims\context.py::TorchRefsMode:0 2025-09-07T07:42:03.0412096Z ============ 2025-09-07T07:42:03.0412341Z Finished doctests 2025-09-07T07:42:03.0412534Z 373 / 863 passed 2025-09-07T07:42:03.0412760Z  2025-09-07T07:42:03.0413095Z === Found 17 parse-time warnings === 2025-09-07T07:42:03.0413492Z --- Parse Warning: 1 / 17 --- 2025-09-07T07:42:03.0414507Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=Library.fallback in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=375. 2025-09-07T07:42:03.0415602Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0416197Z Registers the function implementation as the fallback for the given key. 2025-09-07T07:42:03.0416617Z 2025-09-07T07:42:03.0416905Z This function only works for a library with global namespace ("_"). 2025-09-07T07:42:03.0417262Z 2025-09-07T07:42:03.0417422Z Args: 2025-09-07T07:42:03.0417794Z fn: function used as fallback for the given dispatch key or :func:`~fallthrough_kernel` 2025-09-07T07:42:03.0418246Z to register a fallthrough. 2025-09-07T07:42:03.0418744Z dispatch_key: dispatch key that the input function should be registered for. By default, it uses 2025-09-07T07:42:03.0419289Z the dispatch key that the library was created with. 2025-09-07T07:42:03.0419886Z with_keyset: flag controlling if the current dispatcher call keyset should be passed as the first argument 2025-09-07T07:42:03.0420622Z to :attr:`fn` when calling. This should be used to create the appropriate keyset for redispatch calls. 2025-09-07T07:42:03.0421077Z 2025-09-07T07:42:03.0421248Z Example:: 2025-09-07T07:42:03.0421435Z 2025-09-07T07:42:03.0421660Z >>> my_lib = Library("_", "IMPL") 2025-09-07T07:42:03.0421970Z >>> def fallback_kernel(op, *args, **kwargs): 2025-09-07T07:42:03.0422342Z >>> # Handle all autocast ops generically 2025-09-07T07:42:03.0422623Z >>> # ... 2025-09-07T07:42:03.0422899Z >>> my_lib.fallback(fallback_kernel, "Autocast") 2025-09-07T07:42:03.0423183Z 2025-09-07T07:42:03.0423718Z Original Error: IndentationError('expected an indented block', ('', 5, 1, 'my_lib.fallback(fallback_kernel, "Autocast")\n')) 2025-09-07T07:42:03.0424372Z 2025-09-07T07:42:03.0424572Z my_lib.fallback(fallback_kernel, "Autocast") 2025-09-07T07:42:03.0424858Z ^ 2025-09-07T07:42:03.0425026Z warnings.warn(msg) 2025-09-07T07:42:03.0425241Z 2025-09-07T07:42:03.0425541Z --- Parse Warning: 2 / 17 --- 2025-09-07T07:42:03.0426462Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=register_fake in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=948. 2025-09-07T07:42:03.0427536Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0428164Z Register a FakeTensor implementation ("fake impl") for this operator. 2025-09-07T07:42:03.0428547Z 2025-09-07T07:42:03.0428796Z Also sometimes known as a "meta kernel", "abstract impl". 2025-09-07T07:42:03.0429129Z 2025-09-07T07:42:03.0429446Z An "FakeTensor implementation" specifies the behavior of this operator on 2025-09-07T07:42:03.0429976Z Tensors that carry no data ("FakeTensor"). Given some input Tensors with 2025-09-07T07:42:03.0430493Z certain properties (sizes/strides/storage_offset/device), it specifies 2025-09-07T07:42:03.0430928Z what the properties of the output Tensors are. 2025-09-07T07:42:03.0431221Z 2025-09-07T07:42:03.0431506Z The FakeTensor implementation has the same signature as the operator. 2025-09-07T07:42:03.0432001Z It is run for both FakeTensors and meta tensors. To write a FakeTensor 2025-09-07T07:42:03.0432470Z implementation, assume that all Tensor inputs to the operator are 2025-09-07T07:42:03.0432954Z regular CPU/CUDA/Meta tensors, but they do not have storage, and 2025-09-07T07:42:03.0433452Z you are trying to return regular CPU/CUDA/Meta tensor(s) as output. 2025-09-07T07:42:03.0434036Z The FakeTensor implementation must consist of only PyTorch operations 2025-09-07T07:42:03.0434513Z (and may not directly access the storage or data of any input or 2025-09-07T07:42:03.0434912Z intermediate Tensors). 2025-09-07T07:42:03.0435143Z 2025-09-07T07:42:03.0435365Z This API may be used as a decorator (see examples). 2025-09-07T07:42:03.0435674Z 2025-09-07T07:42:03.0435879Z For a detailed guide on custom ops, please see 2025-09-07T07:42:03.0436323Z https://pytorch.org/tutorials/advanced/custom_ops_landing_page.html 2025-09-07T07:42:03.0436705Z 2025-09-07T07:42:03.0436855Z Args: 2025-09-07T07:42:03.0437166Z op_name: Operator name (along with the overload) or OpOverload object. 2025-09-07T07:42:03.0437572Z func: Fake tensor implementation. 2025-09-07T07:42:03.0437945Z lib (Optional[Library]): Library to register the fake tensor to. 2025-09-07T07:42:03.0438376Z allow_override: Flag controlling if we want to override an 2025-09-07T07:42:03.0438805Z existing registered fake impl. This is by default off, 2025-09-07T07:42:03.0439263Z and will error you're trying to register a fake impl to 2025-09-07T07:42:03.0439715Z an operator that already has a fake impl. This also only 2025-09-07T07:42:03.0440120Z applies if the custom operator was not created via 2025-09-07T07:42:03.0440536Z torch.library.custom_op, as overriding and existing fake 2025-09-07T07:42:03.0440919Z impl is already allowed. 2025-09-07T07:42:03.0441176Z 2025-09-07T07:42:03.0441338Z Examples: 2025-09-07T07:42:03.0441532Z >>> import torch 2025-09-07T07:42:03.0441772Z >>> import numpy as np 2025-09-07T07:42:03.0442034Z >>> from torch import Tensor 2025-09-07T07:42:03.0442339Z >>> 2025-09-07T07:42:03.0442621Z >>> # Example 1: an operator without data-dependent output shape 2025-09-07T07:42:03.0443090Z >>> @torch.library.custom_op("mylib::custom_linear", mutates_args=()) 2025-09-07T07:42:03.0443598Z >>> def custom_linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-09-07T07:42:03.0444051Z >>> raise NotImplementedError("Implementation goes here") 2025-09-07T07:42:03.0444386Z >>> 2025-09-07T07:42:03.0444644Z >>> @torch.library.register_fake("mylib::custom_linear") 2025-09-07T07:42:03.0445029Z >>> def _(x, weight, bias): 2025-09-07T07:42:03.0445335Z >>> assert x.dim() == 2 2025-09-07T07:42:03.0445603Z >>> assert weight.dim() == 2 2025-09-07T07:42:03.0445999Z >>> assert bias.dim() == 1 2025-09-07T07:42:03.0446296Z >>> assert x.shape[1] == weight.shape[1] 2025-09-07T07:42:03.0446627Z >>> assert weight.shape[0] == bias.shape[0] 2025-09-07T07:42:03.0446950Z >>> assert x.device == weight.device 2025-09-07T07:42:03.0447237Z >>> 2025-09-07T07:42:03.0447441Z >>> return (x @ weight.t()) + bias 2025-09-07T07:42:03.0447721Z >>> 2025-09-07T07:42:03.0447989Z >>> with torch._subclasses.fake_tensor.FakeTensorMode(): 2025-09-07T07:42:03.0448330Z >>> x = torch.randn(2, 3) 2025-09-07T07:42:03.0448603Z >>> w = torch.randn(3, 3) 2025-09-07T07:42:03.0448866Z >>> b = torch.randn(3) 2025-09-07T07:42:03.0449172Z >>> y = torch.ops.mylib.custom_linear(x, w, b) 2025-09-07T07:42:03.0449459Z >>> 2025-09-07T07:42:03.0449658Z >>> assert y.shape == (2, 3) 2025-09-07T07:42:03.0449903Z >>> 2025-09-07T07:42:03.0450167Z >>> # Example 2: an operator with data-dependent output shape 2025-09-07T07:42:03.0450668Z >>> @torch.library.custom_op("mylib::custom_nonzero", mutates_args=()) 2025-09-07T07:42:03.0451173Z >>> def custom_nonzero(x: Tensor) -> Tensor: 2025-09-07T07:42:03.0451491Z >>> x_np = x.numpy(force=True) 2025-09-07T07:42:03.0451843Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-09-07T07:42:03.0452192Z >>> return torch.tensor(res, device=x.device) 2025-09-07T07:42:03.0452473Z >>> 2025-09-07T07:42:03.0452746Z >>> @torch.library.register_fake("mylib::custom_nonzero") 2025-09-07T07:42:03.0453086Z >>> def _(x): 2025-09-07T07:42:03.0453360Z >>> # Number of nonzero-elements is data-dependent. 2025-09-07T07:42:03.0453734Z >>> # Since we cannot peek at the data in an fake impl, 2025-09-07T07:42:03.0454103Z >>> # we use the ctx object to construct a new symint that 2025-09-07T07:42:03.0454465Z >>> # represents the data-dependent size. 2025-09-07T07:42:03.0454780Z >>> ctx = torch.library.get_ctx() 2025-09-07T07:42:03.0455089Z >>> nnz = ctx.new_dynamic_size() 2025-09-07T07:42:03.0455368Z >>> shape = [nnz, x.dim()] 2025-09-07T07:42:03.0455687Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-09-07T07:42:03.0456020Z >>> return result 2025-09-07T07:42:03.0456286Z >>> 2025-09-07T07:42:03.0456593Z >>> from torch.fx.experimental.proxy_tensor import make_fx 2025-09-07T07:42:03.0456919Z >>> 2025-09-07T07:42:03.0457126Z >>> x = torch.tensor([0, 1, 2, 3, 4, 0]) 2025-09-07T07:42:03.0457535Z >>> trace = make_fx(torch.ops.mylib.custom_nonzero, tracing_mode="symbolic")(x) 2025-09-07T07:42:03.0457955Z >>> trace.print_readable() 2025-09-07T07:42:03.0458206Z >>> 2025-09-07T07:42:03.0458513Z >>> assert torch.allclose(trace(x), torch.ops.mylib.custom_nonzero(x)) 2025-09-07T07:42:03.0458946Z 2025-09-07T07:42:03.0459098Z 2025-09-07T07:42:03.0459512Z Original Error: IndentationError('expected an indented block', ('', 38, 1, '_._ = None\n')) 2025-09-07T07:42:03.0459995Z 2025-09-07T07:42:03.0460162Z _._ = None 2025-09-07T07:42:03.0460333Z ^ 2025-09-07T07:42:03.0460522Z warnings.warn(msg) 2025-09-07T07:42:03.0460725Z 2025-09-07T07:42:03.0461068Z --- Parse Warning: 3 / 17 --- 2025-09-07T07:42:03.0462017Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=get_kernel in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py line=1482. 2025-09-07T07:42:03.0463068Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0463638Z Returns the computed kernel for a given operator and dispatch key. 2025-09-07T07:42:03.0463984Z 2025-09-07T07:42:03.0464279Z This function retrieves the kernel that would be executed for a given 2025-09-07T07:42:03.0464786Z operator and dispatch key combination. The returned SafeKernelFunction 2025-09-07T07:42:03.0465277Z can be used to call the kernel in a boxed fashion. The intended use 2025-09-07T07:42:03.0465743Z case for this function is to retrieve the original kernel for a given 2025-09-07T07:42:03.0466222Z dispatch key and then register another kernel to the same dispatch key 2025-09-07T07:42:03.0466666Z that calls into the original kernel for certain cases. 2025-09-07T07:42:03.0466971Z 2025-09-07T07:42:03.0467129Z Args: 2025-09-07T07:42:03.0467410Z op: Operator name (along with the overload) or OpOverload object 2025-09-07T07:42:03.0467941Z Can be a string (e.g., "aten::add.Tensor"), an OpOverload, or a CustomOpDef. 2025-09-07T07:42:03.0468518Z dispatch_key (str | torch.DispatchKey): The dispatch key to get the kernel for. 2025-09-07T07:42:03.0469017Z Can be a string (e.g., "CPU", "CUDA") or a DispatchKey enum value. 2025-09-07T07:42:03.0469406Z 2025-09-07T07:42:03.0469563Z Returns: 2025-09-07T07:42:03.0469897Z torch._C._SafeKernelFunction: A safe kernel function that can be used to 2025-09-07T07:42:03.0470344Z call the kernel. 2025-09-07T07:42:03.0470586Z 2025-09-07T07:42:03.0470737Z Raises: 2025-09-07T07:42:03.0470977Z RuntimeError: If the operator does not exist. 2025-09-07T07:42:03.0471280Z 2025-09-07T07:42:03.0471438Z Example: 2025-09-07T07:42:03.0471650Z >>> # Get the CPU kernel for torch.add 2025-09-07T07:42:03.0472020Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", "CPU") 2025-09-07T07:42:03.0472372Z >>> 2025-09-07T07:42:03.0472584Z >>> # You can also use DispatchKey enum 2025-09-07T07:42:03.0473028Z >>> kernel = torch.library.get_kernel("aten::add.Tensor", torch.DispatchKey.CPU) 2025-09-07T07:42:03.0473476Z >>> 2025-09-07T07:42:03.0473728Z >>> # Or use an OpOverload directly 2025-09-07T07:42:03.0474137Z >>> kernel = torch.library.get_kernel(torch.ops.aten.add.Tensor, "CPU") 2025-09-07T07:42:03.0474514Z >>> 2025-09-07T07:42:03.0474825Z >>> # Example: Using get_kernel in a custom op with conditional dispatch 2025-09-07T07:42:03.0475223Z >>> # Get the original kernel for torch.sin 2025-09-07T07:42:03.0475633Z >>> original_sin_kernel = torch.library.get_kernel("aten::sin", "CPU") 2025-09-07T07:42:03.0475997Z >>> 2025-09-07T07:42:03.0476308Z >>> # If input has negative values, use original sin, otherwise return zeros 2025-09-07T07:42:03.0476745Z >>> def conditional_sin_impl(dispatch_keys, x): 2025-09-07T07:42:03.0477052Z >>> if (x < 0).any(): 2025-09-07T07:42:03.0477392Z >>> return original_sin_kernel.call_boxed(dispatch_keys, x) 2025-09-07T07:42:03.0477784Z >>> else: 2025-09-07T07:42:03.0478030Z >>> return torch.zeros_like(x) 2025-09-07T07:42:03.0478292Z >>> 2025-09-07T07:42:03.0478532Z >>> lib = torch.library.Library("aten", "IMPL") 2025-09-07T07:42:03.0479033Z >>> # with_keyset=True so the first argument to the impl is the current DispatchKeySet 2025-09-07T07:42:03.0479588Z >>> which needs to be the first argument to ``kernel.call_boxed`` 2025-09-07T07:42:03.0480037Z >>> lib.impl("sin", conditional_sin_impl, "CPU", with_keyset=True) 2025-09-07T07:42:03.0480376Z >>> 2025-09-07T07:42:03.0480587Z >>> # Test the conditional behavior 2025-09-07T07:42:03.0480892Z >>> x_positive = torch.tensor([1.0, 2.0]) 2025-09-07T07:42:03.0481256Z >>> x_mixed = torch.tensor([-1.0, 2.0]) 2025-09-07T07:42:03.0481545Z >>> torch.sin(x_positive) 2025-09-07T07:42:03.0481822Z tensor([0., 0.]) 2025-09-07T07:42:03.0482061Z >>> torch.sin(x_mixed) 2025-09-07T07:42:03.0482323Z tensor([-0.8415, 0.9093]) 2025-09-07T07:42:03.0482567Z 2025-09-07T07:42:03.0483073Z Original Error: SyntaxError('invalid syntax', ('', 23, 7, 'which needs to be the first argument to ``kernel.call_boxed``\n')) 2025-09-07T07:42:03.0483657Z 2025-09-07T07:42:03.0483907Z which needs to be the first argument to ``kernel.call_boxed`` 2025-09-07T07:42:03.0484245Z ^ 2025-09-07T07:42:03.0484424Z warnings.warn(msg) 2025-09-07T07:42:03.0484680Z 2025-09-07T07:42:03.0485024Z --- Parse Warning: 4 / 17 --- 2025-09-07T07:42:03.0486118Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=is_available in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py line=66. 2025-09-07T07:42:03.0487183Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0487791Z Check if the current accelerator is available at runtime: it was build, all the 2025-09-07T07:42:03.0488311Z required drivers are available and at least one device is visible. 2025-09-07T07:42:03.0489112Z See :ref:`accelerator` for details. 2025-09-07T07:42:03.0489417Z 2025-09-07T07:42:03.0489591Z Returns: 2025-09-07T07:42:03.0489957Z bool: A boolean indicating if there is an available :ref:`accelerator`. 2025-09-07T07:42:03.0490432Z 2025-09-07T07:42:03.0490740Z .. note:: This API delegates to the device-specific version of `is_available`. 2025-09-07T07:42:03.0491352Z On CUDA, when the environment variable ``PYTORCH_NVML_BASED_CUDA_CHECK=1`` is set, 2025-09-07T07:42:03.0491920Z this function will NOT poison fork. Otherwise, it will. For more details, see 2025-09-07T07:42:03.0492381Z :ref:`multiprocessing-poison-fork-note`. 2025-09-07T07:42:03.0492681Z 2025-09-07T07:42:03.0492842Z Example:: 2025-09-07T07:42:03.0493029Z 2025-09-07T07:42:03.0493359Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-09-07T07:42:03.0493780Z 2025-09-07T07:42:03.0494355Z Original Error: SyntaxError('invalid syntax', ('', 1, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-09-07T07:42:03.0495009Z 2025-09-07T07:42:03.0495328Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-09-07T07:42:03.0495751Z ^ 2025-09-07T07:42:03.0496026Z warnings.warn(msg) 2025-09-07T07:42:03.0496264Z 2025-09-07T07:42:03.0496624Z --- Parse Warning: 5 / 17 --- 2025-09-07T07:42:03.0497588Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=synchronize in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\accelerator\__init__.py line=212. 2025-09-07T07:42:03.0498723Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0499232Z Wait for all kernels in all streams on the given device to complete. 2025-09-07T07:42:03.0499583Z 2025-09-07T07:42:03.0499751Z Args: 2025-09-07T07:42:03.0500139Z device (:class:`torch.device`, str, int, optional): device for which to synchronize. It must match 2025-09-07T07:42:03.0500733Z the current :ref:`accelerator` device type. If not given, 2025-09-07T07:42:03.0501214Z use :func:`torch.accelerator.current_device_index` by default. 2025-09-07T07:42:03.0501558Z 2025-09-07T07:42:03.0502008Z .. note:: This function is a no-op if the current :ref:`accelerator` is not initialized. 2025-09-07T07:42:03.0502497Z 2025-09-07T07:42:03.0523140Z Example:: 2025-09-07T07:42:03.0523366Z 2025-09-07T07:42:03.0523589Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_CUDA) 2025-09-07T07:42:03.0524051Z >>> assert torch.accelerator.is_available() "No available accelerators detected." 2025-09-07T07:42:03.0524530Z >>> start_event = torch.Event(enable_timing=True) 2025-09-07T07:42:03.0524934Z >>> end_event = torch.Event(enable_timing=True) 2025-09-07T07:42:03.0525235Z >>> start_event.record() 2025-09-07T07:42:03.0525675Z >>> tensor = torch.randn(100, device=torch.accelerator.current_accelerator()) 2025-09-07T07:42:03.0526186Z >>> sum = torch.sum(tensor) 2025-09-07T07:42:03.0526456Z >>> end_event.record() 2025-09-07T07:42:03.0526726Z >>> torch.accelerator.synchronize() 2025-09-07T07:42:03.0527092Z >>> elapsed_time_ms = start_event.elapsed_time(end_event) 2025-09-07T07:42:03.0527405Z 2025-09-07T07:42:03.0528534Z Original Error: SyntaxError('invalid syntax', ('', 2, 41, 'assert torch.accelerator.is_available() "No available accelerators detected."\n')) 2025-09-07T07:42:03.0529188Z 2025-09-07T07:42:03.0529518Z assert torch.accelerator.is_available() "No available accelerators detected." 2025-09-07T07:42:03.0529994Z ^ 2025-09-07T07:42:03.0530265Z warnings.warn(msg) 2025-09-07T07:42:03.0530475Z 2025-09-07T07:42:03.0530883Z --- Parse Warning: 6 / 17 --- 2025-09-07T07:42:03.0531837Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=cudart in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\cuda\__init__.py line=434. 2025-09-07T07:42:03.0532857Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0533285Z Retrieves the CUDA runtime API module. 2025-09-07T07:42:03.0533541Z 2025-09-07T07:42:03.0533712Z 2025-09-07T07:42:03.0534031Z This function initializes the CUDA runtime environment if it is not already 2025-09-07T07:42:03.0534558Z initialized and returns the CUDA runtime API module (_cudart). The CUDA 2025-09-07T07:42:03.0535074Z runtime API module provides access to various CUDA runtime functions. 2025-09-07T07:42:03.0535443Z 2025-09-07T07:42:03.0535607Z Args: 2025-09-07T07:42:03.0535784Z ``None`` 2025-09-07T07:42:03.0535979Z 2025-09-07T07:42:03.0536130Z Returns: 2025-09-07T07:42:03.0536416Z module: The CUDA runtime API module (_cudart). 2025-09-07T07:42:03.0536708Z 2025-09-07T07:42:03.0536925Z Raises: 2025-09-07T07:42:03.0537246Z RuntimeError: If CUDA cannot be re-initialized in a forked subprocess. 2025-09-07T07:42:03.0537881Z AssertionError: If PyTorch is not compiled with CUDA support or if libcudart functions are unavailable. 2025-09-07T07:42:03.0538385Z 2025-09-07T07:42:03.0538652Z Example of CUDA operations with profiling: 2025-09-07T07:42:03.0538965Z >>> import torch 2025-09-07T07:42:03.0539233Z >>> from torch.cuda import cudart, check_error 2025-09-07T07:42:03.0539546Z >>> import os 2025-09-07T07:42:03.0539752Z >>> 2025-09-07T07:42:03.0539972Z >>> os.environ["CUDA_PROFILE"] = "1" 2025-09-07T07:42:03.0540243Z >>> 2025-09-07T07:42:03.0540473Z >>> def perform_cuda_operations_with_streams(): 2025-09-07T07:42:03.0540797Z >>> stream = torch.cuda.Stream() 2025-09-07T07:42:03.0541102Z >>> with torch.cuda.stream(stream): 2025-09-07T07:42:03.0541424Z >>> x = torch.randn(100, 100, device='cuda') 2025-09-07T07:42:03.0541784Z >>> y = torch.randn(100, 100, device='cuda') 2025-09-07T07:42:03.0542094Z >>> z = torch.mul(x, y) 2025-09-07T07:42:03.0542400Z >>> return z 2025-09-07T07:42:03.0542656Z >>> 2025-09-07T07:42:03.0542877Z >>> torch.cuda.synchronize() 2025-09-07T07:42:03.0543179Z >>> print("====== Start nsys profiling ======") 2025-09-07T07:42:03.0543520Z >>> check_error(cudart().cudaProfilerStart()) 2025-09-07T07:42:03.0543853Z >>> with torch.autograd.profiler.emit_nvtx(): 2025-09-07T07:42:03.0544212Z >>> result = perform_cuda_operations_with_streams() 2025-09-07T07:42:03.0544549Z >>> print("CUDA operations completed.") 2025-09-07T07:42:03.0544908Z >>> check_error(torch.cuda.cudart().cudaProfilerStop()) 2025-09-07T07:42:03.0545259Z >>> print("====== End nsys profiling ======") 2025-09-07T07:42:03.0545538Z 2025-09-07T07:42:03.0545810Z To run this example and save the profiling information, execute: 2025-09-07T07:42:03.0546419Z >>> $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-09-07T07:42:03.0546913Z 2025-09-07T07:42:03.0547268Z This command profiles the CUDA operations in the provided script and saves 2025-09-07T07:42:03.0547785Z the profiling information to a file named `trace_name.prof`. 2025-09-07T07:42:03.0548354Z The `--profile-from-start off` option ensures that profiling starts only 2025-09-07T07:42:03.0548846Z after the `cudaProfilerStart` call in the script. 2025-09-07T07:42:03.0549281Z The `--csv` and `--print-summary` options format the profiling output as a 2025-09-07T07:42:03.0549697Z CSV file and print a summary, respectively. 2025-09-07T07:42:03.0550138Z The `-o` option specifies the output file name, and the `-f` option forces the 2025-09-07T07:42:03.0550595Z overwrite of the output file if it already exists. 2025-09-07T07:42:03.0550906Z 2025-09-07T07:42:03.0551577Z Original Error: SyntaxError('invalid syntax', ('', 1, 1, '$ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py\n')) 2025-09-07T07:42:03.0552322Z 2025-09-07T07:42:03.0552745Z $ nvprof --profile-from-start off --csv --print-summary -o trace_name.prof -f -- python cudart_test.py 2025-09-07T07:42:03.0553240Z ^ 2025-09-07T07:42:03.0553421Z warnings.warn(msg) 2025-09-07T07:42:03.0553629Z 2025-09-07T07:42:03.0553989Z --- Parse Warning: 7 / 17 --- 2025-09-07T07:42:03.0555222Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=ActivationSparsifier in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py line=16. 2025-09-07T07:42:03.0556578Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0556990Z 2025-09-07T07:42:03.0557325Z The Activation sparsifier class aims to sparsify/prune activations in a neural 2025-09-07T07:42:03.0558334Z network. The idea is to attach the sparsifier to a layer (or layers) and it 2025-09-07T07:42:03.0558867Z zeroes out the activations based on the mask_fn (or sparsification function) 2025-09-07T07:42:03.0559297Z input by the user. 2025-09-07T07:42:03.0559643Z The mask_fn is applied once all the inputs are aggregated and reduced i.e. 2025-09-07T07:42:03.0560122Z mask = mask_fn(reduce_fn(aggregate_fn(activations))) 2025-09-07T07:42:03.0560472Z 2025-09-07T07:42:03.0560641Z Note:: 2025-09-07T07:42:03.0561032Z The sparsification mask is computed on the input **before it goes through the attached layer**. 2025-09-07T07:42:03.0561485Z 2025-09-07T07:42:03.0561644Z Args: 2025-09-07T07:42:03.0561814Z model (nn.Module): 2025-09-07T07:42:03.0562209Z The model whose layers will be sparsified. The layers that needs to be 2025-09-07T07:42:03.0562735Z sparsified should be added separately using the register_layer() function 2025-09-07T07:42:03.0563155Z aggregate_fn (Optional, Callable): 2025-09-07T07:42:03.0563588Z default aggregate_fn that is used if not specified while registering the layer. 2025-09-07T07:42:03.0564072Z specifies how inputs should be aggregated over time. 2025-09-07T07:42:03.0564580Z The aggregate_fn should usually take 2 torch tensors and return the aggregated tensor. 2025-09-07T07:42:03.0565007Z Example 2025-09-07T07:42:03.0565297Z def add_agg_fn(tensor1, tensor2): return tensor1 + tensor2 2025-09-07T07:42:03.0565703Z reduce_fn (Optional, Callable): 2025-09-07T07:42:03.0566229Z default reduce_fn that is used if not specified while registering the layer. 2025-09-07T07:42:03.0566797Z reduce_fn will be called on the aggregated tensor i.e. the tensor obtained after 2025-09-07T07:42:03.0567225Z calling agg_fn() on all inputs. 2025-09-07T07:42:03.0567514Z Example 2025-09-07T07:42:03.0567876Z def mean_reduce_fn(agg_tensor): return agg_tensor.mean(dim=0) 2025-09-07T07:42:03.0568270Z mask_fn (Optional, Callable): 2025-09-07T07:42:03.0568791Z default mask_fn that is used to create the sparsification mask using the tensor obtained after 2025-09-07T07:42:03.0569392Z calling the reduce_fn(). This is used by default if a custom one is passed in the 2025-09-07T07:42:03.0569809Z register_layer(). 2025-09-07T07:42:03.0570301Z Note that the mask_fn() definition should contain the sparse arguments that is passed in sparse_config 2025-09-07T07:42:03.0570808Z arguments. 2025-09-07T07:42:03.0571052Z features (Optional, list): 2025-09-07T07:42:03.0571359Z default selected features to sparsify. 2025-09-07T07:42:03.0571870Z If this is non-empty, then the mask_fn will be applied for each feature of the input. 2025-09-07T07:42:03.0572346Z For example, 2025-09-07T07:42:03.0572740Z mask = [mask_fn(reduce_fn(aggregated_fn(input[feature])) for feature in features] 2025-09-07T07:42:03.0573167Z feature_dim (Optional, int): 2025-09-07T07:42:03.0573610Z default dimension of input features. Again, features along this dim will be chosen 2025-09-07T07:42:03.0574040Z for sparsification. 2025-09-07T07:42:03.0574317Z sparse_config (Dict): 2025-09-07T07:42:03.0574699Z Default configuration for the mask_fn. This config will be passed 2025-09-07T07:42:03.0575085Z with the mask_fn() 2025-09-07T07:42:03.0575337Z 2025-09-07T07:42:03.0575495Z Example: 2025-09-07T07:42:03.0575694Z >>> # xdoctest: +SKIP 2025-09-07T07:42:03.0575928Z >>> model = SomeModel() 2025-09-07T07:42:03.0576729Z >>> act_sparsifier = ActivationSparsifier(...) # init activation sparsifier 2025-09-07T07:42:03.0577156Z >>> # Initialize aggregate_fn 2025-09-07T07:42:03.0577478Z >>> def agg_fn(x, y): 2025-09-07T07:42:03.0577719Z >>> return x + y 2025-09-07T07:42:03.0577978Z >>> 2025-09-07T07:42:03.0578207Z >>> # Initialize reduce_fn 2025-09-07T07:42:03.0578458Z >>> def reduce_fn(x): 2025-09-07T07:42:03.0578749Z >>> return torch.mean(x, dim=0) 2025-09-07T07:42:03.0579040Z >>> 2025-09-07T07:42:03.0579219Z >>> # Initialize mask_fn 2025-09-07T07:42:03.0579495Z >>> def mask_fn(data): 2025-09-07T07:42:03.0579813Z >>> return torch.eye(data.shape).to(data.device) 2025-09-07T07:42:03.0580107Z >>> 2025-09-07T07:42:03.0580314Z >>> 2025-09-07T07:42:03.0580584Z >>> act_sparsifier.register_layer( 2025-09-07T07:42:03.0580910Z ... model.some_layer, 2025-09-07T07:42:03.0581181Z ... aggregate_fn=agg_fn, 2025-09-07T07:42:03.0581476Z ... reduce_fn=reduce_fn, 2025-09-07T07:42:03.0581763Z ... mask_fn=mask_fn, 2025-09-07T07:42:03.0581981Z ... ) 2025-09-07T07:42:03.0582196Z >>> 2025-09-07T07:42:03.0582374Z >>> # start training process 2025-09-07T07:42:03.0582662Z >>> for _ in [...]: 2025-09-07T07:42:03.0582913Z >>> # epoch starts 2025-09-07T07:42:03.0583237Z >>> # model.forward(), compute_loss() and model.backwards() 2025-09-07T07:42:03.0583564Z >>> # epoch ends 2025-09-07T07:42:03.0583833Z >>> act_sparsifier.step() 2025-09-07T07:42:03.0584135Z >>> # end training process 2025-09-07T07:42:03.0584425Z >>> sparsifier.squash_mask() 2025-09-07T07:42:03.0584672Z 2025-09-07T07:42:03.0585155Z Original Error: IndentationError('expected an indented block', ('', 26, 1, '_._ = None\n')) 2025-09-07T07:42:03.0585685Z 2025-09-07T07:42:03.0585840Z _._ = None 2025-09-07T07:42:03.0586056Z ^ 2025-09-07T07:42:03.0586277Z warnings.warn(msg) 2025-09-07T07:42:03.0586524Z 2025-09-07T07:42:03.0586897Z --- Parse Warning: 8 / 17 --- 2025-09-07T07:42:03.0588064Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=DeviceMesh.__getitem__ in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\device_mesh.py line=701. 2025-09-07T07:42:03.0589305Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0589734Z 2025-09-07T07:42:03.0590112Z Slice the current DeviceMesh based on the mesh_dim_names given to create a submesh. 2025-09-07T07:42:03.0590705Z The submesh created consists of the dimensions and the communicators indicated by 2025-09-07T07:42:03.0591122Z ``mesh_dim_names`` 2025-09-07T07:42:03.0591319Z 2025-09-07T07:42:03.0591467Z Args: 2025-09-07T07:42:03.0591776Z mesh_dim_names (Union[str, Tuple[str]]): the name or the tuple of names of the 2025-09-07T07:42:03.0592259Z mesh dimension of the DeviceMesh to create the submesh for. 2025-09-07T07:42:03.0592600Z Returns: 2025-09-07T07:42:03.0592800Z A :class:`DeviceMesh` object 2025-09-07T07:42:03.0593049Z 2025-09-07T07:42:03.0593404Z The following program runs on each process/rank in an SPMD manner in a world size of 8. 2025-09-07T07:42:03.0593839Z In the first example: 2025-09-07T07:42:03.0594211Z Calling mesh_2d["tp"] on rank 0, 1, 2, 3 returns a 1D submesh of DeviceMesh:([0, 1, 2, 3]). 2025-09-07T07:42:03.0594749Z Calling mesh_2d["tp"] on rank 4, 5, 6, 7 returns a 1D submesh of DeviceMesh:([4, 5, 6, 7]). 2025-09-07T07:42:03.0595313Z Calling mesh_2d["dp"] on rank 0, 4 returns a 1D submesh of DeviceMesh:([0, 4]). 2025-09-07T07:42:03.0595846Z Calling mesh_2d["dp"] on rank 1, 5 returns a 1D submesh of DeviceMesh:([1, 5]). 2025-09-07T07:42:03.0596800Z Calling mesh_2d["dp"] on rank 2, 6 returns a 1D submesh of DeviceMesh:([2, 6]). 2025-09-07T07:42:03.0597312Z Calling mesh_2d["dp"] on rank 3, 7 returns a 1D submesh of DeviceMesh:([3, 7]). 2025-09-07T07:42:03.0597685Z 2025-09-07T07:42:03.0597868Z In the second example: 2025-09-07T07:42:03.0598255Z Calling mesh_3d["dp", "cp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 1], [4, 5]]). 2025-09-07T07:42:03.0598839Z Calling mesh_3d["dp", "cp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 3], [6, 7]]). 2025-09-07T07:42:03.0599404Z Calling mesh_3d["cp", "dp"] on rank 0, 1, 4, 5 returns a 2D submesh of DeviceMesh:([[0, 4], [1, 5]]). 2025-09-07T07:42:03.0600022Z Calling mesh_3d["cp", "dp"] on rank 2, 3, 6, 7 returns a 2D submesh of DeviceMesh:([[2, 6], [3, 7]]). 2025-09-07T07:42:03.0600428Z 2025-09-07T07:42:03.0600595Z Example:: 2025-09-07T07:42:03.0600775Z 2025-09-07T07:42:03.0600944Z >>> # xdoctest: +SKIP("no rank") 2025-09-07T07:42:03.0601291Z >>> from torch.distributed.device_mesh import DeviceMesh 2025-09-07T07:42:03.0601669Z >>> 2025-09-07T07:42:03.0601976Z >>> # Initialize a 2D device mesh as (2, 4) to represent the topology 2025-09-07T07:42:03.0602422Z >>> # of cross-host(dim 0), and within-host (dim 1). 2025-09-07T07:42:03.0602866Z >>> mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-09-07T07:42:03.0603290Z >>> tp_mesh = mesh_2d["tp"] 2025-09-07T07:42:03.0603534Z >>> dp_mesh = mesh_2d["dp"] 2025-09-07T07:42:03.0603771Z >>> 2025-09-07T07:42:03.0603945Z >>> # Initialize a 3D mesh. 2025-09-07T07:42:03.0604363Z >>> mesh_3d = init_device_mesh(device_type="cuda", (2,2,2), mesh_dim_names=("dp", "pp", "cp")) 2025-09-07T07:42:03.0604990Z >>> # The order of the mesh_dim_names provided deteremines the order of dimensions in the submesh. 2025-09-07T07:42:03.0605453Z >>> dp_cp_mesh = mesh_3d["dp", "cp"] 2025-09-07T07:42:03.0605785Z >>> cp_dp_mesh = mesh_3d["cp", "dp"] 2025-09-07T07:42:03.0606125Z 2025-09-07T07:42:03.0606807Z Original Error: SyntaxError('positional argument follows keyword argument', ('', 6, 82, 'mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp"))\n')) 2025-09-07T07:42:03.0607645Z 2025-09-07T07:42:03.0607996Z mesh_2d = init_device_mesh(device_type="cuda", (2,4), mesh_dim_names=("dp", "tp")) 2025-09-07T07:42:03.0608469Z ^ 2025-09-07T07:42:03.0608762Z warnings.warn(msg) 2025-09-07T07:42:03.0608978Z 2025-09-07T07:42:03.0609286Z --- Parse Warning: 9 / 17 --- 2025-09-07T07:42:03.0610289Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=SavePlanner in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\planner.py line=122. 2025-09-07T07:42:03.0611406Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0611799Z 2025-09-07T07:42:03.0612156Z Abstract class defining the protocol used by save_state_dict to plan the save process. 2025-09-07T07:42:03.0612576Z 2025-09-07T07:42:03.0612928Z SavePlanners are stateful objects that can be used to customize the whole save process. 2025-09-07T07:42:03.0613358Z 2025-09-07T07:42:03.0613700Z SavePlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-09-07T07:42:03.0614233Z will be visible to the whole process. 2025-09-07T07:42:03.0614501Z 2025-09-07T07:42:03.0614872Z A planner subclass can expect the following sequence of calls during save_state_dict: 2025-09-07T07:42:03.0615283Z 2025-09-07T07:42:03.0615472Z 1) set_up_planner - called on all ranks. 2025-09-07T07:42:03.0615780Z Signals the start of a checkpoint save. 2025-09-07T07:42:03.0616448Z 2025-09-07T07:42:03.0616645Z 2) create_local_plan - called on all ranks. 2025-09-07T07:42:03.0617116Z Process the state_dict and produces a `SavePlan` that will be sent for global planning. 2025-09-07T07:42:03.0617547Z 2025-09-07T07:42:03.0617808Z 3) create_global_plan - called on the coordinator rank only. 2025-09-07T07:42:03.0618246Z Takes the SavePlan from all ranks and make any global decision. 2025-09-07T07:42:03.0618579Z 2025-09-07T07:42:03.0618758Z 4) finish_plan - called on all ranks. 2025-09-07T07:42:03.0619137Z This gives each rank a chance to adjust to global planning decisions. 2025-09-07T07:42:03.0619501Z 2025-09-07T07:42:03.0619718Z 5) resolve_data - called multiple times on each rank 2025-09-07T07:42:03.0620173Z Lookups a value on the `state_dict` for the storage layer to write. 2025-09-07T07:42:03.0620514Z 2025-09-07T07:42:03.0620885Z Users are recommended to extend DefaultSavePlanner instead of this interface directly as 2025-09-07T07:42:03.0621443Z most changes can be expressed by changes in a single method. 2025-09-07T07:42:03.0621767Z 2025-09-07T07:42:03.0621965Z There are 3 usual patterns of extension: 2025-09-07T07:42:03.0622226Z 2025-09-07T07:42:03.0622546Z Rewriting state_dict. This is the simplest way to extend the save process as it 2025-09-07T07:42:03.0623075Z doesn't requite understanding the intrincacies of how SavePlan works: 2025-09-07T07:42:03.0623445Z 2025-09-07T07:42:03.0623628Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:42:03.0623938Z >>> class RenamePlanner(DefaultSavePlanner): 2025-09-07T07:42:03.0624235Z >>> def set_up_planner( 2025-09-07T07:42:03.0624467Z >>> self, 2025-09-07T07:42:03.0624687Z >>> state_dict: STATE_DICT_TYPE, 2025-09-07T07:42:03.0625030Z >>> storage_meta: Optional[StorageMeta], 2025-09-07T07:42:03.0625339Z >>> is_coordinator: bool, 2025-09-07T07:42:03.0625629Z >>> ) -> None: 2025-09-07T07:42:03.0625931Z >>> # prefix all keys with `foo_`` 2025-09-07T07:42:03.0626375Z >>> super().set_up_planner({"foo_" + k: v for k, v in state_dict.items()}, storage_meta, is_coordinator) 2025-09-07T07:42:03.0626843Z 2025-09-07T07:42:03.0627224Z Modifying local plan and lookup in tandem. This is useful when fine control of how data is persisted 2025-09-07T07:42:03.0627698Z 2025-09-07T07:42:03.0627890Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:42:03.0628190Z >>> class FP16Planner(DefaultSavePlanner): 2025-09-07T07:42:03.0628496Z >>> def create_local_plan(self): 2025-09-07T07:42:03.0628779Z >>> plan = super().create_local_plan() 2025-09-07T07:42:03.0629068Z >>> for p in plan: 2025-09-07T07:42:03.0629320Z >>> if p.tensor_data is not None: 2025-09-07T07:42:03.0629663Z >>> p.tensor_data.properties.dtype = torch.float16 2025-09-07T07:42:03.0629980Z >>> return plan 2025-09-07T07:42:03.0630196Z >>> 2025-09-07T07:42:03.0630389Z >>> def resolve_data(self, write_item): 2025-09-07T07:42:03.0630693Z >>> item = super().resolve_data(write_item) 2025-09-07T07:42:03.0631149Z >>> return item if write_item.type == WriteItemType.BYTE_IO else item.to(torch.float16) 2025-09-07T07:42:03.0631565Z 2025-09-07T07:42:03.0631974Z Using the global planning step to make central decisions that can't be made individually by each rank 2025-09-07T07:42:03.0632444Z 2025-09-07T07:42:03.0632633Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:42:03.0632917Z >>> from itertools import zip_longest 2025-09-07T07:42:03.0633208Z >>> from dataclasses import replace 2025-09-07T07:42:03.0633556Z >>> class DDPLoadBalancingPlanner(DefaultSavePlanner): 2025-09-07T07:42:03.0634044Z >>> # This uses the default local plan behavior of having all non-sharded writes in rank 0 2025-09-07T07:42:03.0634908Z >>> # This sample doesn't handle ShardedTensors 2025-09-07T07:42:03.0635233Z >>> def create_global_plan(self, all_plans): 2025-09-07T07:42:03.0635585Z >>> iters = [iter(all_plans[0].items)] * len(all_plans) 2025-09-07T07:42:03.0635907Z >>> items_per_rank = [ 2025-09-07T07:42:03.0636192Z >>> [item for item in items if item is not None] 2025-09-07T07:42:03.0636554Z >>> for items in zip(*zip_longest(*iters), strict=True) 2025-09-07T07:42:03.0636862Z >>> ] 2025-09-07T07:42:03.0637057Z >>> all_plans = [ 2025-09-07T07:42:03.0637299Z >>> replace(plan, items=items) 2025-09-07T07:42:03.0637711Z >>> for plan, items in zip(all_plans, items_per_rank, strict=True) 2025-09-07T07:42:03.0638054Z >>> ] 2025-09-07T07:42:03.0638296Z >>> return super().create_global_plan(all_plans) 2025-09-07T07:42:03.0638592Z 2025-09-07T07:42:03.0638927Z Finally, some planners need to save additional metadata in the checkpoint, this is 2025-09-07T07:42:03.0639526Z accomplished by having each rank contribute their data items in the local plan and 2025-09-07T07:42:03.0639960Z the global planner aggregate them: 2025-09-07T07:42:03.0640210Z 2025-09-07T07:42:03.0640393Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:42:03.0640732Z >>> class SaveExtraDataPlanner(DefaultSavePlanner): 2025-09-07T07:42:03.0641141Z >>> def create_local_plan(self) -> SavePlan: 2025-09-07T07:42:03.0641500Z >>> plan = super().create_local_plan() 2025-09-07T07:42:03.0641886Z >>> return replace(plan, planner_data="per-rank-data") 2025-09-07T07:42:03.0642197Z >>> 2025-09-07T07:42:03.0642565Z >>> def create_global_plan(self, all_plans: List[SavePlan]) -> Tuple[List[SavePlan], Metadata]: 2025-09-07T07:42:03.0643107Z >>> global_plan, metadata = super().create_global_plan(all_plans) 2025-09-07T07:42:03.0643576Z >>> merged_data = [p.planner_data for p in global_plan] 2025-09-07T07:42:03.0643960Z >>> metadata = replace(metadata, planner_data=merged_data) 2025-09-07T07:42:03.0644356Z >>> return global_plan, metadata 2025-09-07T07:42:03.0644607Z 2025-09-07T07:42:03.0645012Z Original Error: IndentationError('expected an indented block', ('', 9, 0, '_._ = None\n')) 2025-09-07T07:42:03.0645506Z 2025-09-07T07:42:03.0645658Z _._ = None 2025-09-07T07:42:03.0645840Z ^ 2025-09-07T07:42:03.0646073Z warnings.warn(msg) 2025-09-07T07:42:03.0646291Z 2025-09-07T07:42:03.0646617Z --- Parse Warning: 10 / 17 --- 2025-09-07T07:42:03.0647640Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=LoadPlanner in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\checkpoint\planner.py line=305. 2025-09-07T07:42:03.0648746Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0649138Z 2025-09-07T07:42:03.0649496Z Abstract class defining the protocol used by load_state_dict to plan the load process. 2025-09-07T07:42:03.0649921Z 2025-09-07T07:42:03.0650274Z LoadPlanner are stateful objects that can be used to customize the whole load process. 2025-09-07T07:42:03.0650697Z 2025-09-07T07:42:03.0651032Z LoadPlanner acts as an access proxy to the state_dict, so any transformation done to it 2025-09-07T07:42:03.0651480Z will be visible to the whole process. 2025-09-07T07:42:03.0651742Z 2025-09-07T07:42:03.0652069Z A planner subclass can expect the following sequence of calls during load_state_dict: 2025-09-07T07:42:03.0652491Z 2025-09-07T07:42:03.0652685Z 1) set_up_planner - called on all ranks. 2025-09-07T07:42:03.0652989Z Signals the start of loading a checkpoint. 2025-09-07T07:42:03.0653654Z 2025-09-07T07:42:03.0653846Z 2) create_local_plan - called on all ranks. 2025-09-07T07:42:03.0654308Z Process the state_dict and produces a `LoadPlan` that will be sent for global planning. 2025-09-07T07:42:03.0654732Z 2025-09-07T07:42:03.0654986Z 3) create_global_plan - called on the coordinator rank only. 2025-09-07T07:42:03.0655415Z Takes the LoadPlan from all ranks and make any global decision. 2025-09-07T07:42:03.0655757Z 2025-09-07T07:42:03.0655972Z 4) load_bytes - called multiple times on each rank 2025-09-07T07:42:03.0656344Z This is called once per non-tensor value in state_dict. 2025-09-07T07:42:03.0656657Z 2025-09-07T07:42:03.0656938Z 5) resolve_tensor and commit_tensor - called multiple times on each rank 2025-09-07T07:42:03.0657451Z They are called in pair for each Tensor value in state_dict. 2025-09-07T07:42:03.0657777Z 2025-09-07T07:42:03.0658150Z Users are recommended to extend DefaultLoadPlanner instead of this interface directly as 2025-09-07T07:42:03.0658689Z most changes can be expressed by changes in a single method. 2025-09-07T07:42:03.0659025Z 2025-09-07T07:42:03.0659228Z There are two usual patterns of extension: 2025-09-07T07:42:03.0659499Z 2025-09-07T07:42:03.0659819Z Rewriting state_dict. This is the simplest way to extend the load process as it 2025-09-07T07:42:03.0660372Z doesn't requite understanding the intrincacies of how LoadPlan works. We need 2025-09-07T07:42:03.0660916Z to keep a reference to the original state_dict as load happens in place so 2025-09-07T07:42:03.0661322Z we need to be able to perform it in place 2025-09-07T07:42:03.0661598Z 2025-09-07T07:42:03.0661780Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:42:03.0662094Z >>> class RenamePlanner(DefaultLoadPlanner): 2025-09-07T07:42:03.0662402Z >>> def set_up_planner( 2025-09-07T07:42:03.0662628Z >>> self, 2025-09-07T07:42:03.0662860Z >>> state_dict: STATE_DICT_TYPE, 2025-09-07T07:42:03.0663168Z >>> metadata: Metadata, 2025-09-07T07:42:03.0663439Z >>> is_coordinator: bool, 2025-09-07T07:42:03.0663680Z >>> ) -> None: 2025-09-07T07:42:03.0663955Z >>> self.original_state_dict = state_dict 2025-09-07T07:42:03.0664305Z >>> state_dict = {"foo_" + k: v for k, v in state_dict.items()} 2025-09-07T07:42:03.0664630Z >>> 2025-09-07T07:42:03.0664832Z >>> if self.flatten_sharded_tensors: 2025-09-07T07:42:03.0665165Z >>> state_dict = _flatten_sharded_tensors(state_dict) 2025-09-07T07:42:03.0665475Z >>> 2025-09-07T07:42:03.0665668Z >>> if self.flatten_state_dict: 2025-09-07T07:42:03.0666024Z >>> state_dict, self.mappings = flatten_state_dict(state_dict) 2025-09-07T07:42:03.0666360Z >>> 2025-09-07T07:42:03.0666546Z >>> self.state_dict = state_dict 2025-09-07T07:42:03.0666816Z >>> self.metadata = metadata 2025-09-07T07:42:03.0667109Z >>> self.is_coordinator = is_coordinator 2025-09-07T07:42:03.0667384Z >>> 2025-09-07T07:42:03.0667586Z >>> def load_bytes(self, read_item, value): 2025-09-07T07:42:03.0667882Z >>> # Remove the "foo_" prefix 2025-09-07T07:42:03.0668332Z >>> self.original_state_dict[read_item.dest_index.fqn[4:]] = torch.load(value, weights_only=False) 2025-09-07T07:42:03.0668796Z 2025-09-07T07:42:03.0668945Z 2025-09-07T07:42:03.0669270Z Modifying resolve_tensor and commit_tensor to handle load time transformation. 2025-09-07T07:42:03.0669670Z 2025-09-07T07:42:03.0669869Z >>> # xdoctest: +SKIP("undefined vars") 2025-09-07T07:42:03.0670194Z >>> class MetaModelMaterialize(DefaultSavePlanner): 2025-09-07T07:42:03.0670546Z >>> def resolve_tensor(self, read_item): 2025-09-07T07:42:03.0670869Z >>> tensor = super().resolve_tensor(read_item) 2025-09-07T07:42:03.0671211Z >>> return torch.empty_like(tensor, device="cpu") 2025-09-07T07:42:03.0671870Z >>> 2025-09-07T07:42:03.0672153Z >>> def commit_tensor(self, read_item, tensor): 2025-09-07T07:42:03.0672555Z >>> self.state_dict[read_item.dest_index.fqn] = tensor 2025-09-07T07:42:03.0672856Z 2025-09-07T07:42:03.0673262Z Original Error: IndentationError('expected an indented block', ('', 23, 0, '_._ = None\n')) 2025-09-07T07:42:03.0673738Z 2025-09-07T07:42:03.0673891Z _._ = None 2025-09-07T07:42:03.0674064Z ^ 2025-09-07T07:42:03.0674226Z warnings.warn(msg) 2025-09-07T07:42:03.0674427Z 2025-09-07T07:42:03.0674728Z --- Parse Warning: 11 / 17 --- 2025-09-07T07:42:03.0675779Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=FullStateDictConfig in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\distributed\fsdp\api.py line=295. 2025-09-07T07:42:03.0676886Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0677281Z 2025-09-07T07:42:03.0677551Z ``FullStateDictConfig`` is a config class meant to be used with 2025-09-07T07:42:03.0678005Z ``StateDictType.FULL_STATE_DICT``. We recommend enabling both 2025-09-07T07:42:03.0678461Z ``offload_to_cpu=True`` and ``rank0_only=True`` when saving full state 2025-09-07T07:42:03.0678931Z dicts to save GPU memory and CPU memory, respectively. This config class 2025-09-07T07:42:03.0679398Z is meant to be used via the :func:`state_dict_type` context manager as 2025-09-07T07:42:03.0679732Z follows: 2025-09-07T07:42:03.0679900Z 2025-09-07T07:42:03.0680099Z >>> # xdoctest: +SKIP("undefined variables") 2025-09-07T07:42:03.0680531Z >>> from torch.distributed.fsdp import FullyShardedDataParallel as FSDP 2025-09-07T07:42:03.0680962Z >>> fsdp = FSDP(model, auto_wrap_policy=...) 2025-09-07T07:42:03.0681353Z >>> cfg = FullStateDictConfig(offload_to_cpu=True, rank0_only=True) 2025-09-07T07:42:03.0681876Z >>> with FSDP.state_dict_type(fsdp, StateDictType.FULL_STATE_DICT, cfg): 2025-09-07T07:42:03.0682269Z >>> state = fsdp.state_dict() 2025-09-07T07:42:03.0682686Z >>> # `state` will be empty on non rank 0 and contain CPU tensors on rank 0. 2025-09-07T07:42:03.0683185Z >>> # To reload checkpoint for inference, finetuning, transfer learning, etc: 2025-09-07T07:42:03.0683713Z >>> model = model_fn() # Initialize model in preparation for wrapping with FSDP 2025-09-07T07:42:03.0684120Z >>> if dist.get_rank() == 0: 2025-09-07T07:42:03.0684451Z >>> # Load checkpoint only on rank 0 to avoid memory redundancy 2025-09-07T07:42:03.0684854Z >>> state_dict = torch.load("my_checkpoint.pt") 2025-09-07T07:42:03.0685185Z >>> model.load_state_dict(state_dict) 2025-09-07T07:42:03.0685599Z >>> # All ranks initialize FSDP module as usual. `sync_module_states` argument 2025-09-07T07:42:03.0686207Z >>> # communicates loaded checkpoint states from rank 0 to rest of the world. 2025-09-07T07:42:03.0686616Z >>> fsdp = FSDP( 2025-09-07T07:42:03.0686833Z ... model, 2025-09-07T07:42:03.0687066Z ... device_id=torch.cuda.current_device(), 2025-09-07T07:42:03.0687378Z ... auto_wrap_policy=..., 2025-09-07T07:42:03.0687641Z ... sync_module_states=True, 2025-09-07T07:42:03.0687899Z ... ) 2025-09-07T07:42:03.0688187Z >>> # After this point, all ranks have FSDP model with loaded checkpoint. 2025-09-07T07:42:03.0688541Z 2025-09-07T07:42:03.0688696Z Attributes: 2025-09-07T07:42:03.0688988Z rank0_only (bool): If ``True``, then only rank 0 saves the full state 2025-09-07T07:42:03.0689451Z dict, and nonzero ranks save an empty dict. If ``False``, then all 2025-09-07T07:42:03.0689871Z ranks save the full state dict. (Default: ``False``) 2025-09-07T07:42:03.0690572Z 2025-09-07T07:42:03.0690991Z Original Error: IndentationError('expected an indented block', ('', 11, 1, '_._ = None\n')) 2025-09-07T07:42:03.0691491Z 2025-09-07T07:42:03.0691649Z _._ = None 2025-09-07T07:42:03.0691832Z ^ 2025-09-07T07:42:03.0691998Z warnings.warn(msg) 2025-09-07T07:42:03.0692213Z 2025-09-07T07:42:03.0692520Z --- Parse Warning: 12 / 17 --- 2025-09-07T07:42:03.0693553Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=register_parametrization in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\parametrize.py line=424. 2025-09-07T07:42:03.0694675Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0695416Z Register a parametrization to a tensor in a module. 2025-09-07T07:42:03.0695731Z 2025-09-07T07:42:03.0696066Z Assume that ``tensor_name="weight"`` for simplicity. When accessing ``module.weight``, 2025-09-07T07:42:03.0696678Z the module will return the parametrized version ``parametrization(module.weight)``. 2025-09-07T07:42:03.0697282Z If the original tensor requires a gradient, the backward pass will differentiate 2025-09-07T07:42:03.0697882Z through :attr:`parametrization`, and the optimizer will update the tensor accordingly. 2025-09-07T07:42:03.0698316Z 2025-09-07T07:42:03.0698679Z The first time that a module registers a parametrization, this function will add an attribute 2025-09-07T07:42:03.0699289Z ``parametrizations`` to the module of type :class:`~ParametrizationList`. 2025-09-07T07:42:03.0699668Z 2025-09-07T07:42:03.0699991Z The list of parametrizations on the tensor ``weight`` will be accessible under 2025-09-07T07:42:03.0700443Z ``module.parametrizations.weight``. 2025-09-07T07:42:03.0700712Z 2025-09-07T07:42:03.0700920Z The original tensor will be accessible under 2025-09-07T07:42:03.0701279Z ``module.parametrizations.weight.original``. 2025-09-07T07:42:03.0701626Z 2025-09-07T07:42:03.0701950Z Parametrizations may be concatenated by registering several parametrizations 2025-09-07T07:42:03.0702426Z on the same attribute. 2025-09-07T07:42:03.0702639Z 2025-09-07T07:42:03.0702952Z The training mode of a registered parametrization is updated on registration 2025-09-07T07:42:03.0703400Z to match the training mode of the host module 2025-09-07T07:42:03.0703674Z 2025-09-07T07:42:03.0704037Z Parametrized parameters and buffers have an inbuilt caching system that can be activated 2025-09-07T07:42:03.0704514Z using the context manager :func:`cached`. 2025-09-07T07:42:03.0704787Z 2025-09-07T07:42:03.0705096Z A :attr:`parametrization` may optionally implement a method with signature 2025-09-07T07:42:03.0705489Z 2025-09-07T07:42:03.0705673Z .. code-block:: python 2025-09-07T07:42:03.0705909Z 2025-09-07T07:42:03.0706196Z def right_inverse(self, X: Tensor) -> Union[Tensor, Sequence[Tensor]] 2025-09-07T07:42:03.0706559Z 2025-09-07T07:42:03.0706886Z This method is called on the unparametrized tensor when the first parametrization 2025-09-07T07:42:03.0707408Z is registered to compute the initial value of the original tensor. 2025-09-07T07:42:03.0707971Z If this method is not implemented, the original tensor will be just the unparametrized tensor. 2025-09-07T07:42:03.0708410Z 2025-09-07T07:42:03.0708783Z If all the parametrizations registered on a tensor implement `right_inverse` it is possible 2025-09-07T07:42:03.0709415Z to initialize a parametrized tensor by assigning to it, as shown in the example below. 2025-09-07T07:42:03.0709841Z 2025-09-07T07:42:03.0710135Z It is possible for the first parametrization to depend on several inputs. 2025-09-07T07:42:03.0710653Z This may be implemented returning a tuple of tensors from ``right_inverse`` 2025-09-07T07:42:03.0711552Z (see the example implementation of a ``RankOne`` parametrization below). 2025-09-07T07:42:03.0711931Z 2025-09-07T07:42:03.0712335Z In this case, the unconstrained tensors are also located under ``module.parametrizations.weight`` 2025-09-07T07:42:03.0712854Z with names ``original0``, ``original1``,... 2025-09-07T07:42:03.0713137Z 2025-09-07T07:42:03.0713308Z .. note:: 2025-09-07T07:42:03.0713481Z 2025-09-07T07:42:03.0713806Z If unsafe=False (default) both the forward and right_inverse methods will be called 2025-09-07T07:42:03.0714277Z once to perform a number of consistency checks. 2025-09-07T07:42:03.0714789Z If unsafe=True, then right_inverse will be called if the tensor is not parametrized, 2025-09-07T07:42:03.0715232Z and nothing will be called otherwise. 2025-09-07T07:42:03.0715503Z 2025-09-07T07:42:03.0715665Z .. note:: 2025-09-07T07:42:03.0715843Z 2025-09-07T07:42:03.0716108Z In most situations, ``right_inverse`` will be a function such that 2025-09-07T07:42:03.0716500Z ``forward(right_inverse(X)) == X`` (see 2025-09-07T07:42:03.0716982Z `right inverse `_). 2025-09-07T07:42:03.0717560Z Sometimes, when the parametrization is not surjective, it may be reasonable 2025-09-07T07:42:03.0717976Z to relax this. 2025-09-07T07:42:03.0718181Z 2025-09-07T07:42:03.0718343Z .. warning:: 2025-09-07T07:42:03.0718527Z 2025-09-07T07:42:03.0718870Z If a parametrization depends on several inputs, :func:`~register_parametrization` 2025-09-07T07:42:03.0719450Z will register a number of new parameters. If such parametrization is registered 2025-09-07T07:42:03.0720018Z after the optimizer is created, these new parameters will need to be added manually 2025-09-07T07:42:03.0720576Z to the optimizer. See :meth:`torch.Optimizer.add_param_group`. 2025-09-07T07:42:03.0720914Z 2025-09-07T07:42:03.0721073Z Args: 2025-09-07T07:42:03.0721403Z module (nn.Module): module on which to register the parametrization 2025-09-07T07:42:03.0721902Z tensor_name (str): name of the parameter or buffer on which to register 2025-09-07T07:42:03.0722288Z the parametrization 2025-09-07T07:42:03.0722637Z parametrization (nn.Module): the parametrization to register 2025-09-07T07:42:03.0723001Z Keyword args: 2025-09-07T07:42:03.0723322Z unsafe (bool): a boolean flag that denotes whether the parametrization 2025-09-07T07:42:03.0723798Z may change the dtype and shape of the tensor. Default: `False` 2025-09-07T07:42:03.0724308Z Warning: the parametrization is not checked for consistency upon registration. 2025-09-07T07:42:03.0724763Z Enable this flag at your own risk. 2025-09-07T07:42:03.0725022Z 2025-09-07T07:42:03.0725181Z Raises: 2025-09-07T07:42:03.0725557Z ValueError: if the module does not have a parameter or a buffer named :attr:`tensor_name` 2025-09-07T07:42:03.0726087Z 2025-09-07T07:42:03.0726257Z Examples: 2025-09-07T07:42:03.0726499Z >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_LAPACK) 2025-09-07T07:42:03.0726816Z >>> import torch 2025-09-07T07:42:03.0727047Z >>> import torch.nn as nn 2025-09-07T07:42:03.0727352Z >>> import torch.nn.utils.parametrize as P 2025-09-07T07:42:03.0727635Z >>> 2025-09-07T07:42:03.0727834Z >>> class Symmetric(nn.Module): 2025-09-07T07:42:03.0728125Z >>> def forward(self, X): 2025-09-07T07:42:03.0728464Z >>> return X.triu() + X.triu(1).T # Return a symmetric matrix 2025-09-07T07:42:03.0728798Z >>> 2025-09-07T07:42:03.0729381Z >>> def right_inverse(self, A): 2025-09-07T07:42:03.0729675Z >>> return A.triu() 2025-09-07T07:42:03.0729917Z >>> 2025-09-07T07:42:03.0730110Z >>> m = nn.Linear(5, 5) 2025-09-07T07:42:03.0730435Z >>> P.register_parametrization(m, "weight", Symmetric()) 2025-09-07T07:42:03.0730909Z >>> print(torch.allclose(m.weight, m.weight.T)) # m.weight is now symmetric 2025-09-07T07:42:03.0731301Z True 2025-09-07T07:42:03.0731491Z >>> A = torch.rand(5, 5) 2025-09-07T07:42:03.0731758Z >>> A = A + A.T # A is now symmetric 2025-09-07T07:42:03.0732117Z >>> m.weight = A # Initialize the weight to be the symmetric matrix A 2025-09-07T07:42:03.0732511Z >>> print(torch.allclose(m.weight, A)) 2025-09-07T07:42:03.0732919Z True 2025-09-07T07:42:03.0733106Z 2025-09-07T07:42:03.0733289Z >>> class RankOne(nn.Module): 2025-09-07T07:42:03.0733622Z >>> def forward(self, x, y): 2025-09-07T07:42:03.0733931Z >>> # Form a rank 1 matrix multiplying two vectors 2025-09-07T07:42:03.0734284Z >>> return x.unsqueeze(-1) @ y.unsqueeze(-2) 2025-09-07T07:42:03.0734577Z >>> 2025-09-07T07:42:03.0734776Z >>> def right_inverse(self, Z): 2025-09-07T07:42:03.0735082Z >>> # Project Z onto the rank 1 matrices 2025-09-07T07:42:03.0735421Z >>> U, S, Vh = torch.linalg.svd(Z, full_matrices=False) 2025-09-07T07:42:03.0735771Z >>> # Return rescaled singular vectors 2025-09-07T07:42:03.0736076Z >>> s0_sqrt = S[0].sqrt().unsqueeze(-1) 2025-09-07T07:42:03.0736421Z >>> return U[..., :, 0] * s0_sqrt, Vh[..., 0, :] * s0_sqrt 2025-09-07T07:42:03.0736734Z >>> 2025-09-07T07:42:03.0736966Z >>> linear_rank_one = P.register_parametrization( 2025-09-07T07:42:03.0737308Z ... nn.Linear(4, 4), "weight", RankOne() 2025-09-07T07:42:03.0737580Z ... ) 2025-09-07T07:42:03.0737909Z >>> print(torch.linalg.matrix_rank(linear_rank_one.weight).item()) 2025-09-07T07:42:03.0738300Z 1 2025-09-07T07:42:03.0738485Z 2025-09-07T07:42:03.0738669Z 2025-09-07T07:42:03.0739095Z Original Error: IndentationError('expected an indented block', ('', 3, 0, '_._ = None\n')) 2025-09-07T07:42:03.0739631Z 2025-09-07T07:42:03.0739791Z _._ = None 2025-09-07T07:42:03.0739961Z ^ 2025-09-07T07:42:03.0740126Z warnings.warn(msg) 2025-09-07T07:42:03.0740337Z 2025-09-07T07:42:03.0740656Z --- Parse Warning: 13 / 17 --- 2025-09-07T07:42:03.0741644Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=ReduceLROnPlateau in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\optim\lr_scheduler.py line=1236. 2025-09-07T07:42:03.0742742Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0743244Z Reduce learning rate when a metric has stopped improving. 2025-09-07T07:42:03.0743575Z 2025-09-07T07:42:03.0743840Z Models often benefit from reducing the learning rate by a factor 2025-09-07T07:42:03.0744295Z of 2-10 once learning stagnates. This scheduler reads a metrics 2025-09-07T07:42:03.0744778Z quantity and if no improvement is seen for a 'patience' number 2025-09-07T07:42:03.0745204Z of epochs, the learning rate is reduced. 2025-09-07T07:42:03.0745470Z 2025-09-07T07:42:03.0745640Z Args: 2025-09-07T07:42:03.0745861Z optimizer (Optimizer): Wrapped optimizer. 2025-09-07T07:42:03.0746223Z mode (str): One of `min`, `max`. In `min` mode, lr will 2025-09-07T07:42:03.0746605Z be reduced when the quantity monitored has stopped 2025-09-07T07:42:03.0746981Z decreasing; in `max` mode it will be reduced when the 2025-09-07T07:42:03.0747796Z quantity monitored has stopped increasing. Default: 'min'. 2025-09-07T07:42:03.0748221Z factor (float): Factor by which the learning rate will be 2025-09-07T07:42:03.0748605Z reduced. new_lr = lr * factor. Default: 0.1. 2025-09-07T07:42:03.0749024Z patience (int): The number of allowed epochs with no improvement after 2025-09-07T07:42:03.0749443Z which the learning rate will be reduced. 2025-09-07T07:42:03.0749853Z For example, consider the case of having no patience (`patience = 0`). 2025-09-07T07:42:03.0750537Z In the first epoch, a baseline is established and is always considered good as there's no previous baseline. 2025-09-07T07:42:03.0751234Z In the second epoch, if the performance is worse than the baseline, 2025-09-07T07:42:03.0751655Z we have what is considered an intolerable epoch. 2025-09-07T07:42:03.0752138Z Since the count of intolerable epochs (1) is greater than the patience level (0), 2025-09-07T07:42:03.0752641Z the learning rate is reduced at the end of this epoch. 2025-09-07T07:42:03.0753179Z From the third epoch onwards, the learning rate continues to be reduced at the end of each epoch 2025-09-07T07:42:03.0753846Z if the performance is worse than the baseline. If the performance improves or remains the same, 2025-09-07T07:42:03.0753950Z the learning rate is not adjusted. 2025-09-07T07:42:03.0754030Z Default: 10. 2025-09-07T07:42:03.0754205Z threshold (float): Threshold for measuring the new optimum, 2025-09-07T07:42:03.0754345Z to only focus on significant changes. Default: 1e-4. 2025-09-07T07:42:03.0754499Z threshold_mode (str): One of `rel`, `abs`. In `rel` mode, 2025-09-07T07:42:03.0754645Z dynamic_threshold = best * ( 1 + threshold ) in 'max' 2025-09-07T07:42:03.0754810Z mode or best * ( 1 - threshold ) in `min` mode. 2025-09-07T07:42:03.0754944Z In `abs` mode, dynamic_threshold = best + threshold in 2025-09-07T07:42:03.0755139Z `max` mode or best - threshold in `min` mode. Default: 'rel'. 2025-09-07T07:42:03.0755298Z cooldown (int): Number of epochs to wait before resuming 2025-09-07T07:42:03.0755447Z normal operation after lr has been reduced. Default: 0. 2025-09-07T07:42:03.0755582Z min_lr (float or list): A scalar or a list of scalars. A 2025-09-07T07:42:03.0755729Z lower bound on the learning rate of all param groups 2025-09-07T07:42:03.0755843Z or each group respectively. Default: 0. 2025-09-07T07:42:03.0755994Z eps (float): Minimal decay applied to lr. If the difference 2025-09-07T07:42:03.0756196Z between new and old lr is smaller than eps, the update is 2025-09-07T07:42:03.0756289Z ignored. Default: 1e-8. 2025-09-07T07:42:03.0756353Z 2025-09-07T07:42:03.0756423Z Example: 2025-09-07T07:42:03.0756513Z >>> # xdoctest: +SKIP 2025-09-07T07:42:03.0756720Z >>> optimizer = torch.optim.SGD(model.parameters(), lr=0.1, momentum=0.9) 2025-09-07T07:42:03.0756896Z >>> scheduler = ReduceLROnPlateau(optimizer, "min") 2025-09-07T07:42:03.0756992Z >>> for epoch in range(10): 2025-09-07T07:42:03.0757067Z >>> train(...) 2025-09-07T07:42:03.0757159Z >>> val_loss = validate(...) 2025-09-07T07:42:03.0757297Z >>> # Note that step should be called after validate() 2025-09-07T07:42:03.0757389Z >>> scheduler.step(val_loss) 2025-09-07T07:42:03.0757461Z 2025-09-07T07:42:03.0757639Z .. image:: ../scripts/lr_scheduler_images/ReduceLROnPlateau.png 2025-09-07T07:42:03.0757716Z 2025-09-07T07:42:03.0758071Z Original Error: IndentationError('unexpected indent', ('', 8, 4, ' scheduler.step(val_loss)\n')) 2025-09-07T07:42:03.0758522Z 2025-09-07T07:42:03.0758620Z scheduler.step(val_loss) 2025-09-07T07:42:03.0758685Z ^ 2025-09-07T07:42:03.0758771Z warnings.warn(msg) 2025-09-07T07:42:03.0758838Z 2025-09-07T07:42:03.0759072Z --- Parse Warning: 14 / 17 --- 2025-09-07T07:42:03.0759774Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=vmap in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\apis.py line=39. 2025-09-07T07:42:03.0759996Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0760071Z 2025-09-07T07:42:03.0760304Z vmap is the vectorizing map; ``vmap(func)`` returns a new function that 2025-09-07T07:42:03.0760479Z maps ``func`` over some dimension of the inputs. Semantically, vmap 2025-09-07T07:42:03.0760682Z pushes the map into PyTorch operations called by ``func``, effectively 2025-09-07T07:42:03.0760779Z vectorizing those operations. 2025-09-07T07:42:03.0760843Z 2025-09-07T07:42:03.0761030Z vmap is useful for handling batch dimensions: one can write a function 2025-09-07T07:42:03.0761217Z ``func`` that runs on examples and then lift it to a function that can 2025-09-07T07:42:03.0761400Z take batches of examples with ``vmap(func)``. vmap can also be used to 2025-09-07T07:42:03.0761550Z compute batched gradients when composed with autograd. 2025-09-07T07:42:03.0761624Z 2025-09-07T07:42:03.0761696Z .. note:: 2025-09-07T07:42:03.0761857Z :func:`torch.vmap` is aliased to :func:`torch.func.vmap` for 2025-09-07T07:42:03.0761975Z convenience. Use whichever one you'd like. 2025-09-07T07:42:03.0762038Z 2025-09-07T07:42:03.0762158Z Args: 2025-09-07T07:42:03.0762344Z func (function): A Python function that takes one or more arguments. 2025-09-07T07:42:03.0762451Z Must return one or more Tensors. 2025-09-07T07:42:03.0762708Z in_dims (int or nested structure): Specifies which dimension of the 2025-09-07T07:42:03.0762859Z inputs should be mapped over. ``in_dims`` should have a 2025-09-07T07:42:03.0763074Z structure like the inputs. If the ``in_dim`` for a particular 2025-09-07T07:42:03.0763232Z input is None, then that indicates there is no map dimension. 2025-09-07T07:42:03.0763305Z Default: 0. 2025-09-07T07:42:03.0763469Z out_dims (int or Tuple[int]): Specifies where the mapped dimension 2025-09-07T07:42:03.0763650Z should appear in the outputs. If ``out_dims`` is a Tuple, then 2025-09-07T07:42:03.0763787Z it should have one element per output. Default: 0. 2025-09-07T07:42:03.0763949Z randomness (str): Specifies whether the randomness in this 2025-09-07T07:42:03.0764147Z vmap should be the same or different across batches. If 'different', 2025-09-07T07:42:03.0764323Z the randomness for each batch will be different. If 'same', the 2025-09-07T07:42:03.0764516Z randomness will be the same across batches. If 'error', any calls to 2025-09-07T07:42:03.0764709Z random functions will error. Default: 'error'. WARNING: this flag 2025-09-07T07:42:03.0764891Z only applies to random PyTorch operations and does not apply to 2025-09-07T07:42:03.0765005Z Python's random module or numpy randomness. 2025-09-07T07:42:03.0765215Z chunk_size (None or int): If None (default), apply a single vmap over inputs. 2025-09-07T07:42:03.0765405Z If not None, then compute the vmap :attr:`chunk_size` samples at a time. 2025-09-07T07:42:03.0765634Z Note that :attr:`chunk_size=1` is equivalent to computing the vmap with a for-loop. 2025-09-07T07:42:03.0765932Z If you run into memory issues computing the vmap, please try a non-None chunk_size. 2025-09-07T07:42:03.0766044Z 2025-09-07T07:42:03.0766115Z Returns: 2025-09-07T07:42:03.0766288Z Returns a new "batched" function. It takes the same inputs as 2025-09-07T07:42:03.0766456Z ``func``, except each input has an extra dimension at the index 2025-09-07T07:42:03.0766623Z specified by ``in_dims``. It takes returns the same outputs as 2025-09-07T07:42:03.0766782Z ``func``, except each output has an extra dimension at the index 2025-09-07T07:42:03.0766874Z specified by ``out_dims``. 2025-09-07T07:42:03.0766934Z 2025-09-07T07:42:03.0767008Z .. warning: 2025-09-07T07:42:03.0767180Z :func:`vmap` works best with functional-style code. Please do not 2025-09-07T07:42:03.0767350Z perform any side-effects in ``func``, with the exception of 2025-09-07T07:42:03.0767590Z in-place PyTorch operations. Examples of side-effects include mutating 2025-09-07T07:42:03.0767832Z Python data structures and assigning values to variables not captured 2025-09-07T07:42:03.0767916Z in ``func``. 2025-09-07T07:42:03.0767979Z 2025-09-07T07:42:03.0768187Z One example of using :func:`vmap` is to compute batched dot products. PyTorch 2025-09-07T07:42:03.0768424Z doesn't provide a batched ``torch.dot`` API; instead of unsuccessfully 2025-09-07T07:42:03.0768617Z rummaging through docs, use :func:`vmap` to construct a new function. 2025-09-07T07:42:03.0768678Z 2025-09-07T07:42:03.0768764Z >>> torch.dot # [D], [D] -> [] 2025-09-07T07:42:03.0768948Z >>> batched_dot = torch.func.vmap(torch.dot) # [N, D], [N, D] -> [N] 2025-09-07T07:42:03.0769055Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-09-07T07:42:03.0769139Z >>> batched_dot(x, y) 2025-09-07T07:42:03.0769210Z 2025-09-07T07:42:03.0769409Z :func:`vmap` can be helpful in hiding batch dimensions, leading to a simpler 2025-09-07T07:42:03.0769499Z model authoring experience. 2025-09-07T07:42:03.0769565Z 2025-09-07T07:42:03.0769663Z >>> batch_size, feature_size = 3, 5 2025-09-07T07:42:03.0769849Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-09-07T07:42:03.0769915Z >>> 2025-09-07T07:42:03.0770046Z >>> def model(feature_vec): 2025-09-07T07:42:03.0770160Z >>> # Very simple linear model with activation 2025-09-07T07:42:03.0770438Z Running test_autoload_disable 1/1 ... [2025-09-07 07:42:03.036896] 2025-09-07T07:42:03.0770558Z >>> return feature_vec.dot(weights).relu() 2025-09-07T07:42:03.0770624Z >>> 2025-09-07T07:42:03.0770755Z >>> examples = torch.randn(batch_size, feature_size) 2025-09-07T07:42:03.0770858Z >>> result = torch.vmap(model)(examples) 2025-09-07T07:42:03.0770937Z 2025-09-07T07:42:03.0771161Z :func:`vmap` can also help vectorize computations that were previously difficult 2025-09-07T07:42:03.0771363Z or impossible to batch. One example is higher-order gradient computation. 2025-09-07T07:42:03.0771579Z The PyTorch autograd engine computes vjps (vector-Jacobian products). 2025-09-07T07:42:03.0771783Z Computing a full Jacobian matrix for some function f: R^N -> R^N usually 2025-09-07T07:42:03.0772007Z requires N calls to ``autograd.grad``, one per Jacobian row. Using :func:`vmap`, 2025-09-07T07:42:03.0772225Z we can vectorize the whole computation, computing the Jacobian in a single 2025-09-07T07:42:03.0772310Z call to ``autograd.grad``. 2025-09-07T07:42:03.0772374Z 2025-09-07T07:42:03.0772439Z >>> # Setup 2025-09-07T07:42:03.0772515Z >>> N = 5 2025-09-07T07:42:03.0772590Z >>> f = lambda x: x**2 2025-09-07T07:42:03.0772696Z >>> x = torch.randn(N, requires_grad=True) 2025-09-07T07:42:03.0772768Z >>> y = f(x) 2025-09-07T07:42:03.0772848Z >>> I_N = torch.eye(N) 2025-09-07T07:42:03.0772915Z >>> 2025-09-07T07:42:03.0773002Z >>> # Sequential approach 2025-09-07T07:42:03.0773205Z >>> jacobian_rows = [torch.autograd.grad(y, x, v, retain_graph=True)[0] 2025-09-07T07:42:03.0773339Z >>> for v in I_N.unbind()] 2025-09-07T07:42:03.0773440Z >>> jacobian = torch.stack(jacobian_rows) 2025-09-07T07:42:03.0773555Z >>> 2025-09-07T07:42:03.0773656Z >>> # vectorized gradient computation 2025-09-07T07:42:03.0773734Z >>> def get_vjp(v): 2025-09-07T07:42:03.0773837Z >>> return torch.autograd.grad(y, x, v) 2025-09-07T07:42:03.0773941Z >>> jacobian = torch.vmap(get_vjp)(I_N) 2025-09-07T07:42:03.0774042Z 2025-09-07T07:42:03.0774282Z :func:`vmap` can also be nested, producing an output with multiple batched dimensions 2025-09-07T07:42:03.0774358Z 2025-09-07T07:42:03.0774447Z >>> torch.dot # [D], [D] -> [] 2025-09-07T07:42:03.0774574Z >>> batched_dot = torch.vmap( 2025-09-07T07:42:03.0774673Z ... torch.vmap(torch.dot) 2025-09-07T07:42:03.0774775Z ... ) # [N1, N0, D], [N1, N0, D] -> [N1, N0] 2025-09-07T07:42:03.0774900Z >>> x, y = torch.randn(2, 3, 5), torch.randn(2, 3, 5) 2025-09-07T07:42:03.0775004Z >>> batched_dot(x, y) # tensor of size [2, 3] 2025-09-07T07:42:03.0775078Z 2025-09-07T07:42:03.0775296Z If the inputs are not batched along the first dimension, ``in_dims`` specifies 2025-09-07T07:42:03.0775430Z the dimension that each inputs are batched along as 2025-09-07T07:42:03.0775505Z 2025-09-07T07:42:03.0775595Z >>> torch.dot # [N], [N] -> [] 2025-09-07T07:42:03.0775792Z >>> batched_dot = torch.vmap(torch.dot, in_dims=1) # [N, D], [N, D] -> [D] 2025-09-07T07:42:03.0775899Z >>> x, y = torch.randn(2, 5), torch.randn(2, 5) 2025-09-07T07:42:03.0775984Z >>> batched_dot( 2025-09-07T07:42:03.0776051Z ... x, y 2025-09-07T07:42:03.0776217Z ... ) # output is [5] instead of [2] if batched along the 0th dimension 2025-09-07T07:42:03.0776290Z 2025-09-07T07:42:03.0776518Z If there are multiple inputs each of which is batched along different dimensions, 2025-09-07T07:42:03.0776733Z ``in_dims`` must be a tuple with the batch dimension for each input as 2025-09-07T07:42:03.0776810Z 2025-09-07T07:42:03.0777171Z >>> torch.dot # [D], [D] -> [] 2025-09-07T07:42:03.0777385Z >>> batched_dot = torch.vmap(torch.dot, in_dims=(0, None)) # [N, D], [D] -> [N] 2025-09-07T07:42:03.0777489Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-09-07T07:42:03.0777575Z >>> batched_dot( 2025-09-07T07:42:03.0777648Z ... x, y 2025-09-07T07:42:03.0777819Z ... ) # second arg doesn't have a batch dim because in_dim[1] was None 2025-09-07T07:42:03.0777891Z 2025-09-07T07:42:03.0778099Z If the input is a Python struct, ``in_dims`` must be a tuple containing a struct 2025-09-07T07:42:03.0778195Z matching the shape of the input: 2025-09-07T07:42:03.0778258Z 2025-09-07T07:42:03.0778390Z >>> f = lambda dict: torch.dot(dict["x"], dict["y"]) 2025-09-07T07:42:03.0778497Z >>> x, y = torch.randn(2, 5), torch.randn(5) 2025-09-07T07:42:03.0778577Z >>> input = {"x": x, "y": y} 2025-09-07T07:42:03.0778737Z >>> batched_dot = torch.vmap(f, in_dims=({"x": 0, "y": None},)) 2025-09-07T07:42:03.0778821Z >>> batched_dot(input) 2025-09-07T07:42:03.0778883Z 2025-09-07T07:42:03.0779121Z By default, the output is batched along the first dimension. However, it can be batched 2025-09-07T07:42:03.0779286Z along any dimension by using ``out_dims`` 2025-09-07T07:42:03.0779352Z 2025-09-07T07:42:03.0779431Z >>> f = lambda x: x**2 2025-09-07T07:42:03.0779522Z >>> x = torch.randn(2, 5) 2025-09-07T07:42:03.0779628Z >>> batched_pow = torch.vmap(f, out_dims=1) 2025-09-07T07:42:03.0779749Z >>> batched_pow(x) # [5, 2] 2025-09-07T07:42:03.0779822Z 2025-09-07T07:42:03.0780087Z For any function that uses kwargs, the returned function will not batch the kwargs but will 2025-09-07T07:42:03.0780207Z accept kwargs 2025-09-07T07:42:03.0780269Z 2025-09-07T07:42:03.0780359Z >>> x = torch.randn([2, 5]) 2025-09-07T07:42:03.0780438Z >>> def fn(x, scale=4.): 2025-09-07T07:42:03.0780516Z >>> return x * scale 2025-09-07T07:42:03.0780592Z >>> 2025-09-07T07:42:03.0780682Z >>> batched_pow = torch.vmap(fn) 2025-09-07T07:42:03.0780811Z >>> assert torch.allclose(batched_pow(x), x * 4) 2025-09-07T07:42:03.0781007Z >>> batched_pow(x, scale=x) # scale is not batched, output has shape [2, 2, 5] 2025-09-07T07:42:03.0781076Z 2025-09-07T07:42:03.0781155Z .. note:: 2025-09-07T07:42:03.0781347Z vmap does not provide general autobatching or handle variable-length 2025-09-07T07:42:03.0781439Z sequences out of the box. 2025-09-07T07:42:03.0781538Z 2025-09-07T07:42:03.0781855Z Original Error: IndentationError('expected an indented block', ('', 5, 1, '_._ = None\n')) 2025-09-07T07:42:03.0781925Z 2025-09-07T07:42:03.0781998Z _._ = None 2025-09-07T07:42:03.0782062Z ^ 2025-09-07T07:42:03.0782141Z warnings.warn(msg) 2025-09-07T07:42:03.0782218Z 2025-09-07T07:42:03.0782451Z --- Parse Warning: 15 / 17 --- 2025-09-07T07:42:03.0783158Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=grad in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_functorch\apis.py line=306. 2025-09-07T07:42:03.0783384Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0783591Z ``grad`` operator helps computing gradients of ``func`` with respect to the 2025-09-07T07:42:03.0783762Z input(s) specified by ``argnums``. This operator can be nested to 2025-09-07T07:42:03.0783858Z compute higher-order gradients. 2025-09-07T07:42:03.0783930Z 2025-09-07T07:42:03.0783996Z Args: 2025-09-07T07:42:03.0784181Z func (Callable): A Python function that takes one or more arguments. 2025-09-07T07:42:03.0784789Z Must return a single-element Tensor. If specified ``has_aux`` equals ``True``, 2025-09-07T07:42:03.0785118Z function can return a tuple of single-element Tensor and other auxiliary objects: 2025-09-07T07:42:03.0785203Z ``(output, aux)``. 2025-09-07T07:42:03.0785491Z argnums (int or Tuple[int]): Specifies arguments to compute gradients with respect to. 2025-09-07T07:42:03.0785668Z ``argnums`` can be single integer or tuple of integers. Default: 0. 2025-09-07T07:42:03.0785858Z has_aux (bool): Flag indicating that ``func`` returns a tensor and other 2025-09-07T07:42:03.0786002Z auxiliary objects: ``(output, aux)``. Default: False. 2025-09-07T07:42:03.0786079Z 2025-09-07T07:42:03.0786149Z Returns: 2025-09-07T07:42:03.0786394Z Function to compute gradients with respect to its inputs. By default, the output of 2025-09-07T07:42:03.0786611Z the function is the gradient tensor(s) with respect to the first argument. 2025-09-07T07:42:03.0786850Z If specified ``has_aux`` equals ``True``, tuple of gradients and output auxiliary objects 2025-09-07T07:42:03.0787072Z is returned. If ``argnums`` is a tuple of integers, a tuple of output gradients with 2025-09-07T07:42:03.0787200Z respect to each ``argnums`` value is returned. 2025-09-07T07:42:03.0787267Z 2025-09-07T07:42:03.0787353Z Example of using ``grad``: 2025-09-07T07:42:03.0787414Z 2025-09-07T07:42:03.0787504Z >>> # xdoctest: +SKIP 2025-09-07T07:42:03.0787596Z >>> from torch.func import grad 2025-09-07T07:42:03.0787678Z >>> x = torch.randn([]) 2025-09-07T07:42:03.0787793Z >>> cos_x = grad(lambda x: torch.sin(x))(x) 2025-09-07T07:42:03.0787900Z >>> assert torch.allclose(cos_x, x.cos()) 2025-09-07T07:42:03.0788007Z >>> 2025-09-07T07:42:03.0788100Z >>> # Second-order gradients 2025-09-07T07:42:03.0788238Z >>> neg_sin_x = grad(grad(lambda x: torch.sin(x)))(x) 2025-09-07T07:42:03.0788357Z >>> assert torch.allclose(neg_sin_x, -x.sin()) 2025-09-07T07:42:03.0788419Z 2025-09-07T07:42:03.0788645Z When composed with ``vmap``, ``grad`` can be used to compute per-sample-gradients: 2025-09-07T07:42:03.0788709Z 2025-09-07T07:42:03.0788791Z >>> # xdoctest: +SKIP 2025-09-07T07:42:03.0788903Z >>> from torch.func import grad, vmap 2025-09-07T07:42:03.0789001Z >>> batch_size, feature_size = 3, 5 2025-09-07T07:42:03.0789067Z >>> 2025-09-07T07:42:03.0789169Z >>> def model(weights, feature_vec): 2025-09-07T07:42:03.0789341Z >>> # Very simple linear model with activation 2025-09-07T07:42:03.0789438Z >>> assert feature_vec.dim() == 1 2025-09-07T07:42:03.0789550Z >>> return feature_vec.dot(weights).relu() 2025-09-07T07:42:03.0789625Z >>> 2025-09-07T07:42:03.0789741Z >>> def compute_loss(weights, example, target): 2025-09-07T07:42:03.0789840Z >>> y = model(weights, example) 2025-09-07T07:42:03.0789953Z >>> return ((y - target) ** 2).mean() # MSELoss 2025-09-07T07:42:03.0790032Z >>> 2025-09-07T07:42:03.0790190Z >>> weights = torch.randn(feature_size, requires_grad=True) 2025-09-07T07:42:03.0790318Z >>> examples = torch.randn(batch_size, feature_size) 2025-09-07T07:42:03.0790434Z >>> targets = torch.randn(batch_size) 2025-09-07T07:42:03.0790539Z >>> inputs = (weights, examples, targets) 2025-09-07T07:42:03.0790788Z >>> grad_weight_per_example = vmap(grad(compute_loss), in_dims=(None, 0, 0))( 2025-09-07T07:42:03.0790872Z ... *inputs 2025-09-07T07:42:03.0790941Z ... ) 2025-09-07T07:42:03.0791013Z 2025-09-07T07:42:03.0791241Z Example of using ``grad`` with ``has_aux`` and ``argnums``: 2025-09-07T07:42:03.0791323Z 2025-09-07T07:42:03.0791404Z >>> # xdoctest: +SKIP 2025-09-07T07:42:03.0791534Z >>> from torch.func import grad 2025-09-07T07:42:03.0791632Z >>> def my_loss_func(y, y_pred): 2025-09-07T07:42:03.0791746Z >>> loss_per_sample = (0.5 * y_pred - y) ** 2 2025-09-07T07:42:03.0791847Z >>> loss = loss_per_sample.mean() 2025-09-07T07:42:03.0791953Z >>> return loss, (y_pred, loss_per_sample) 2025-09-07T07:42:03.0792028Z >>> 2025-09-07T07:42:03.0792157Z >>> fn = grad(my_loss_func, argnums=(0, 1), has_aux=True) 2025-09-07T07:42:03.0792242Z >>> y_true = torch.rand(4) 2025-09-07T07:42:03.0792362Z >>> y_preds = torch.rand(4, requires_grad=True) 2025-09-07T07:42:03.0792449Z >>> out = fn(y_true, y_preds) 2025-09-07T07:42:03.0792669Z >>> # > output is ((grads w.r.t y_true, grads w.r.t y_preds), (y_pred, loss_per_sample)) 2025-09-07T07:42:03.0792743Z 2025-09-07T07:42:03.0792816Z .. note:: 2025-09-07T07:42:03.0792964Z Using PyTorch ``torch.no_grad`` together with ``grad``. 2025-09-07T07:42:03.0793031Z 2025-09-07T07:42:03.0793160Z Case 1: Using ``torch.no_grad`` inside a function: 2025-09-07T07:42:03.0793225Z 2025-09-07T07:42:03.0793308Z >>> # xdoctest: +SKIP 2025-09-07T07:42:03.0793392Z >>> def f(x): 2025-09-07T07:42:03.0793480Z >>> with torch.no_grad(): 2025-09-07T07:42:03.0793555Z >>> c = x ** 2 2025-09-07T07:42:03.0793636Z >>> return x - c 2025-09-07T07:42:03.0793711Z 2025-09-07T07:42:03.0793885Z In this case, ``grad(f)(x)`` will respect the inner ``torch.no_grad``. 2025-09-07T07:42:03.0793950Z 2025-09-07T07:42:03.0794185Z Case 2: Using ``grad`` inside ``torch.no_grad`` context manager: 2025-09-07T07:42:03.0794249Z 2025-09-07T07:42:03.0794332Z >>> # xdoctest: +SKIP 2025-09-07T07:42:03.0794418Z >>> with torch.no_grad(): 2025-09-07T07:42:03.0794507Z >>> grad(f)(x) 2025-09-07T07:42:03.0794573Z 2025-09-07T07:42:03.0794771Z In this case, ``grad`` will respect the inner ``torch.no_grad``, but not the 2025-09-07T07:42:03.0794988Z outer one. This is because ``grad`` is a "function transform": its result 2025-09-07T07:42:03.0795184Z should not depend on the result of a context manager outside of ``f``. 2025-09-07T07:42:03.0795247Z 2025-09-07T07:42:03.0795315Z 2025-09-07T07:42:03.0795687Z Original Error: IndentationError('expected an indented block', ('', 6, 1, '_._ = None\n')) 2025-09-07T07:42:03.0795751Z 2025-09-07T07:42:03.0795816Z _._ = None 2025-09-07T07:42:03.0795891Z ^ 2025-09-07T07:42:03.0795974Z warnings.warn(msg) 2025-09-07T07:42:03.0796038Z 2025-09-07T07:42:03.0796261Z --- Parse Warning: 16 / 17 --- 2025-09-07T07:42:03.0797170Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=CustomOpDef.register_fake in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\custom_ops.py line=397. 2025-09-07T07:42:03.0797396Z Caused by: DoctestParseError('Failed to parse doctest in _package_groups') 2025-09-07T07:42:03.0797555Z Register a FakeTensor implementation for this custom op. 2025-09-07T07:42:03.0797634Z 2025-09-07T07:42:03.0797853Z This is necessary to get the operator to work efficiently with torch.compile. 2025-09-07T07:42:03.0797917Z 2025-09-07T07:42:03.0798121Z The Fake impl (sometimes also known as a meta kernel or abstract impl) 2025-09-07T07:42:03.0798319Z specifies the behavior of this operator on Tensors that carry no data. 2025-09-07T07:42:03.0798494Z Given some input Tensors with certain properties 2025-09-07T07:42:03.0798731Z (sizes/strides/storage_offset/device), it specifies what the properties of 2025-09-07T07:42:03.0798856Z the output Tensors are. 2025-09-07T07:42:03.0798924Z 2025-09-07T07:42:03.0799105Z Please see :func:`torch.library.register_fake` for more details. 2025-09-07T07:42:03.0799181Z 2025-09-07T07:42:03.0799252Z Args: 2025-09-07T07:42:03.0799403Z fn (Callable): The function to register as the FakeTensor 2025-09-07T07:42:03.0799493Z implementation. 2025-09-07T07:42:03.0799556Z 2025-09-07T07:42:03.0799630Z Examples: 2025-09-07T07:42:03.0799708Z >>> import torch 2025-09-07T07:42:03.0799807Z >>> import numpy as np 2025-09-07T07:42:03.0799899Z >>> from torch import Tensor 2025-09-07T07:42:03.0799967Z >>> 2025-09-07T07:42:03.0800143Z >>> # Example 1: an operator without data-dependent output shape 2025-09-07T07:42:03.0800312Z >>> @torch.library.custom_op("mylib::linear", mutates_args=()) 2025-09-07T07:42:03.0800481Z >>> def linear(x: Tensor, weight: Tensor, bias: Tensor) -> Tensor: 2025-09-07T07:42:03.0800589Z >>> return (x @ weight.t()) + bias 2025-09-07T07:42:03.0800659Z >>> 2025-09-07T07:42:03.0800747Z >>> @linear.register_fake 2025-09-07T07:42:03.0800839Z >>> def _(x, weight, bias): 2025-09-07T07:42:03.0800934Z >>> assert x.dim() == 2 2025-09-07T07:42:03.0801026Z >>> assert weight.dim() == 2 2025-09-07T07:42:03.0801115Z >>> assert bias.dim() == 1 2025-09-07T07:42:03.0801234Z >>> assert x.shape[1] == weight.shape[1] 2025-09-07T07:42:03.0801346Z >>> assert weight.shape[0] == bias.shape[0] 2025-09-07T07:42:03.0801493Z >>> assert x.device == weight.device 2025-09-07T07:42:03.0801631Z >>> return x.new_empty(x.size(0), weight.size(0)) 2025-09-07T07:42:03.0801702Z >>> 2025-09-07T07:42:03.0801790Z >>> x = torch.randn(2, 2) 2025-09-07T07:42:03.0801882Z >>> weight = torch.randn(2, 2) 2025-09-07T07:42:03.0801976Z >>> bias = torch.randn(2) 2025-09-07T07:42:03.0802137Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-09-07T07:42:03.0802302Z >>> out = torch.compile(linear, fullgraph=True)(x, weight, bias) 2025-09-07T07:42:03.0802426Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-09-07T07:42:03.0802721Z >>> assert torch.allclose(out, torch.nn.functional.linear(x, weight, bias)) 2025-09-07T07:42:03.0802788Z >>> 2025-09-07T07:42:03.0802940Z >>> # Example 2: an operator with data-dependent output shape 2025-09-07T07:42:03.0803127Z >>> @torch.library.custom_op("mylib::nonzero", mutates_args=()) 2025-09-07T07:42:03.0803225Z >>> def nonzero(x: Tensor) -> Tensor: 2025-09-07T07:42:03.0803315Z >>> x_np = x.cpu().numpy() 2025-09-07T07:42:03.0803439Z >>> res = np.stack(np.nonzero(x_np), axis=1) 2025-09-07T07:42:03.0803550Z >>> return torch.tensor(res, device=x.device) 2025-09-07T07:42:03.0803614Z >>> 2025-09-07T07:42:03.0803723Z >>> @nonzero.register_fake 2025-09-07T07:42:03.0803804Z >>> def _(x): 2025-09-07T07:42:03.0803931Z >>> # Number of nonzero-elements is data-dependent. 2025-09-07T07:42:03.0804087Z >>> # Since we cannot peek at the data in an abstract impl, 2025-09-07T07:42:03.0804232Z >>> # we use the ctx object to construct a new symint that 2025-09-07T07:42:03.0804349Z >>> # represents the data-dependent size. 2025-09-07T07:42:03.0804489Z >>> ctx = torch.library.get_ctx() 2025-09-07T07:42:03.0804597Z >>> nnz = ctx.new_dynamic_size() 2025-09-07T07:42:03.0804719Z >>> shape = [nnz, x.dim()] 2025-09-07T07:42:03.0804846Z >>> result = x.new_empty(shape, dtype=torch.int64) 2025-09-07T07:42:03.0804933Z >>> return result 2025-09-07T07:42:03.0805000Z >>> 2025-09-07T07:42:03.0805097Z >>> x = torch.tensor([0, 1, 2, 0, 0, 1]) 2025-09-07T07:42:03.0805215Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-09-07T07:42:03.0805348Z >>> out = torch.compile(nonzero, fullgraph=True)(x) 2025-09-07T07:42:03.0805461Z >>> # xdoctest: +SKIP("Requires Python <= 3.11") 2025-09-07T07:42:03.0805574Z >>> assert torch.allclose(out, x.nonzero()) 2025-09-07T07:42:03.0805646Z 2025-09-07T07:42:03.0805712Z 2025-09-07T07:42:03.0806103Z Original Error: IndentationError('expected an indented block', ('', 37, 1, '_._ = None\n')) 2025-09-07T07:42:03.0806180Z 2025-09-07T07:42:03.0806247Z _._ = None 2025-09-07T07:42:03.0806313Z ^ 2025-09-07T07:42:03.0806397Z warnings.warn(msg) 2025-09-07T07:42:03.0806465Z 2025-09-07T07:42:03.0806671Z --- Parse Warning: 17 / 17 --- 2025-09-07T07:42:03.0807482Z C:\Jenkins\Miniconda3\lib\site-packages\xdoctest\core.py:417: UserWarning: Cannot scrape callname=unsafe_generate_fake_kernels in modpath=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_library\fake_profile.py line=94. 2025-09-07T07:42:03.0807766Z Caused by: DoctestParseError('Failed to parse doctest in _label_docsrc_lines') 2025-09-07T07:42:03.0807839Z 2025-09-07T07:42:03.0808044Z Registers a fake kernel based on the given operator profiles. This fake 2025-09-07T07:42:03.0808305Z kernel registration will override any existing fake kernel registrations. 2025-09-07T07:42:03.0808413Z 2025-09-07T07:42:03.0808601Z The input is a dictionary mapping operator names to a set of operator 2025-09-07T07:42:03.0808807Z profiles, which we will use to generate fake kernels. The operator profiles 2025-09-07T07:42:03.0808992Z are a record of the input and output tensor metadata. Based on this 2025-09-07T07:42:03.0809199Z information we will match a given input to the recorded profile, and return 2025-09-07T07:42:03.0809393Z an output with the same metadata as in the recorded profile. If a profile 2025-09-07T07:42:03.0809523Z doesn't exist then an exception will be thrown. 2025-09-07T07:42:03.0809586Z 2025-09-07T07:42:03.0809787Z The fake kernel generation is considered unsafe because it relies on the 2025-09-07T07:42:03.0810026Z rigid, pre-defined operator profiles that do not account for potential 2025-09-07T07:42:03.0810246Z variations in output behavior. Specifically, the generated kernels assume a 2025-09-07T07:42:03.0810471Z fixed relationship between input and output ranks. However, in reality, it's 2025-09-07T07:42:03.0810679Z possible that data-dependent operations may produce outputs of different 2025-09-07T07:42:03.0810879Z ranks even when given inputs of the same rank. The generated fake kernels 2025-09-07T07:42:03.0811064Z are inflexible and unable to accommodate these nuances, making them 2025-09-07T07:42:03.0811144Z potentially unsafe. 2025-09-07T07:42:03.0811214Z 2025-09-07T07:42:03.0811283Z Args: 2025-09-07T07:42:03.0811476Z op_profiles (dict[str, set[OpProfile]]): A dictionary mapping operator 2025-09-07T07:42:03.0811658Z name to a set of operator profiles from which we will generate fake 2025-09-07T07:42:03.0811730Z kernels. 2025-09-07T07:42:03.0811791Z 2025-09-07T07:42:03.0811863Z Examples: 2025-09-07T07:42:03.0811932Z 2025-09-07T07:42:03.0812081Z >>> # Example: Registering an op-profile from draft-export 2025-09-07T07:42:03.0812194Z >>> import torch 2025-09-07T07:42:03.0812346Z >>> from torch.export._draft_export import draft_export 2025-09-07T07:42:03.0812447Z >>> 2025-09-07T07:42:03.0812606Z >>> @torch.library.custom_op("mylib::foo", mutates_args=()) 2025-09-07T07:42:03.0812716Z >>> def foo(x: Tensor, y: Tensor) -> Tensor: 2025-09-07T07:42:03.0812801Z >>> return x + y 2025-09-07T07:42:03.0812867Z >>> 2025-09-07T07:42:03.0812957Z >>> class M(torch.nn.Module): 2025-09-07T07:42:03.0813053Z >>> def forward(self, a, b): 2025-09-07T07:42:03.0813175Z >>> res = torch.ops.mylib.foo(a, b) # no fake impl 2025-09-07T07:42:03.0813256Z >>> return res 2025-09-07T07:42:03.0813321Z >>> 2025-09-07T07:42:03.0813514Z >>> ep = draft_export(M(), (torch.ones(3, 4), torch.ones(3, 4)) 2025-09-07T07:42:03.0813579Z >>> 2025-09-07T07:42:03.0813853Z >>> with torch._library.fake_profile.unsafe_generate_fake_kernels(ep._report.op_profiles): 2025-09-07T07:42:03.0814000Z >>> decomp = ep.run_decompositions() 2025-09-07T07:42:03.0814068Z 2025-09-07T07:42:03.0814129Z 2025-09-07T07:42:03.0814567Z Original Error: IncompleteParseError('ill-formed doctest: all parts have been processed but the doctest source is not balanced') 2025-09-07T07:42:03.0814634Z 2025-09-07T07:42:03.0814711Z warnings.warn(msg) 2025-09-07T07:42:03.0814774Z 2025-09-07T07:42:03.0814900Z  2025-09-07T07:42:03.0815073Z === Found 9 run-time warnings === 2025-09-07T07:42:03.0815244Z --- Runtime Warning: 1 / 9 --- 2025-09-07T07:42:03.0815528Z example = 2025-09-07T07:42:03.0816087Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\library.py:282: UserWarning: Warning only once for all operators, other operators may also be overridden. 2025-09-07T07:42:03.0816408Z Overriding a previously registered kernel for the same operator and the same dispatch key 2025-09-07T07:42:03.0816594Z operator: aten::div.Tensor(Tensor self, Tensor other) -> Tensor 2025-09-07T07:42:03.0816892Z registered at C:\actions-runner\_work\pytorch\pytorch\build\aten\src\ATen\RegisterSchema.cpp:6 2025-09-07T07:42:03.0816975Z dispatch key: CPU 2025-09-07T07:42:03.0817377Z previous kernel: registered at C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\LegacyBatchingRegistrations.cpp:1079 2025-09-07T07:42:03.0818311Z new kernel: registered at :1 (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\core\dispatch\OperatorEntry.cpp:225.) 2025-09-07T07:42:03.0818451Z impl_fn(self.ns, name.split("::")[-1], dispatch_key) 2025-09-07T07:42:03.0818528Z 2025-09-07T07:42:03.0818706Z --- Runtime Warning: 2 / 9 --- 2025-09-07T07:42:03.0818937Z example = 2025-09-07T07:42:03.0820267Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\_tensor.py:1351: UserWarning: Named tensors and all their associated APIs are an experimental feature and subject to change. Please do not use them for anything important until they are released as stable. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\c10/core/TensorImpl.h:1974.) 2025-09-07T07:42:03.0820366Z return super().refine_names(names) 2025-09-07T07:42:03.0820427Z 2025-09-07T07:42:03.0820603Z --- Runtime Warning: 3 / 9 --- 2025-09-07T07:42:03.0820820Z example = 2025-09-07T07:42:03.0822537Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nested\__init__.py:117: UserWarning: The PyTorch API of nested tensors is in prototype stage and will change in the near future. We recommend specifying layout=torch.jagged when constructing a nested tensor, as this layout receives active development, has better operator coverage, and works with torch.compile. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\NestedTensorImpl.cpp:182.) 2025-09-07T07:42:03.0822802Z return torch._nested_tensor_from_tensor_list(ts, dtype, None, device, None) 2025-09-07T07:42:03.0822866Z 2025-09-07T07:42:03.0823039Z --- Runtime Warning: 4 / 9 --- 2025-09-07T07:42:03.0823262Z example = 2025-09-07T07:42:03.0824739Z :1: UserWarning: Sparse CSR tensor support is in beta state. If you miss a functionality in the sparse tensor support, please submit a feature request to https://github.com/pytorch/pytorch/issues. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\SparseCsrTensorImpl.cpp:55.) 2025-09-07T07:42:03.0824813Z 2025-09-07T07:42:03.0825046Z --- Runtime Warning: 5 / 9 --- 2025-09-07T07:42:03.0825339Z example = 2025-09-07T07:42:03.0826279Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py:392: UserWarning: enable_nested_tensor is True, but self.use_nested_tensor is False because encoder_layer.self_attn.batch_first was not True(use batch_first for better inference performance) 2025-09-07T07:42:03.0826360Z warnings.warn( 2025-09-07T07:42:03.0826422Z 2025-09-07T07:42:03.0826600Z --- Runtime Warning: 6 / 9 --- 2025-09-07T07:42:03.0826895Z example = 2025-09-07T07:42:03.0827874Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\modules\transformer.py:392: UserWarning: enable_nested_tensor is True, but self.use_nested_tensor is False because encoder_layer.self_attn.batch_first was not True(use batch_first for better inference performance) 2025-09-07T07:42:03.0827950Z warnings.warn( 2025-09-07T07:42:03.0828015Z 2025-09-07T07:42:03.0828193Z --- Runtime Warning: 7 / 9 --- 2025-09-07T07:42:03.0828435Z example = 2025-09-07T07:42:03.0829138Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py:144: FutureWarning: `torch.nn.utils.weight_norm` is deprecated in favor of `torch.nn.utils.parametrizations.weight_norm`. 2025-09-07T07:42:03.0829286Z WeightNorm.apply(module, name, dim) 2025-09-07T07:42:03.0829354Z 2025-09-07T07:42:03.0829522Z --- Runtime Warning: 8 / 9 --- 2025-09-07T07:42:03.0829804Z example = 2025-09-07T07:42:03.0830510Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\nn\utils\weight_norm.py:144: FutureWarning: `torch.nn.utils.weight_norm` is deprecated in favor of `torch.nn.utils.parametrizations.weight_norm`. 2025-09-07T07:42:03.0830657Z WeightNorm.apply(module, name, dim) 2025-09-07T07:42:03.0830728Z 2025-09-07T07:42:03.0830898Z --- Runtime Warning: 9 / 9 --- 2025-09-07T07:42:03.0831206Z example = 2025-09-07T07:42:03.0832571Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\fx\experimental\const_fold.py:278: UserWarning: Attempted to insert a get_attr Node with no underlying reference in the owning GraphModule! Call GraphModule.add_submodule to add the necessary submodule, GraphModule.add_parameter to add the necessary Parameter, or nn.Module.register_buffer to add the necessary buffer 2025-09-07T07:42:03.0832757Z new_node = root_const_gm.graph.get_attr(in_node.target) 2025-09-07T07:42:03.0832823Z 2025-09-07T07:42:03.0833156Z === 373 passed, 490 skipped, 26 warnings in 23.38 seconds === 2025-09-07T07:42:03.5488623Z Processing c:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions 2025-09-07T07:42:03.5506455Z Preparing metadata (setup.py): started 2025-09-07T07:42:07.0895033Z Preparing metadata (setup.py): finished with status 'done' 2025-09-07T07:42:07.0941377Z Building wheels for collected packages: torch_test_cpp_extension 2025-09-07T07:42:07.0952828Z Building wheel for torch_test_cpp_extension (setup.py): started 2025-09-07T07:43:04.7881012Z Building wheel for torch_test_cpp_extension (setup.py): finished with status 'done' 2025-09-07T07:43:04.7905847Z Created wheel for torch_test_cpp_extension: filename=torch_test_cpp_extension-0.0.0-cp39-cp39-win_amd64.whl size=310451 sha256=cf96c5d6d48aa72364ebc67d3a422d1f1f9f6c4332d058b16b5ee4d48fb518e3 2025-09-07T07:43:04.7907258Z Stored in directory: C:\Users\runneruser\AppData\Local\Temp\pip-ephem-wheel-cache-4u1npg2t\wheels\e6\8b\11\f3334a84154b8cb57be8f93f2b4d853d989fc42179eda79f32 2025-09-07T07:43:04.7945093Z Successfully built torch_test_cpp_extension 2025-09-07T07:43:05.7421550Z Installing collected packages: torch_test_cpp_extension 2025-09-07T07:43:05.8072283Z Successfully installed torch_test_cpp_extension-0.0.0 2025-09-07T07:43:08.9372917Z 2025-09-07T07:43:08.9373533Z Running tests... 2025-09-07T07:43:08.9373885Z ---------------------------------------------------------------------- 2025-09-07T07:43:09.1691751Z . 2025-09-07T07:43:09.1692109Z ---------------------------------------------------------------------- 2025-09-07T07:43:09.1692468Z Ran 1 test in 0.218s 2025-09-07T07:43:09.1692650Z 2025-09-07T07:43:09.1692723Z OK 2025-09-07T07:43:09.1692818Z 2025-09-07T07:43:09.1692914Z Generating XML reports... 2025-09-07T07:43:09.6437747Z Running test_autoload_enable 1/1 ... [2025-09-07 07:43:09.643129] 2025-09-07T07:43:10.1776043Z Processing c:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions 2025-09-07T07:43:10.1793801Z Preparing metadata (setup.py): started 2025-09-07T07:43:13.6937129Z Preparing metadata (setup.py): finished with status 'done' 2025-09-07T07:43:13.6988832Z Building wheels for collected packages: torch_test_cpp_extension 2025-09-07T07:43:13.7000463Z Building wheel for torch_test_cpp_extension (setup.py): started 2025-09-07T07:44:11.2364231Z Building wheel for torch_test_cpp_extension (setup.py): finished with status 'done' 2025-09-07T07:44:11.2389700Z Created wheel for torch_test_cpp_extension: filename=torch_test_cpp_extension-0.0.0-cp39-cp39-win_amd64.whl size=310455 sha256=1a431dca28d671953d6fbbcc0eef1584200a68f57c91cdef3f0c80e920018ec4 2025-09-07T07:44:11.2391495Z Stored in directory: C:\Users\runneruser\AppData\Local\Temp\pip-ephem-wheel-cache-1xm7dn6r\wheels\e6\8b\11\f3334a84154b8cb57be8f93f2b4d853d989fc42179eda79f32 2025-09-07T07:44:11.2429555Z Successfully built torch_test_cpp_extension 2025-09-07T07:44:12.1549788Z Installing collected packages: torch_test_cpp_extension 2025-09-07T07:44:12.1551416Z Attempting uninstall: torch_test_cpp_extension 2025-09-07T07:44:12.1558091Z Found existing installation: torch_test_cpp_extension 0.0.0 2025-09-07T07:44:12.1579963Z Can't uninstall 'torch_test_cpp_extension'. No files were found to uninstall. 2025-09-07T07:44:12.1864355Z Successfully installed torch_test_cpp_extension-0.0.0 2025-09-07T07:44:15.3705091Z 2025-09-07T07:44:15.3705569Z Running tests... 2025-09-07T07:44:15.3705898Z ---------------------------------------------------------------------- 2025-09-07T07:44:15.6138506Z . 2025-09-07T07:44:15.6138857Z ---------------------------------------------------------------------- 2025-09-07T07:44:15.6139217Z Ran 1 test in 0.250s 2025-09-07T07:44:15.6139363Z 2025-09-07T07:44:15.6139455Z OK 2025-09-07T07:44:15.6139563Z 2025-09-07T07:44:15.6139658Z Generating XML reports... 2025-09-07T07:44:16.0702359Z Running test_cpp_extensions_aot_ninja 1/1 ... [2025-09-07 07:44:16.068840] 2025-09-07T07:44:16.6022249Z Processing c:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions 2025-09-07T07:44:16.6040014Z Preparing metadata (setup.py): started 2025-09-07T07:44:20.1579022Z Preparing metadata (setup.py): finished with status 'done' 2025-09-07T07:44:20.1629465Z Building wheels for collected packages: torch_test_cpp_extension 2025-09-07T07:44:20.1641202Z Building wheel for torch_test_cpp_extension (setup.py): started 2025-09-07T07:45:17.9451849Z Building wheel for torch_test_cpp_extension (setup.py): finished with status 'done' 2025-09-07T07:45:17.9478497Z Created wheel for torch_test_cpp_extension: filename=torch_test_cpp_extension-0.0.0-cp39-cp39-win_amd64.whl size=310528 sha256=d034c5e39c68f91a2a5d335c7ccebe53fa56740ca1804c3a4018745af377a0c9 2025-09-07T07:45:17.9480723Z Stored in directory: C:\Users\runneruser\AppData\Local\Temp\pip-ephem-wheel-cache-xchrit_c\wheels\e6\8b\11\f3334a84154b8cb57be8f93f2b4d853d989fc42179eda79f32 2025-09-07T07:45:17.9520509Z Successfully built torch_test_cpp_extension 2025-09-07T07:45:18.9139825Z Installing collected packages: torch_test_cpp_extension 2025-09-07T07:45:18.9142139Z Attempting uninstall: torch_test_cpp_extension 2025-09-07T07:45:18.9149500Z Found existing installation: torch_test_cpp_extension 0.0.0 2025-09-07T07:45:18.9173496Z Can't uninstall 'torch_test_cpp_extension'. No files were found to uninstall. 2025-09-07T07:45:18.9453251Z Successfully installed torch_test_cpp_extension-0.0.0 2025-09-07T07:45:19.0217775Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:45:19.0225213Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_aot_ninja.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:45:19.021988] 2025-09-07T07:45:23.0130628Z 2025-09-07T07:45:23.0131537Z test_cpp_extensions_aot_ninja 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_aot_ninja_1.1_c07e100a847e318f_.log 2025-09-07T07:45:23.0140245Z Running 21 items in this shard: test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_backward, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_cublas_extension, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_cuda_dlink_libs, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_cuda_extension, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_cusolver_extension, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_extension_function, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_extension_module, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_mps_extension, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_no_python_abi_suffix_sets_the_correct_library_name, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_optional, test/test_cpp_extensions_aot_ninja.py::TestCppExtensionAOT::test_sycl_extension, test/test_cpp_extensions_aot_ninja.py::TestPybindTypeCasters::test_pybind_return_types, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_add, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_autocast_apis_for_maia_device, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_conv_backend_override, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_matmul_autocast_default_precision, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_matmul_autocast_float16_precision, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_unregistered, test/test_cpp_extensions_aot_ninja.py::TestMAIATensor::test_zeros, test/test_cpp_extensions_aot_ninja.py::TestRNGExtension::test_rng, test/test_cpp_extensions_aot_ninja.py::TestTorchLibrary::test_torch_library 2025-09-07T07:45:23.0147070Z 2025-09-07T07:45:23.0147355Z Running test_cpp_extensions_aot_no_ninja 1/1 ... [2025-09-07 07:45:23.013900] 2025-09-07T07:45:23.0313541Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T07:45:23.0314156Z Uploading artifacts took 0.00 seconds 2025-09-07T07:45:23.5452430Z Processing c:\actions-runner\_work\pytorch\pytorch\test\cpp_extensions 2025-09-07T07:45:23.5469323Z Preparing metadata (setup.py): started 2025-09-07T07:45:27.0574012Z Preparing metadata (setup.py): finished with status 'done' 2025-09-07T07:45:27.0625057Z Building wheels for collected packages: torch_test_cpp_extension 2025-09-07T07:45:27.0636743Z Building wheel for torch_test_cpp_extension (setup.py): started 2025-09-07T07:46:24.6551227Z Building wheel for torch_test_cpp_extension (setup.py): finished with status 'done' 2025-09-07T07:46:24.6576227Z Created wheel for torch_test_cpp_extension: filename=torch_test_cpp_extension-0.0.0-cp39-cp39-win_amd64.whl size=310452 sha256=d86cef326d560ff0e0d7a2dd2c47ce692c0919a68042e48111b2e5ef71be24fb 2025-09-07T07:46:24.6578794Z Stored in directory: C:\Users\runneruser\AppData\Local\Temp\pip-ephem-wheel-cache-1tv9si7e\wheels\e6\8b\11\f3334a84154b8cb57be8f93f2b4d853d989fc42179eda79f32 2025-09-07T07:46:24.6617214Z Successfully built torch_test_cpp_extension 2025-09-07T07:46:25.5816191Z Installing collected packages: torch_test_cpp_extension 2025-09-07T07:46:25.5817675Z Attempting uninstall: torch_test_cpp_extension 2025-09-07T07:46:25.5824337Z Found existing installation: torch_test_cpp_extension 0.0.0 2025-09-07T07:46:25.5846886Z Can't uninstall 'torch_test_cpp_extension'. No files were found to uninstall. 2025-09-07T07:46:25.6136115Z Successfully installed torch_test_cpp_extension-0.0.0 2025-09-07T07:46:25.6880148Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:46:25.6886316Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cpp_extensions_aot_no_ninja.py', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:46:25.687529] 2025-09-07T07:46:29.6939326Z 2025-09-07T07:46:29.6940490Z test_cpp_extensions_aot_no_ninja 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cpp_extensions_aot_no_ninja_1.1_fc79a8f3eb0c8dff_.log 2025-09-07T07:46:29.6948484Z Running 21 items in this shard: test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_backward, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_cublas_extension, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_cuda_dlink_libs, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_cuda_extension, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_cusolver_extension, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_extension_function, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_extension_module, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_mps_extension, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_no_python_abi_suffix_sets_the_correct_library_name, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_optional, test/test_cpp_extensions_aot_no_ninja.py::TestCppExtensionAOT::test_sycl_extension, test/test_cpp_extensions_aot_no_ninja.py::TestPybindTypeCasters::test_pybind_return_types, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_add, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_autocast_apis_for_maia_device, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_conv_backend_override, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_matmul_autocast_default_precision, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_matmul_autocast_float16_precision, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_unregistered, test/test_cpp_extensions_aot_no_ninja.py::TestMAIATensor::test_zeros, test/test_cpp_extensions_aot_no_ninja.py::TestRNGExtension::test_rng, test/test_cpp_extensions_aot_no_ninja.py::TestTorchLibrary::test_torch_library 2025-09-07T07:46:29.6955481Z 2025-09-07T07:46:29.6955685Z Running inductor/test_aot_inductor 1/1 ... [2025-09-07 07:46:29.694471] 2025-09-07T07:46:29.6956143Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:46:29.6957196Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:46:29.695055] 2025-09-07T07:46:39.2982344Z 2025-09-07T07:46:39.2983254Z inductor/test_aot_inductor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_1.1_a7937e947f9490f3_.log 2025-09-07T07:46:39.2983993Z 2025-09-07T07:46:39.2988447Z Running inductor/test_aot_inductor_arrayref 1/1 ... [2025-09-07 07:46:39.298406] 2025-09-07T07:46:39.2988913Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:46:39.2995044Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_arrayref.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:46:39.298992] 2025-09-07T07:46:42.6945522Z 2025-09-07T07:46:42.6946624Z inductor/test_aot_inductor_arrayref 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_arrayref_1.1_4901dd6bea08f772_.log 2025-09-07T07:46:42.6947389Z 2025-09-07T07:46:42.6951320Z Running inductor/test_cudagraph_trees 1/1 ... [2025-09-07 07:46:42.693200] 2025-09-07T07:46:42.6951767Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:46:42.6957871Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudagraph_trees.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:46:42.693200] 2025-09-07T07:46:52.1848406Z 2025-09-07T07:46:52.1849327Z inductor/test_cudagraph_trees 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudagraph_trees_1.1_1fbe8302fce0d6cd_.log 2025-09-07T07:46:52.1850037Z 2025-09-07T07:46:52.1855595Z Running inductor/test_torchinductor_opinfo 1/1 ... [2025-09-07 07:46:52.185089] 2025-09-07T07:46:52.1856055Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:46:52.1864741Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_opinfo.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:46:52.186264] 2025-09-07T07:47:03.1195088Z 2025-09-07T07:47:03.1196446Z inductor/test_torchinductor_opinfo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_opinfo_1.1_ac75db3997940fe3_.log 2025-09-07T07:47:03.1203769Z 2025-09-07T07:47:03.1204189Z Running dynamo/test_dynamic_shapes 1/1 ... [2025-09-07 07:47:03.120224] 2025-09-07T07:47:03.1204634Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:47:03.1212172Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_dynamic_shapes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:47:03.120852] 2025-09-07T07:47:14.5369871Z 2025-09-07T07:47:14.5370857Z dynamo/test_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_dynamic_shapes_1.1_ccf28170ad6ee9b2_.log 2025-09-07T07:47:14.5371535Z 2025-09-07T07:47:14.5376892Z Running inductor/test_minifier 1/1 ... [2025-09-07 07:47:14.537420] 2025-09-07T07:47:14.5377446Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:47:14.5384823Z 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-09-07 07:47:14.538012] 2025-09-07T07:47:24.0583490Z 2025-09-07T07:47:24.0589888Z inductor/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_1.1_3a49af9a52b34af3_.log 2025-09-07T07:47:24.0590527Z 2025-09-07T07:47:24.0590717Z Running dynamo/test_repros 1/1 ... [2025-09-07 07:47:24.056751] 2025-09-07T07:47:24.0591124Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:47:24.0605491Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_repros.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:47:24.059879] 2025-09-07T07:47:28.1152888Z 2025-09-07T07:47:28.1153710Z dynamo/test_repros 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_repros_1.1_170d8b9bbd1fab08_.log 2025-09-07T07:47:28.1154312Z 2025-09-07T07:47:28.1158758Z Running dynamo/test_pgo 1/1 ... [2025-09-07 07:47:28.110194] 2025-09-07T07:47:28.1159129Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:47:28.1165036Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_pgo.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:47:28.110194] 2025-09-07T07:47:31.8178257Z 2025-09-07T07:47:31.8179012Z dynamo/test_pgo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_pgo_1.1_c61f55c3181f6d12_.log 2025-09-07T07:47:31.8179756Z 2025-09-07T07:47:31.8184189Z Running inductor/test_split_cat_fx_aten_passes 1/1 ... [2025-09-07 07:47:31.815463] 2025-09-07T07:47:31.8184644Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:47:31.8190523Z 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-09-07 07:47:31.815463] 2025-09-07T07:47:41.3180300Z 2025-09-07T07:47:41.3181424Z 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_cc94ae9b79a00de8_.log 2025-09-07T07:47:41.3182170Z 2025-09-07T07:47:41.3187673Z Running dynamo/test_modes 1/1 ... [2025-09-07 07:47:41.318401] 2025-09-07T07:47:41.3188077Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:47:41.3194508Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:47:41.318401] 2025-09-07T07:47:50.7842957Z 2025-09-07T07:47:50.7843766Z dynamo/test_modes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modes_1.1_3d420391bf2f3169_.log 2025-09-07T07:47:50.7844462Z 2025-09-07T07:47:50.7849371Z Running inductor/test_control_flow 1/1 ... [2025-09-07 07:47:50.783974] 2025-09-07T07:47:50.7849831Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:47:50.7855329Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_control_flow.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:47:50.783974] 2025-09-07T07:48:00.2560966Z 2025-09-07T07:48:00.2561839Z inductor/test_control_flow 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_control_flow_1.1_6d1813ae4e80298f_.log 2025-09-07T07:48:00.2562603Z 2025-09-07T07:48:00.2566462Z Running dynamo/test_logging 1/1 ... [2025-09-07 07:48:00.244141] 2025-09-07T07:48:00.2566865Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:48:00.2572958Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_logging.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:48:00.244141] 2025-09-07T07:48:09.9699022Z 2025-09-07T07:48:09.9699869Z dynamo/test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_logging_1.1_8bd5f11456b3e290_.log 2025-09-07T07:48:09.9700488Z 2025-09-07T07:48:09.9704985Z Running inductor/test_cpu_repro 1/1 ... [2025-09-07 07:48:09.970258] 2025-09-07T07:48:09.9705404Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:48:09.9711802Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_repro.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:48:09.970851] 2025-09-07T07:48:19.7004270Z 2025-09-07T07:48:19.7005392Z inductor/test_cpu_repro 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_repro_1.1_2e85ca3e4785526c_.log 2025-09-07T07:48:19.7006058Z 2025-09-07T07:48:19.7011335Z Running dynamo/test_compiler_bisector 1/1 ... [2025-09-07 07:48:19.700718] 2025-09-07T07:48:19.7011778Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:48:19.7017936Z 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-09-07 07:48:19.700718] 2025-09-07T07:48:29.3197771Z 2025-09-07T07:48:29.3198993Z 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_d7eeb3422d184312_.log 2025-09-07T07:48:29.3199789Z 2025-09-07T07:48:29.3204131Z Running export/test_retraceability 1/1 ... [2025-09-07 07:48:29.320333] 2025-09-07T07:48:29.3204648Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:48:29.3210792Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_retraceability.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:48:29.320525] 2025-09-07T07:48:39.0152825Z 2025-09-07T07:48:39.0153729Z export/test_retraceability 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_retraceability_1.1_2963a3632c3c1a30_.log 2025-09-07T07:48:39.0154522Z 2025-09-07T07:48:39.0158743Z Running inductor/test_triton_syntax 1/1 ... [2025-09-07 07:48:39.015437] 2025-09-07T07:48:39.0159159Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:48:39.0165292Z 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-09-07 07:48:39.016023] 2025-09-07T07:48:48.4711333Z 2025-09-07T07:48:48.4712271Z 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_0a26f56c1b3845c1_.log 2025-09-07T07:48:48.4713007Z 2025-09-07T07:48:48.4719632Z Running inductor/test_cpp_wrapper_hipify 1/1 ... [2025-09-07 07:48:48.471838] 2025-09-07T07:48:48.4720079Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:48:48.4738302Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpp_wrapper_hipify.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:48:48.473591] 2025-09-07T07:48:52.5533647Z 2025-09-07T07:48:52.5534610Z inductor/test_cpp_wrapper_hipify 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpp_wrapper_hipify_1.1_7a7b5114197bed5d_.log 2025-09-07T07:48:52.5535323Z 2025-09-07T07:48:52.5539800Z Running export/test_export_training_ir_to_run_decomp 1/1 ... [2025-09-07 07:48:52.553655] 2025-09-07T07:48:52.5540268Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:48:52.5546245Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_training_ir_to_run_decomp.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:48:52.554263] 2025-09-07T07:49:02.1626958Z 2025-09-07T07:49:02.1628119Z export/test_export_training_ir_to_run_decomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_training_ir_to_run_decomp_1.1_9bee79b65a518fa1_.log 2025-09-07T07:49:02.1628909Z 2025-09-07T07:49:02.1632752Z Running dynamo/test_base_output 1/1 ... [2025-09-07 07:49:02.150054] 2025-09-07T07:49:02.1633162Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:49:02.1639354Z 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-09-07 07:49:02.150054] 2025-09-07T07:49:05.8545975Z 2025-09-07T07:49:05.8547130Z 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_78e7759c8d52fd73_.log 2025-09-07T07:49:05.8547780Z 2025-09-07T07:49:05.8551780Z Running inductor/test_flex_decoding 1/1 ... [2025-09-07 07:49:05.852272] 2025-09-07T07:49:05.8552213Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:49:05.8558228Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_flex_decoding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:49:05.852272] 2025-09-07T07:49:15.4303804Z 2025-09-07T07:49:15.4304924Z inductor/test_flex_decoding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_flex_decoding_1.1_37a7b31dce1cb677_.log 2025-09-07T07:49:15.4305640Z 2025-09-07T07:49:15.4309930Z Running inductor/test_ck_backend 1/1 ... [2025-09-07 07:49:15.429034] 2025-09-07T07:49:15.4310380Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:49:15.4316149Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ck_backend.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:49:15.429034] 2025-09-07T07:49:24.9197342Z 2025-09-07T07:49:24.9198214Z inductor/test_ck_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ck_backend_1.1_22664b2db973500a_.log 2025-09-07T07:49:24.9198880Z 2025-09-07T07:49:24.9203322Z Running dynamo/test_skip_guard_eval_unsafe 1/1 ... [2025-09-07 07:49:24.920237] 2025-09-07T07:49:24.9203776Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:49:24.9209934Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_skip_guard_eval_unsafe.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:49:24.920809] 2025-09-07T07:49:28.6805475Z 2025-09-07T07:49:28.6806557Z dynamo/test_skip_guard_eval_unsafe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_skip_guard_eval_unsafe_1.1_8a72b16cd719e7bd_.log 2025-09-07T07:49:28.6807274Z 2025-09-07T07:49:28.6811228Z Running inductor/test_inductor_annotations 1/1 ... [2025-09-07 07:49:28.672211] 2025-09-07T07:49:28.6811681Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:49:28.6817936Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_annotations.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:49:28.672211] 2025-09-07T07:49:38.2188523Z 2025-09-07T07:49:38.2189489Z inductor/test_inductor_annotations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_annotations_1.1_6e1aca14b84328e4_.log 2025-09-07T07:49:38.2190226Z 2025-09-07T07:49:38.2194295Z Running inductor/test_debug_trace 1/1 ... [2025-09-07 07:49:38.218446] 2025-09-07T07:49:38.2194699Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:49:38.2202904Z 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-09-07 07:49:38.219572] 2025-09-07T07:49:47.8364434Z 2025-09-07T07:49:47.8365328Z 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_b63b75797c6d06c9_.log 2025-09-07T07:49:47.8366119Z 2025-09-07T07:49:47.8370229Z Running inductor/test_best_config 1/1 ... [2025-09-07 07:49:47.834724] 2025-09-07T07:49:47.8370647Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:49:47.8376619Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_best_config.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:49:47.834724] 2025-09-07T07:49:57.2596331Z 2025-09-07T07:49:57.2597252Z inductor/test_best_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_best_config_1.1_e5e41db0f22109df_.log 2025-09-07T07:49:57.2597933Z 2025-09-07T07:49:57.2602399Z Running inductor/test_pad_mm 1/1 ... [2025-09-07 07:49:57.246962] 2025-09-07T07:49:57.2602792Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:49:57.2608637Z 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-09-07 07:49:57.246962] 2025-09-07T07:50:06.7534676Z 2025-09-07T07:50:06.7535605Z 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_0ba80efbb2d97ec3_.log 2025-09-07T07:50:06.7536220Z 2025-09-07T07:50:06.7540368Z Running dynamo/test_modules 1/1 ... [2025-09-07 07:50:06.749637] 2025-09-07T07:50:06.7540754Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:06.7547131Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modules.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:50:06.749637] 2025-09-07T07:50:16.2975944Z 2025-09-07T07:50:16.2976790Z dynamo/test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modules_1.1_aadd92f8b0291314_.log 2025-09-07T07:50:16.2977498Z 2025-09-07T07:50:16.2981975Z Running inductor/test_triton_wrapper 1/1 ... [2025-09-07 07:50:16.297636] 2025-09-07T07:50:16.2982458Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:16.2999005Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_wrapper.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:50:16.299347] 2025-09-07T07:50:25.8351981Z 2025-09-07T07:50:25.8352963Z inductor/test_triton_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_wrapper_1.1_9974737d08e9f375_.log 2025-09-07T07:50:25.8353667Z 2025-09-07T07:50:25.8357718Z Running dynamo/test_metrics_context 1/1 ... [2025-09-07 07:50:25.834352] 2025-09-07T07:50:25.8358149Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:25.8364072Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_metrics_context.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:50:25.834352] 2025-09-07T07:50:29.2897701Z 2025-09-07T07:50:29.2898841Z dynamo/test_metrics_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_metrics_context_1.1_2b3d36c9d40d799f_.log 2025-09-07T07:50:29.2899520Z 2025-09-07T07:50:29.2903467Z Running inductor/test_fx_fusion 1/1 ... [2025-09-07 07:50:29.290065] 2025-09-07T07:50:29.2903895Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:29.2910017Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fx_fusion.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:50:29.290681] 2025-09-07T07:50:34.3968893Z 2025-09-07T07:50:34.3969999Z inductor/test_fx_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fx_fusion_1.1_601c7929a3f94270_.log 2025-09-07T07:50:34.3970650Z 2025-09-07T07:50:34.3974761Z Running dynamo/test_frame_init 1/1 ... [2025-09-07 07:50:34.385564] 2025-09-07T07:50:34.3980397Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:34.3981550Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_frame_init.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:50:34.385564] 2025-09-07T07:50:37.8749154Z 2025-09-07T07:50:37.8750064Z dynamo/test_frame_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_frame_init_1.1_05318abf5f759411_.log 2025-09-07T07:50:37.8750707Z 2025-09-07T07:50:37.8754850Z Running inductor/test_coordinate_descent_tuner 1/1 ... [2025-09-07 07:50:37.859924] 2025-09-07T07:50:37.8755334Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:37.8762779Z 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-09-07 07:50:37.875656] 2025-09-07T07:50:47.3887736Z 2025-09-07T07:50:47.3888889Z 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_10a2bc21c9946767_.log 2025-09-07T07:50:47.3889805Z 2025-09-07T07:50:47.3895060Z Running dynamo/test_sdpa 1/1 ... [2025-09-07 07:50:47.389002] 2025-09-07T07:50:47.3895545Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:47.3904033Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sdpa.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:50:47.390175] 2025-09-07T07:50:51.0097624Z 2025-09-07T07:50:51.0098426Z dynamo/test_sdpa 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sdpa_1.1_cabae5209ef87799_.log 2025-09-07T07:50:51.0099016Z 2025-09-07T07:50:51.0104573Z Running xpu/test_fusion 1/1 ... [2025-09-07 07:50:51.009987] 2025-09-07T07:50:51.0104948Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:51.0113612Z 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-09-07 07:50:51.011161] 2025-09-07T07:50:54.8884749Z 2025-09-07T07:50:54.8885539Z xpu/test_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_fusion_1.1_4f7a98824b9404a8_.log 2025-09-07T07:50:54.8886241Z Running 0 items in this shard: 2025-09-07T07:50:54.8886417Z 2025-09-07T07:50:54.8890951Z Running dynamo/test_recompiles 1/1 ... [2025-09-07 07:50:54.888974] 2025-09-07T07:50:54.8891355Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:54.8897589Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_recompiles.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:50:54.889546] 2025-09-07T07:50:58.6245735Z 2025-09-07T07:50:58.6246706Z dynamo/test_recompiles 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompiles_1.1_4ffbe6fa2112c3e0_.log 2025-09-07T07:50:58.6247629Z 2025-09-07T07:50:58.6252693Z Running inductor/test_fp8 1/1 ... [2025-09-07 07:50:58.625120] 2025-09-07T07:50:58.6253140Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:50:58.6259299Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fp8.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:50:58.625762] 2025-09-07T07:51:08.1501586Z 2025-09-07T07:51:08.1502399Z inductor/test_fp8 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fp8_1.1_542b2b1719f1ab82_.log 2025-09-07T07:51:08.1502988Z 2025-09-07T07:51:08.1507607Z Running dynamo/test_fx_passes_pre_grad 1/1 ... [2025-09-07 07:51:08.147452] 2025-09-07T07:51:08.1508045Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:51:08.1513932Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_passes_pre_grad.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:51:08.147452] 2025-09-07T07:51:11.5462684Z 2025-09-07T07:51:11.5463687Z dynamo/test_fx_passes_pre_grad 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_passes_pre_grad_1.1_12348e69d2d61f4e_.log 2025-09-07T07:51:11.5464365Z 2025-09-07T07:51:11.5469666Z Running inductor/test_op_completeness 1/1 ... [2025-09-07 07:51:11.546595] 2025-09-07T07:51:11.5470105Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:51:11.5477275Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_completeness.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:51:11.547177] 2025-09-07T07:51:15.3842903Z 2025-09-07T07:51:15.3843810Z inductor/test_op_completeness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_completeness_1.1_039429fc02fe3808_.log 2025-09-07T07:51:15.3844590Z 2025-09-07T07:51:15.3847809Z Running dynamo/test_utils 1/1 ... [2025-09-07 07:51:15.383566] 2025-09-07T07:51:15.3848184Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:51:15.3854160Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:51:15.383566] 2025-09-07T07:51:18.7739950Z 2025-09-07T07:51:18.7740964Z dynamo/test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_utils_1.1_b9f9238557ed707b_.log 2025-09-07T07:51:18.7741574Z 2025-09-07T07:51:18.7745669Z Running dynamo/test_reconstruct 1/1 ... [2025-09-07 07:51:18.773164] 2025-09-07T07:51:18.7746084Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:51:18.7752055Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_reconstruct.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:51:18.773164] 2025-09-07T07:51:28.3009782Z 2025-09-07T07:51:28.3010621Z dynamo/test_reconstruct 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_reconstruct_1.1_9a7b8a66266382c6_.log 2025-09-07T07:51:28.3011274Z 2025-09-07T07:51:28.3015699Z Running inductor/test_cpu_cpp_wrapper 1/1 ... [2025-09-07 07:51:28.295554] 2025-09-07T07:51:28.3016117Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:51:28.3022176Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_cpp_wrapper.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:51:28.295554] 2025-09-07T07:51:38.6567240Z 2025-09-07T07:51:38.6568428Z inductor/test_cpu_cpp_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_cpp_wrapper_1.1_d0390299f18bb87c_.log 2025-09-07T07:51:38.6569116Z 2025-09-07T07:51:38.6572892Z Running dynamo/test_autograd_function 1/1 ... [2025-09-07 07:51:38.648146] 2025-09-07T07:51:38.6573326Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:51:38.6579533Z 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-09-07 07:51:38.648146] 2025-09-07T07:51:48.1553928Z 2025-09-07T07:51:48.1554847Z 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_0e0832950b271bfa_.log 2025-09-07T07:51:48.1555556Z 2025-09-07T07:51:48.1561345Z Running inductor/test_alignment 1/1 ... [2025-09-07 07:51:48.155689] 2025-09-07T07:51:48.1561802Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:51:48.1568647Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_alignment.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:51:48.156270] 2025-09-07T07:51:57.7387444Z 2025-09-07T07:51:57.7388404Z inductor/test_alignment 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_alignment_1.1_4804370a1499b420_.log 2025-09-07T07:51:57.7389161Z 2025-09-07T07:51:57.7394605Z Running functorch/test_ops 5/8 ... [2025-09-07 07:51:57.738893] 2025-09-07T07:51:57.7395206Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:51:57.7403208Z 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-09-07 07:51:57.740067] 2025-09-07T07:52:05.7833629Z 2025-09-07T07:52:05.7834720Z functorch/test_ops 5/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_5.8_6d2832dd9560908b_.log 2025-09-07T07:52:05.7835530Z Running 0 items in this shard: 2025-09-07T07:52:05.7835711Z 2025-09-07T07:52:05.7840850Z Running inductor/test_group_batch_fusion 1/1 ... [2025-09-07 07:52:05.783540] 2025-09-07T07:52:05.7841341Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:52:05.7862589Z 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-09-07 07:52:05.785863] 2025-09-07T07:52:15.2593089Z 2025-09-07T07:52:15.2594047Z 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_23e063aec03d5fb8_.log 2025-09-07T07:52:15.2594766Z 2025-09-07T07:52:15.2600184Z Running inductor/test_quantization 1/1 ... [2025-09-07 07:52:15.259668] 2025-09-07T07:52:15.2600618Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:52:15.2608346Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_quantization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:52:15.260249] 2025-09-07T07:52:24.6609643Z 2025-09-07T07:52:24.6610605Z inductor/test_quantization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_quantization_1.1_78bcf891512328d4_.log 2025-09-07T07:52:24.6611338Z 2025-09-07T07:52:24.6615538Z Running inductor/test_cooperative_reductions 1/1 ... [2025-09-07 07:52:24.661095] 2025-09-07T07:52:24.6616011Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:52:24.6622485Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cooperative_reductions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:52:24.661678] 2025-09-07T07:52:34.2151377Z 2025-09-07T07:52:34.2153713Z inductor/test_cooperative_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cooperative_reductions_1.1_620c410caf4c120a_.log 2025-09-07T07:52:34.2154504Z 2025-09-07T07:52:34.2157309Z Running inductor/test_codegen_triton 1/1 ... [2025-09-07 07:52:34.215264] 2025-09-07T07:52:34.2158371Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:52:34.2164933Z 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-09-07 07:52:34.215841] 2025-09-07T07:52:43.8228231Z 2025-09-07T07:52:43.8229141Z 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_546383b82b6abf7c_.log 2025-09-07T07:52:43.8229845Z 2025-09-07T07:52:43.8234328Z Running inductor/test_custom_post_grad_passes 1/1 ... [2025-09-07 07:52:43.821331] 2025-09-07T07:52:43.8234780Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:52:43.8241330Z 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-09-07 07:52:43.821331] 2025-09-07T07:52:53.1901256Z 2025-09-07T07:52:53.1902275Z 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_4e03f6613fde21c5_.log 2025-09-07T07:52:53.1903078Z 2025-09-07T07:52:53.1907305Z Running test_meta 4/5 ... [2025-09-07 07:52:53.190237] 2025-09-07T07:52:53.1907668Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:52:53.1913909Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'serial', '--shard-id=4', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:52:53.190818] 2025-09-07T07:53:07.7562949Z 2025-09-07T07:53:07.7563848Z test_meta 4/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_4.5_cc389b3a335bbcb4_.log 2025-09-07T07:53:07.7564504Z Running 0 items in this shard: 2025-09-07T07:53:07.7564680Z 2025-09-07T07:53:07.7569048Z Running test_meta 5/5 ... [2025-09-07 07:53:07.756315] 2025-09-07T07:53:07.7569410Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:53:07.7575514Z 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-09-07 07:53:07.756315] 2025-09-07T07:53:22.1022705Z 2025-09-07T07:53:22.1023731Z test_meta 5/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_5.5_22b2d7e402b2b2aa_.log 2025-09-07T07:53:22.1024359Z Running 0 items in this shard: 2025-09-07T07:53:22.1024697Z 2025-09-07T07:53:22.1029175Z Running xpu/test_gemm 1/1 ... [2025-09-07 07:53:22.099607] 2025-09-07T07:53:22.1029583Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:53:22.1035129Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_gemm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:53:22.099607] 2025-09-07T07:53:26.3042607Z 2025-09-07T07:53:26.3043397Z xpu/test_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_gemm_1.1_d763e6544ef6e804_.log 2025-09-07T07:53:26.3044062Z Running 0 items in this shard: 2025-09-07T07:53:26.3048558Z 2025-09-07T07:53:26.3048961Z Running higher_order_ops/test_invoke_quant 1/1 ... [2025-09-07 07:53:26.304480] 2025-09-07T07:53:26.3049416Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:53:26.3055280Z 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-09-07 07:53:26.305053] 2025-09-07T07:53:35.9558520Z 2025-09-07T07:53:35.9559614Z 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_dc733c4482299a5b_.log 2025-09-07T07:53:35.9560445Z Running 0 items in this shard: 2025-09-07T07:53:35.9560624Z 2025-09-07T07:53:35.9565780Z Running dynamo/test_unittest 1/1 ... [2025-09-07 07:53:35.956131] 2025-09-07T07:53:35.9566169Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:53:35.9574707Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unittest.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:53:35.957304] 2025-09-07T07:53:39.7172786Z 2025-09-07T07:53:39.7173871Z dynamo/test_unittest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unittest_1.1_74180337becccb88_.log 2025-09-07T07:53:39.7174620Z 2025-09-07T07:53:39.7179940Z Running functorch/test_minifier 1/1 ... [2025-09-07 07:53:39.717727] 2025-09-07T07:53:39.7180389Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:53:39.7187674Z 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-09-07 07:53:39.718318] 2025-09-07T07:53:43.5817321Z 2025-09-07T07:53:43.5818224Z functorch/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_minifier_1.1_d51f060eff7593e1_.log 2025-09-07T07:53:43.5818978Z Running 0 items in this shard: 2025-09-07T07:53:43.5819161Z 2025-09-07T07:53:43.5823661Z Running test_legacy_vmap 1/1 ... [2025-09-07 07:53:43.581515] 2025-09-07T07:53:43.5824124Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:53:43.5829714Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_legacy_vmap.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:53:43.581515] 2025-09-07T07:53:47.5829476Z 2025-09-07T07:53:47.5830442Z test_legacy_vmap 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_legacy_vmap_1.1_cb57a7134d9f1019_.log 2025-09-07T07:53:47.5831146Z Running 0 items in this shard: 2025-09-07T07:53:47.5831381Z 2025-09-07T07:53:47.5835689Z Running torch_np/numpy_tests/core/test_einsum 1/1 ... [2025-09-07 07:53:47.583389] 2025-09-07T07:53:47.5836341Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:53:47.5842213Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_einsum.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:53:47.583959] 2025-09-07T07:53:51.1861936Z 2025-09-07T07:53:51.1862955Z torch_np/numpy_tests/core/test_einsum 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_einsum_1.1_f5849a92dee099f6_.log 2025-09-07T07:53:51.1863865Z Running 0 items in this shard: 2025-09-07T07:53:51.1864051Z 2025-09-07T07:53:51.1868111Z Running inductor/test_benchmarking 1/1 ... [2025-09-07 07:53:51.184299] 2025-09-07T07:53:51.1868741Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:53:51.1874462Z 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-09-07 07:53:51.184299] 2025-09-07T07:54:00.8516057Z 2025-09-07T07:54:00.8517035Z inductor/test_benchmarking 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_benchmarking_1.1_072728a4353520ae_.log 2025-09-07T07:54:00.8517756Z 2025-09-07T07:54:00.8521828Z Running torch_np/test_basic 1/1 ... [2025-09-07 07:54:00.849325] 2025-09-07T07:54:00.8522256Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:54:00.8528270Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_basic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:54:00.849325] 2025-09-07T07:54:04.7738766Z 2025-09-07T07:54:04.7740034Z torch_np/test_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_basic_1.1_bdf1c3d0b9f0ab93_.log 2025-09-07T07:54:04.7740793Z Running 0 items in this shard: 2025-09-07T07:54:04.7740980Z 2025-09-07T07:54:04.7744738Z Running test_segment_reductions 1/1 ... [2025-09-07 07:54:04.769169] 2025-09-07T07:54:04.7745157Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:54:04.7752275Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_segment_reductions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:54:04.774754] 2025-09-07T07:54:08.7606048Z 2025-09-07T07:54:08.7607266Z test_segment_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_segment_reductions_1.1_848de70e400af991_.log 2025-09-07T07:54:08.7608032Z Running 0 items in this shard: 2025-09-07T07:54:08.7608247Z 2025-09-07T07:54:08.7611943Z Running test_ops_fwd_gradients 1/2 ... [2025-09-07 07:54:08.751219] 2025-09-07T07:54:08.7612374Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:54:08.7618410Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:54:08.751219] 2025-09-07T07:54:14.6535534Z 2025-09-07T07:54:14.6536649Z test_ops_fwd_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_1.2_a9fe399be11a251f_.log 2025-09-07T07:54:14.6537428Z Running 0 items in this shard: 2025-09-07T07:54:14.6537620Z 2025-09-07T07:54:14.6541451Z Running inductor/test_multi_kernel 1/1 ... [2025-09-07 07:54:14.651943] 2025-09-07T07:54:14.6541885Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:54:14.6547876Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_multi_kernel.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:54:14.651943] 2025-09-07T07:54:24.1764118Z 2025-09-07T07:54:24.1765076Z inductor/test_multi_kernel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_multi_kernel_1.1_d8c8dec53567de8a_.log 2025-09-07T07:54:24.1765756Z 2025-09-07T07:54:24.1769966Z Running inductor/test_op_dtype_prop 1/1 ... [2025-09-07 07:54:24.176724] 2025-09-07T07:54:24.1770404Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:54:24.1776633Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_dtype_prop.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:54:24.177308] 2025-09-07T07:54:35.0129478Z 2025-09-07T07:54:35.0130455Z inductor/test_op_dtype_prop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_dtype_prop_1.1_d7f288500bbbed19_.log 2025-09-07T07:54:35.0135135Z 2025-09-07T07:54:35.0135363Z Running inductor/test_cutlass_evt 1/1 ... [2025-09-07 07:54:35.012156] 2025-09-07T07:54:35.0135824Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:54:35.0141834Z 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-09-07 07:54:35.012156] 2025-09-07T07:54:44.6786539Z 2025-09-07T07:54:44.6787905Z 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_7ad6fdf32229a095_.log 2025-09-07T07:54:44.6788625Z 2025-09-07T07:54:44.6792791Z Running inductor/test_torchinductor_codegen_config_overrides 1/1 ... [2025-09-07 07:54:44.668673] 2025-09-07T07:54:44.6793365Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:54:44.6799161Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_codegen_config_overrides.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:54:44.668673] 2025-09-07T07:54:54.1567057Z 2025-09-07T07:54:54.1568270Z inductor/test_torchinductor_codegen_config_overrides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_codegen_config_overrides_1.1_559a647b075aeea8_.log 2025-09-07T07:54:54.1569169Z 2025-09-07T07:54:54.1572970Z Running xpu/test_conv 1/1 ... [2025-09-07 07:54:54.156719] 2025-09-07T07:54:54.1573445Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:54:54.1590243Z 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-09-07 07:54:54.158483] 2025-09-07T07:54:58.4621453Z 2025-09-07T07:54:58.4622545Z xpu/test_conv 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_conv_1.1_4accda3c79e2ee7d_.log 2025-09-07T07:54:58.4623240Z Running 0 items in this shard: 2025-09-07T07:54:58.4623465Z 2025-09-07T07:54:58.4627370Z Running inductor/test_binary_folding 1/1 ... [2025-09-07 07:54:58.456241] 2025-09-07T07:54:58.4627814Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:54:58.4634067Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_binary_folding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:54:58.456241] 2025-09-07T07:55:08.2862963Z 2025-09-07T07:55:08.2863944Z inductor/test_binary_folding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_binary_folding_1.1_a2c172394232537c_.log 2025-09-07T07:55:08.2864655Z 2025-09-07T07:55:08.2870239Z Running test_ops_gradients 2/2 ... [2025-09-07 07:55:08.286672] 2025-09-07T07:55:08.2870680Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:55:08.2877959Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:55:08.287255] 2025-09-07T07:55:14.8431745Z 2025-09-07T07:55:14.8432923Z test_ops_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_2.2_ef1e80bafdddf09e_.log 2025-09-07T07:55:14.8433670Z Running 0 items in this shard: 2025-09-07T07:55:14.8433907Z 2025-09-07T07:55:14.8437927Z Running test_jiterator 1/1 ... [2025-09-07 07:55:14.843214] 2025-09-07T07:55:14.8438392Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:55:14.8444419Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jiterator.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:55:14.843850] 2025-09-07T07:55:18.7489652Z 2025-09-07T07:55:18.7490511Z test_jiterator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jiterator_1.1_accddaa0deceba6d_.log 2025-09-07T07:55:18.7491233Z Running 0 items in this shard: 2025-09-07T07:55:18.7491425Z 2025-09-07T07:55:18.7495778Z Running dynamo/test_optimizers 1/1 ... [2025-09-07 07:55:18.747423] 2025-09-07T07:55:18.7496223Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:55:18.7502399Z 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-09-07 07:55:18.747423] 2025-09-07T07:55:22.4042467Z 2025-09-07T07:55:22.4043389Z dynamo/test_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_optimizers_1.1_2f829b687ed96cff_.log 2025-09-07T07:55:22.4044042Z 2025-09-07T07:55:22.4048234Z Running inductor/test_custom_lowering 1/1 ... [2025-09-07 07:55:22.401296] 2025-09-07T07:55:22.4048714Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:55:22.4054823Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_lowering.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:55:22.401296] 2025-09-07T07:55:31.8295429Z 2025-09-07T07:55:31.8296393Z inductor/test_custom_lowering 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_lowering_1.1_08fbf78424819c29_.log 2025-09-07T07:55:31.8297154Z 2025-09-07T07:55:31.8302915Z Running inductor/test_needs_exact_strides 1/1 ... [2025-09-07 07:55:31.829880] 2025-09-07T07:55:31.8303406Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:55:31.8311010Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_needs_exact_strides.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:55:31.830494] 2025-09-07T07:55:41.3914543Z 2025-09-07T07:55:41.3915573Z inductor/test_needs_exact_strides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_needs_exact_strides_1.1_2cb37cb44f6e2b3e_.log 2025-09-07T07:55:41.3916459Z 2025-09-07T07:55:41.3920563Z Running dynamo/test_base_hop 1/1 ... [2025-09-07 07:55:41.390644] 2025-09-07T07:55:41.3921040Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:55:41.3926574Z 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-09-07 07:55:41.390644] 2025-09-07T07:55:45.1070116Z 2025-09-07T07:55:45.1071010Z 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_0658d015f06a542d_.log 2025-09-07T07:55:45.1071634Z 2025-09-07T07:55:45.1076058Z Running dynamo/test_backends 1/1 ... [2025-09-07 07:55:45.107457] 2025-09-07T07:55:45.1076500Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:55:45.1082311Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_backends.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:55:45.107457] 2025-09-07T07:55:54.7272447Z 2025-09-07T07:55:54.7273486Z dynamo/test_backends 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_backends_1.1_0bac8aecd629b97b_.log 2025-09-07T07:55:54.7274129Z 2025-09-07T07:55:54.7277990Z Running dynamo/test_cudagraphs 1/1 ... [2025-09-07 07:55:54.724891] 2025-09-07T07:55:54.7278442Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:55:54.7284585Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_cudagraphs.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:55:54.727999] 2025-09-07T07:55:58.4401591Z 2025-09-07T07:55:58.4402887Z dynamo/test_cudagraphs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_cudagraphs_1.1_604548f20d8e7ee2_.log 2025-09-07T07:55:58.4407163Z 2025-09-07T07:55:58.4407409Z Running dynamo/test_comptime 1/1 ... [2025-09-07 07:55:58.440597] 2025-09-07T07:55:58.4407821Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:55:58.4413816Z 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-09-07 07:55:58.441184] 2025-09-07T07:56:02.2001650Z 2025-09-07T07:56:02.2002822Z dynamo/test_comptime 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_comptime_1.1_8927a31efd69a411_.log 2025-09-07T07:56:02.2003527Z 2025-09-07T07:56:02.2007603Z Running cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic 1/1 ... [2025-09-07 07:56:02.200357] 2025-09-07T07:56:02.2008260Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:02.2014312Z 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-09-07 07:56:02.200927] 2025-09-07T07:56:06.0807040Z 2025-09-07T07:56:06.0808318Z 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_95745787e563e505_.log 2025-09-07T07:56:06.0809541Z Running 0 items in this shard: 2025-09-07T07:56:06.0809734Z 2025-09-07T07:56:06.0813285Z Running test_modules 2/2 ... [2025-09-07 07:56:06.081233] 2025-09-07T07:56:06.0813860Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:06.0819830Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_modules.py', '-m', 'serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:06.081849] 2025-09-07T07:56:11.9245915Z 2025-09-07T07:56:11.9246944Z test_modules 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_modules_2.2_1d56aea9ab109bcf_.log 2025-09-07T07:56:11.9247618Z Running 0 items in this shard: 2025-09-07T07:56:11.9247837Z 2025-09-07T07:56:11.9253180Z Running test_cuda_sanitizer 1/1 ... [2025-09-07 07:56:11.924837] 2025-09-07T07:56:11.9253607Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:11.9262276Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_sanitizer.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:11.926011] 2025-09-07T07:56:15.5123486Z 2025-09-07T07:56:15.5124344Z test_cuda_sanitizer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_sanitizer_1.1_fd5b439a88040490_.log 2025-09-07T07:56:15.5125125Z Running 0 items in this shard: 2025-09-07T07:56:15.5125308Z 2025-09-07T07:56:15.5129877Z Running inductor/test_unbacked_symints 1/1 ... [2025-09-07 07:56:15.512199] 2025-09-07T07:56:15.5130386Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:15.5136110Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_unbacked_symints.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:15.512199] 2025-09-07T07:56:25.0457053Z 2025-09-07T07:56:25.0458164Z inductor/test_unbacked_symints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_unbacked_symints_1.1_5bdee22a004dfc86_.log 2025-09-07T07:56:25.0458938Z 2025-09-07T07:56:25.0463125Z Running torch_np/numpy_tests/core/test_indexing 1/1 ... [2025-09-07 07:56:25.045989] 2025-09-07T07:56:25.0463721Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:25.0469661Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_indexing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:25.046579] 2025-09-07T07:56:28.7095043Z 2025-09-07T07:56:28.7096134Z torch_np/numpy_tests/core/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_indexing_1.1_23f3b06cc810e79b_.log 2025-09-07T07:56:28.7097017Z Running 0 items in this shard: 2025-09-07T07:56:28.7097237Z 2025-09-07T07:56:28.7102212Z Running nn/test_lazy_modules 1/1 ... [2025-09-07 07:56:28.709835] 2025-09-07T07:56:28.7102614Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:28.7110012Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_lazy_modules.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:28.710415] 2025-09-07T07:56:32.6230830Z 2025-09-07T07:56:32.6231750Z nn/test_lazy_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_lazy_modules_1.1_73bf45385b495e17_.log 2025-09-07T07:56:32.6232549Z Running 0 items in this shard: 2025-09-07T07:56:32.6232739Z 2025-09-07T07:56:32.6238192Z Running test_fx_reinplace_pass 1/1 ... [2025-09-07 07:56:32.623658] 2025-09-07T07:56:32.6238633Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:32.6244748Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx_reinplace_pass.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:32.623658] 2025-09-07T07:56:36.2094577Z 2025-09-07T07:56:36.2095488Z test_fx_reinplace_pass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_reinplace_pass_1.1_308a5eeddf526410_.log 2025-09-07T07:56:36.2096221Z Running 0 items in this shard: 2025-09-07T07:56:36.2096433Z 2025-09-07T07:56:36.2100631Z Running torch_np/numpy_tests/lib/test_type_check 1/1 ... [2025-09-07 07:56:36.205610] 2025-09-07T07:56:36.2101139Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:36.2107626Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_type_check.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:36.205610] 2025-09-07T07:56:39.9273028Z 2025-09-07T07:56:39.9274180Z torch_np/numpy_tests/lib/test_type_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_type_check_1.1_9c183d7e36cdefe1_.log 2025-09-07T07:56:39.9275111Z Running 0 items in this shard: 2025-09-07T07:56:39.9275296Z 2025-09-07T07:56:39.9279020Z Running inductor/test_custom_partitioner_fn 1/1 ... [2025-09-07 07:56:39.920481] 2025-09-07T07:56:39.9279516Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:39.9285493Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_partitioner_fn.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:39.920481] 2025-09-07T07:56:49.5032108Z 2025-09-07T07:56:49.5033287Z inductor/test_custom_partitioner_fn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_partitioner_fn_1.1_86d0c8dc2146081c_.log 2025-09-07T07:56:49.5034029Z 2025-09-07T07:56:49.5037902Z Running test_type_info 1/1 ... [2025-09-07 07:56:49.503539] 2025-09-07T07:56:49.5038311Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:49.5044463Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_info.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:49.503539] 2025-09-07T07:56:53.1184862Z 2025-09-07T07:56:53.1185765Z test_type_info 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_info_1.1_c0a2bb5ac8102542_.log 2025-09-07T07:56:53.1186560Z Running 0 items in this shard: 2025-09-07T07:56:53.1186771Z 2025-09-07T07:56:53.1190975Z Running lazy/test_functionalization 1/1 ... [2025-09-07 07:56:53.115180] 2025-09-07T07:56:53.1191476Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:53.1197249Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_functionalization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:53.115180] 2025-09-07T07:56:56.7000746Z 2025-09-07T07:56:56.7001677Z lazy/test_functionalization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_functionalization_1.1_bdc8d72fdcd44fed_.log 2025-09-07T07:56:56.7002516Z Running 0 items in this shard: 2025-09-07T07:56:56.7002699Z 2025-09-07T07:56:56.7006950Z Running test_functionalization_of_rng_ops 1/1 ... [2025-09-07 07:56:56.700458] 2025-09-07T07:56:56.7007438Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:56:56.7013659Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functionalization_of_rng_ops.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:56:56.701028] 2025-09-07T07:57:00.7300251Z 2025-09-07T07:57:00.7301211Z test_functionalization_of_rng_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functionalization_of_rng_ops_1.1_5d135608cf66dc7b_.log 2025-09-07T07:57:00.7301935Z 2025-09-07T07:57:00.7306322Z Running test_subclass 1/1 ... [2025-09-07 07:57:00.730341] 2025-09-07T07:57:00.7306703Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:00.7312895Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_subclass.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:57:00.730913] 2025-09-07T07:57:04.3199195Z 2025-09-07T07:57:04.3200070Z test_subclass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_subclass_1.1_2a89616db871f542_.log 2025-09-07T07:57:04.3200788Z Running 0 items in this shard: 2025-09-07T07:57:04.3200985Z 2025-09-07T07:57:04.3205172Z Running test_decomp 1/17 ... [2025-09-07 07:57:04.315392] 2025-09-07T07:57:04.3205542Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:04.3211550Z 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-09-07 07:57:04.321007] 2025-09-07T07:57:11.9054312Z 2025-09-07T07:57:11.9055417Z test_decomp 1/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_1.17_b47425ef280f651d_.log 2025-09-07T07:57:11.9056109Z Running 0 items in this shard: 2025-09-07T07:57:11.9056303Z 2025-09-07T07:57:11.9060324Z Running test_decomp 6/17 ... [2025-09-07 07:57:11.900308] 2025-09-07T07:57:11.9060720Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:11.9066731Z 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-09-07 07:57:11.900308] 2025-09-07T07:57:19.3731709Z 2025-09-07T07:57:19.3732515Z test_decomp 6/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_6.17_eb6772de909a4a16_.log 2025-09-07T07:57:19.3733208Z Running 0 items in this shard: 2025-09-07T07:57:19.3733395Z 2025-09-07T07:57:19.3737739Z Running test_decomp 7/17 ... [2025-09-07 07:57:19.364731] 2025-09-07T07:57:19.3738130Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:19.3743985Z 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-09-07 07:57:19.364731] 2025-09-07T07:57:26.8916419Z 2025-09-07T07:57:26.8917723Z test_decomp 7/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_7.17_b45b6c75cd272c6f_.log 2025-09-07T07:57:26.8918868Z Running 0 items in this shard: 2025-09-07T07:57:26.8919058Z 2025-09-07T07:57:26.8922943Z Running test_decomp 10/17 ... [2025-09-07 07:57:26.891679] 2025-09-07T07:57:26.8923378Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:26.8929815Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=10', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:57:26.892822] 2025-09-07T07:57:34.3525616Z 2025-09-07T07:57:34.3526457Z test_decomp 10/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_10.17_15e6a32abb0fa927_.log 2025-09-07T07:57:34.3527157Z Running 0 items in this shard: 2025-09-07T07:57:34.3527348Z 2025-09-07T07:57:34.3531411Z Running test_decomp 15/17 ... [2025-09-07 07:57:34.351169] 2025-09-07T07:57:34.3531791Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:34.3537711Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=15', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:57:34.351169] 2025-09-07T07:57:41.8104819Z 2025-09-07T07:57:41.8105996Z test_decomp 15/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_15.17_94d99d3966c9dea2_.log 2025-09-07T07:57:41.8106695Z Running 0 items in this shard: 2025-09-07T07:57:41.8106924Z 2025-09-07T07:57:41.8110987Z Running test_decomp 16/17 ... [2025-09-07 07:57:41.801772] 2025-09-07T07:57:41.8111438Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:41.8171119Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=16', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:57:41.801772] 2025-09-07T07:57:49.4178544Z 2025-09-07T07:57:49.4179626Z test_decomp 16/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_16.17_d0e80fe572c381fb_.log 2025-09-07T07:57:49.4180331Z Running 0 items in this shard: 2025-09-07T07:57:49.4180541Z 2025-09-07T07:57:49.4184626Z Running export/test_experimental 1/1 ... [2025-09-07 07:57:49.418058] 2025-09-07T07:57:49.4185054Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:49.4191492Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_experimental.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:57:49.418653] 2025-09-07T07:57:53.1610178Z 2025-09-07T07:57:53.1611270Z export/test_experimental 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_experimental_1.1_518ba6d132202f3a_.log 2025-09-07T07:57:53.1612056Z 2025-09-07T07:57:53.1616133Z Running dynamo/test_torchrec 1/1 ... [2025-09-07 07:57:53.161227] 2025-09-07T07:57:53.1616593Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:53.1622752Z 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-09-07 07:57:53.161830] 2025-09-07T07:57:56.8715607Z 2025-09-07T07:57:56.8716760Z dynamo/test_torchrec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_torchrec_1.1_3969b6f31001a91c_.log 2025-09-07T07:57:56.8717425Z 2025-09-07T07:57:56.8720985Z Running inductor/test_mmdecomp 1/1 ... [2025-09-07 07:57:56.872019] 2025-09-07T07:57:56.8721396Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:57:56.8738282Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mmdecomp.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:57:56.873212] 2025-09-07T07:58:06.3837163Z 2025-09-07T07:58:06.3838065Z inductor/test_mmdecomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mmdecomp_1.1_757d350e81697978_.log 2025-09-07T07:58:06.3838711Z 2025-09-07T07:58:06.3843079Z Running dynamo/test_ctx_manager 1/1 ... [2025-09-07 07:58:06.383759] 2025-09-07T07:58:06.3843674Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:06.3849677Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_ctx_manager.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:58:06.384330] 2025-09-07T07:58:16.0466465Z 2025-09-07T07:58:16.0468358Z dynamo/test_ctx_manager 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_ctx_manager_1.1_17bd3f31a171e2fd_.log 2025-09-07T07:58:16.0469009Z 2025-09-07T07:58:16.0472340Z Running dynamo/test_recompile_ux 1/1 ... [2025-09-07 07:58:16.046698] 2025-09-07T07:58:16.0472808Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:16.0479567Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_recompile_ux.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:58:16.047269] 2025-09-07T07:58:19.7148103Z 2025-09-07T07:58:19.7149046Z dynamo/test_recompile_ux 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompile_ux_1.1_7f2d9f1f06e34991_.log 2025-09-07T07:58:19.7149722Z 2025-09-07T07:58:19.7154271Z Running functorch/test_vmap_registrations 1/1 ... [2025-09-07 07:58:19.714879] 2025-09-07T07:58:19.7154765Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:19.7160844Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_vmap_registrations.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:58:19.715456] 2025-09-07T07:58:23.7569013Z 2025-09-07T07:58:23.7570173Z functorch/test_vmap_registrations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_registrations_1.1_681d9e2d8fa24337_.log 2025-09-07T07:58:23.7571039Z Running 0 items in this shard: 2025-09-07T07:58:23.7571211Z 2025-09-07T07:58:23.7575088Z Running torch_np/numpy_tests/core/test_dtype 1/1 ... [2025-09-07 07:58:23.751718] 2025-09-07T07:58:23.7575530Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:23.7581412Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_dtype.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:58:23.751718] 2025-09-07T07:58:27.4145519Z 2025-09-07T07:58:27.4146485Z torch_np/numpy_tests/core/test_dtype 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_dtype_1.1_600dad1e12496c13_.log 2025-09-07T07:58:27.4147343Z Running 0 items in this shard: 2025-09-07T07:58:27.4147526Z 2025-09-07T07:58:27.4151825Z Running torch_np/numpy_tests/core/test_shape_base 1/1 ... [2025-09-07 07:58:27.414910] 2025-09-07T07:58:27.4152305Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:27.4158525Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_shape_base.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:58:27.415480] 2025-09-07T07:58:31.0300813Z 2025-09-07T07:58:31.0301836Z torch_np/numpy_tests/core/test_shape_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_shape_base_1.1_876ff69987990a05_.log 2025-09-07T07:58:31.0302750Z Running 0 items in this shard: 2025-09-07T07:58:31.0302924Z 2025-09-07T07:58:31.0308283Z Running dynamo/test_hooks 1/1 ... [2025-09-07 07:58:31.030461] 2025-09-07T07:58:31.0308803Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:31.0316049Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_hooks.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:58:31.031041] 2025-09-07T07:58:34.6989748Z 2025-09-07T07:58:34.6990797Z dynamo/test_hooks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_hooks_1.1_c0296ab484f14874_.log 2025-09-07T07:58:34.6991411Z 2025-09-07T07:58:34.6995415Z Running nn/test_packed_sequence 1/1 ... [2025-09-07 07:58:34.696511] 2025-09-07T07:58:34.6995832Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:34.7001848Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_packed_sequence.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:58:34.696511] 2025-09-07T07:58:38.2973929Z 2025-09-07T07:58:38.2975025Z nn/test_packed_sequence 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_packed_sequence_1.1_e40ab8795f78e84b_.log 2025-09-07T07:58:38.2975807Z Running 0 items in this shard: 2025-09-07T07:58:38.2975982Z 2025-09-07T07:58:38.2981698Z Running export/test_verifier 1/1 ... [2025-09-07 07:58:38.297975] 2025-09-07T07:58:38.2982096Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:38.2988259Z 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-09-07 07:58:38.297975] 2025-09-07T07:58:41.8657707Z 2025-09-07T07:58:41.8658817Z export/test_verifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_verifier_1.1_862be091f54c49db_.log 2025-09-07T07:58:41.8659696Z Running 0 items in this shard: 2025-09-07T07:58:41.8659892Z 2025-09-07T07:58:41.8664064Z Running export/test_sparse 1/1 ... [2025-09-07 07:58:41.863289] 2025-09-07T07:58:41.8664618Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:41.8670267Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_sparse.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:58:41.863289] 2025-09-07T07:58:45.6273160Z 2025-09-07T07:58:45.6274182Z export/test_sparse 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_1.1_c06d65d0e59d408b_.log 2025-09-07T07:58:45.6274926Z Running 0 items in this shard: 2025-09-07T07:58:45.6275100Z 2025-09-07T07:58:45.6279286Z Running test_ops 5/9 ... [2025-09-07 07:58:45.617962] 2025-09-07T07:58:45.6279671Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:58:45.6288118Z 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-09-07 07:58:45.628066] 2025-09-07T07:59:04.5507282Z 2025-09-07T07:59:04.5508170Z test_ops 5/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_5.9_2ad433eccaf9d823_.log 2025-09-07T07:59:04.5508787Z Running 0 items in this shard: 2025-09-07T07:59:04.5508982Z 2025-09-07T07:59:04.5513733Z Running test_ops 6/9 ... [2025-09-07 07:59:04.543636] 2025-09-07T07:59:04.5514127Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:59:04.5519796Z 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-09-07 07:59:04.543636] 2025-09-07T07:59:23.2106922Z 2025-09-07T07:59:23.2107672Z test_ops 6/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_6.9_397675e115dfe8b9_.log 2025-09-07T07:59:23.2108312Z Running 0 items in this shard: 2025-09-07T07:59:23.2108503Z 2025-09-07T07:59:23.2112908Z Running test_ops 9/9 ... [2025-09-07 07:59:23.210939] 2025-09-07T07:59:23.2113248Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:59:23.2119625Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=9', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:59:23.211530] 2025-09-07T07:59:41.8854900Z 2025-09-07T07:59:41.8855661Z test_ops 9/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_9.9_3f43ef5b4efe7636_.log 2025-09-07T07:59:41.8856303Z Running 0 items in this shard: 2025-09-07T07:59:41.8856485Z 2025-09-07T07:59:41.8860948Z Running dynamo/test_python_autograd 1/1 ... [2025-09-07 07:59:41.882150] 2025-09-07T07:59:41.8861373Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:59:41.8867469Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_python_autograd.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:59:41.882150] 2025-09-07T07:59:45.6509071Z 2025-09-07T07:59:45.6510057Z dynamo/test_python_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_python_autograd_1.1_6a5daab724d8a8d7_.log 2025-09-07T07:59:45.6510816Z 2025-09-07T07:59:49.4673089Z Running inductor/test_aot_inductor 1/1 ... [2025-09-07 07:59:49.467060] 2025-09-07T07:59:49.4673563Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:59:49.4680082Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:59:49.467636] 2025-09-07T07:59:49.4743066Z Running inductor/test_aot_inductor_arrayref 1/1 ... [2025-09-07 07:59:49.473956] 2025-09-07T07:59:49.4743568Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:59:49.4750538Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_arrayref.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:59:49.474541] 2025-09-07T07:59:49.5029688Z Running inductor/test_cudagraph_trees 1/1 ... [2025-09-07 07:59:49.502175] 2025-09-07T07:59:49.5030161Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:59:49.5036581Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudagraph_trees.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:59:49.502175] 2025-09-07T07:59:53.3040525Z 2025-09-07T07:59:53.3041733Z inductor/test_aot_inductor_arrayref 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_arrayref_1.1_b8e7fe32b3a7d317_.log 2025-09-07T07:59:53.3042468Z 2025-09-07T07:59:57.6900988Z Running inductor/test_torchinductor_opinfo 1/1 ... [2025-09-07 07:59:57.689635] 2025-09-07T07:59:57.6901477Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T07:59:57.6907594Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_opinfo.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 07:59:57.690263] 2025-09-07T07:59:59.6136480Z 2025-09-07T07:59:59.6137423Z inductor/test_aot_inductor 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_1.1_c94a42d00c59a067_.log 2025-09-07T07:59:59.6138112Z 2025-09-07T08:00:01.6316688Z 2025-09-07T08:00:01.6317963Z inductor/test_cudagraph_trees 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudagraph_trees_1.1_40a3b725c139ccab_.log 2025-09-07T08:00:01.6318674Z 2025-09-07T08:00:03.9542411Z Running dynamo/test_dynamic_shapes 1/1 ... [2025-09-07 08:00:03.940505] 2025-09-07T08:00:03.9542883Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:03.9549029Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_dynamic_shapes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:00:03.940505] 2025-09-07T08:00:05.8955824Z Running inductor/test_minifier 1/1 ... [2025-09-07 08:00:05.894278] 2025-09-07T08:00:05.8956301Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:05.8957329Z 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-09-07 08:00:05.895046] 2025-09-07T08:00:09.1045935Z 2025-09-07T08:00:09.1046910Z inductor/test_torchinductor_opinfo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_opinfo_1.1_8de163dee6f5a6de_.log 2025-09-07T08:00:09.1047676Z 2025-09-07T08:00:13.3821949Z Running dynamo/test_repros 1/1 ... [2025-09-07 08:00:13.372377] 2025-09-07T08:00:13.3828169Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:13.3829431Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_repros.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:00:13.382720] 2025-09-07T08:00:15.7141419Z 2025-09-07T08:00:15.7142395Z dynamo/test_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_dynamic_shapes_1.1_b49a345d346e812f_.log 2025-09-07T08:00:15.7143078Z 2025-09-07T08:00:16.3075783Z 2025-09-07T08:00:16.3076606Z inductor/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_1.1_21e386ccb5baff12_.log 2025-09-07T08:00:16.3077251Z 2025-09-07T08:00:17.6893666Z 2025-09-07T08:00:17.6894483Z dynamo/test_repros 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_repros_1.1_e2ec44e8dd41b878_.log 2025-09-07T08:00:17.6895174Z 2025-09-07T08:00:19.9510800Z Running dynamo/test_pgo 1/1 ... [2025-09-07 08:00:19.937308] 2025-09-07T08:00:19.9511222Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:19.9517242Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_pgo.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:00:19.937308] 2025-09-07T08:00:20.6442254Z Running inductor/test_split_cat_fx_aten_passes 1/1 ... [2025-09-07 08:00:20.640652] 2025-09-07T08:00:20.6442747Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:20.6449034Z 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-09-07 08:00:20.640652] 2025-09-07T08:00:22.0404453Z Running dynamo/test_modes 1/1 ... [2025-09-07 08:00:22.036746] 2025-09-07T08:00:22.0404878Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:22.0410963Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:00:22.036746] 2025-09-07T08:00:23.7503695Z 2025-09-07T08:00:23.7504495Z dynamo/test_pgo 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_pgo_1.1_f42250a6deb77808_.log 2025-09-07T08:00:23.7505075Z 2025-09-07T08:00:28.0008951Z Running inductor/test_control_flow 1/1 ... [2025-09-07 08:00:27.999399] 2025-09-07T08:00:28.0009415Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:28.0015793Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_control_flow.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:00:27.999399] 2025-09-07T08:00:30.5792666Z 2025-09-07T08:00:30.5794065Z 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_6347a9d2cc3f4d9f_.log 2025-09-07T08:00:30.5794886Z 2025-09-07T08:00:32.5411937Z 2025-09-07T08:00:32.5412723Z dynamo/test_modes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modes_1.1_974cda421d7e2032_.log 2025-09-07T08:00:32.5413402Z 2025-09-07T08:00:34.8914823Z Running dynamo/test_logging 1/1 ... [2025-09-07 08:00:34.886097] 2025-09-07T08:00:34.8915264Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:34.8921955Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_logging.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:00:34.886097] 2025-09-07T08:00:36.8765786Z Running inductor/test_cpu_repro 1/1 ... [2025-09-07 08:00:36.876008] 2025-09-07T08:00:36.8766267Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:36.8808280Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_repro.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:00:36.880648] 2025-09-07T08:00:38.1100960Z 2025-09-07T08:00:38.1102007Z inductor/test_control_flow 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_control_flow_1.1_d93b934d5df6cc40_.log 2025-09-07T08:00:38.1102680Z 2025-09-07T08:00:42.2868999Z Running dynamo/test_compiler_bisector 1/1 ... [2025-09-07 08:00:42.286227] 2025-09-07T08:00:42.2869482Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:42.2875604Z 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-09-07 08:00:42.286227] 2025-09-07T08:00:45.1999483Z 2025-09-07T08:00:45.2000330Z dynamo/test_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_logging_1.1_74b4982cd95c1d45_.log 2025-09-07T08:00:45.2000943Z 2025-09-07T08:00:47.6077520Z 2025-09-07T08:00:49.5651288Z inductor/test_cpu_repro 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_repro_1.1_aaf7db28a2092ba8_.log 2025-09-07T08:00:49.5651950Z 2025-09-07T08:00:49.5652157Z Running export/test_retraceability 1/1 ... [2025-09-07 08:00:49.564938] 2025-09-07T08:00:49.5652780Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:49.5657845Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_retraceability.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:00:49.564938] 2025-09-07T08:00:51.8305093Z Running inductor/test_triton_syntax 1/1 ... [2025-09-07 08:00:51.823673] 2025-09-07T08:00:51.8305552Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:51.8313180Z 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-09-07 08:00:51.823673] 2025-09-07T08:00:52.4923854Z 2025-09-07T08:00:52.4924982Z 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_e8e87f62d661fa4d_.log 2025-09-07T08:00:52.4925673Z 2025-09-07T08:00:56.8972544Z Running inductor/test_cpp_wrapper_hipify 1/1 ... [2025-09-07 08:00:56.896939] 2025-09-07T08:00:56.8973007Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:00:56.8990466Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpp_wrapper_hipify.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:00:56.898727] 2025-09-07T08:00:59.7731523Z 2025-09-07T08:00:59.7732550Z export/test_retraceability 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_retraceability_1.1_95765b5954e2c369_.log 2025-09-07T08:00:59.7733220Z 2025-09-07T08:01:01.3564974Z 2025-09-07T08:01:01.3566078Z inductor/test_cpp_wrapper_hipify 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpp_wrapper_hipify_1.1_67acd38d14d5e198_.log 2025-09-07T08:01:01.3566801Z 2025-09-07T08:01:01.8181247Z 2025-09-07T08:01:01.8182153Z 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_69caaaadfc4424b0_.log 2025-09-07T08:01:01.8182831Z 2025-09-07T08:01:04.0124370Z Running export/test_export_training_ir_to_run_decomp 1/1 ... [2025-09-07 08:01:04.008435] 2025-09-07T08:01:04.0124880Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:04.0131205Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export_training_ir_to_run_decomp.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:04.008435] 2025-09-07T08:01:05.8672283Z Running dynamo/test_base_output 1/1 ... [2025-09-07 08:01:05.851823] 2025-09-07T08:01:05.8672737Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:05.8679412Z 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-09-07 08:01:05.867740] 2025-09-07T08:01:06.0380255Z Running inductor/test_flex_decoding 1/1 ... [2025-09-07 08:01:06.037703] 2025-09-07T08:01:06.0380720Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:06.0387196Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_flex_decoding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:06.038281] 2025-09-07T08:01:09.8730866Z 2025-09-07T08:01:09.8731958Z 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_c479f681d3d00b32_.log 2025-09-07T08:01:09.8732600Z 2025-09-07T08:01:14.0138381Z Running inductor/test_ck_backend 1/1 ... [2025-09-07 08:01:14.012865] 2025-09-07T08:01:14.0138835Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:14.0145040Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ck_backend.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:14.012865] 2025-09-07T08:01:14.2003687Z 2025-09-07T08:01:14.2004873Z export/test_export_training_ir_to_run_decomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_training_ir_to_run_decomp_1.1_f54a397d79bcd252_.log 2025-09-07T08:01:14.2005668Z 2025-09-07T08:01:16.3606384Z 2025-09-07T08:01:16.3607432Z inductor/test_flex_decoding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_flex_decoding_1.1_8efd517c33c89e59_.log 2025-09-07T08:01:16.3608127Z 2025-09-07T08:01:18.4262905Z Running dynamo/test_skip_guard_eval_unsafe 1/1 ... [2025-09-07 08:01:18.422483] 2025-09-07T08:01:18.4263377Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:18.4269428Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_skip_guard_eval_unsafe.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:18.422483] 2025-09-07T08:01:20.7213065Z Running inductor/test_inductor_annotations 1/1 ... [2025-09-07 08:01:20.720926] 2025-09-07T08:01:20.7213565Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:20.7219730Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_annotations.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:20.721518] 2025-09-07T08:01:22.2656496Z 2025-09-07T08:01:22.2657797Z dynamo/test_skip_guard_eval_unsafe 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_skip_guard_eval_unsafe_1.1_18d6e82adb4f0ba1_.log 2025-09-07T08:01:22.2658584Z 2025-09-07T08:01:24.1048480Z 2025-09-07T08:01:24.1049562Z inductor/test_ck_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ck_backend_1.1_a69881e1de016c11_.log 2025-09-07T08:01:24.1050294Z 2025-09-07T08:01:26.6063802Z Running inductor/test_debug_trace 1/1 ... [2025-09-07 08:01:26.605641] 2025-09-07T08:01:26.6064285Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:26.6070637Z 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-09-07 08:01:26.605641] 2025-09-07T08:01:28.3789169Z Running inductor/test_best_config 1/1 ... [2025-09-07 08:01:28.378400] 2025-09-07T08:01:28.3789701Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:28.3795949Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_best_config.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:28.379021] 2025-09-07T08:01:30.5594000Z 2025-09-07T08:01:30.5595341Z inductor/test_inductor_annotations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_annotations_1.1_1873496305f5ebb2_.log 2025-09-07T08:01:30.5596247Z 2025-09-07T08:01:35.2293175Z Running inductor/test_pad_mm 1/1 ... [2025-09-07 08:01:35.228847] 2025-09-07T08:01:35.2293657Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:35.2300976Z 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-09-07 08:01:35.229441] 2025-09-07T08:01:36.7454725Z 2025-09-07T08:01:36.7455883Z 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_e65e86098ebad424_.log 2025-09-07T08:01:36.7456572Z 2025-09-07T08:01:38.7197486Z 2025-09-07T08:01:38.7198555Z inductor/test_best_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_best_config_1.1_46f014a6358135a0_.log 2025-09-07T08:01:38.7199262Z 2025-09-07T08:01:40.9667497Z Running dynamo/test_modules 1/1 ... [2025-09-07 08:01:40.959504] 2025-09-07T08:01:40.9668013Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:40.9673986Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_modules.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:40.959504] 2025-09-07T08:01:42.9248206Z Running inductor/test_triton_wrapper 1/1 ... [2025-09-07 08:01:42.914633] 2025-09-07T08:01:42.9248696Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:42.9254550Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_wrapper.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:42.925264] 2025-09-07T08:01:45.1349989Z 2025-09-07T08:01:45.1351004Z 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_f078afb22b4715d7_.log 2025-09-07T08:01:45.1351695Z 2025-09-07T08:01:49.8409856Z Running dynamo/test_metrics_context 1/1 ... [2025-09-07 08:01:49.833317] 2025-09-07T08:01:49.8410376Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:49.8416432Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_metrics_context.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:49.833317] 2025-09-07T08:01:50.9320342Z 2025-09-07T08:01:50.9321504Z dynamo/test_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_modules_1.1_e1bad25dbc46b2ee_.log 2025-09-07T08:01:50.9322146Z 2025-09-07T08:01:52.9924590Z 2025-09-07T08:01:52.9925589Z inductor/test_triton_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_wrapper_1.1_abdf956375c350f3_.log 2025-09-07T08:01:52.9926321Z 2025-09-07T08:01:53.4502296Z 2025-09-07T08:01:53.4503344Z dynamo/test_metrics_context 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_metrics_context_1.1_4aa9901a6438695f_.log 2025-09-07T08:01:53.4504033Z 2025-09-07T08:01:55.1224988Z Running inductor/test_fx_fusion 1/1 ... [2025-09-07 08:01:55.122072] 2025-09-07T08:01:55.1225445Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:55.1231718Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fx_fusion.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:55.122677] 2025-09-07T08:01:57.1600312Z Running dynamo/test_frame_init 1/1 ... [2025-09-07 08:01:57.151599] 2025-09-07T08:01:57.1600975Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:57.1607070Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_frame_init.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:01:57.151599] 2025-09-07T08:01:57.6649147Z Running inductor/test_coordinate_descent_tuner 1/1 ... [2025-09-07 08:01:57.664568] 2025-09-07T08:01:57.6649703Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:01:57.6657218Z 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-09-07 08:01:57.665165] 2025-09-07T08:02:00.4349858Z 2025-09-07T08:02:00.4350939Z inductor/test_fx_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fx_fusion_1.1_d59e888b2e27cc3c_.log 2025-09-07T08:02:00.4351619Z 2025-09-07T08:02:00.9814942Z 2025-09-07T08:02:00.9815898Z dynamo/test_frame_init 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_frame_init_1.1_18035e8cdf29d073_.log 2025-09-07T08:02:00.9816544Z 2025-09-07T08:02:04.6498981Z Running dynamo/test_sdpa 1/1 ... [2025-09-07 08:02:04.645217] 2025-09-07T08:02:04.6499422Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:04.6505583Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_sdpa.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:04.645217] 2025-09-07T08:02:05.1578319Z Running xpu/test_fusion 1/1 ... [2025-09-07 08:02:05.148455] 2025-09-07T08:02:05.1578784Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:05.1584633Z 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-09-07 08:02:05.148455] 2025-09-07T08:02:07.8776560Z 2025-09-07T08:02:07.8777604Z 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_cd97448c5352a8b0_.log 2025-09-07T08:02:07.8778374Z 2025-09-07T08:02:08.5591789Z 2025-09-07T08:02:08.5592777Z dynamo/test_sdpa 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_sdpa_1.1_e93338900d672c75_.log 2025-09-07T08:02:08.5593408Z 2025-09-07T08:02:09.5024110Z 2025-09-07T08:02:09.5025123Z xpu/test_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_fusion_1.1_aefce7c7fffda580_.log 2025-09-07T08:02:09.5025872Z Running 0 items in this shard: 2025-09-07T08:02:09.5026057Z 2025-09-07T08:02:12.1835619Z Running dynamo/test_recompiles 1/1 ... [2025-09-07 08:02:12.182396] 2025-09-07T08:02:12.1836120Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:12.1841481Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_recompiles.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:12.183500] 2025-09-07T08:02:12.7367053Z Running inductor/test_fp8 1/1 ... [2025-09-07 08:02:12.736064] 2025-09-07T08:02:12.7367526Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:12.7373440Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_fp8.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:12.736064] 2025-09-07T08:02:13.8061530Z Running dynamo/test_fx_passes_pre_grad 1/1 ... [2025-09-07 08:02:13.803466] 2025-09-07T08:02:13.8062069Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:13.8067894Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_fx_passes_pre_grad.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:13.803466] 2025-09-07T08:02:16.1143614Z 2025-09-07T08:02:16.1144561Z dynamo/test_recompiles 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompiles_1.1_4143768c802966e2_.log 2025-09-07T08:02:16.1145400Z 2025-09-07T08:02:17.3864355Z 2025-09-07T08:02:17.3865396Z dynamo/test_fx_passes_pre_grad 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_fx_passes_pre_grad_1.1_fe60751c3de6a4ef_.log 2025-09-07T08:02:17.3866175Z 2025-09-07T08:02:20.4483155Z Running inductor/test_op_completeness 1/1 ... [2025-09-07 08:02:20.446935] 2025-09-07T08:02:20.4483702Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:20.4489690Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_completeness.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:20.446935] 2025-09-07T08:02:21.5768787Z Running dynamo/test_utils 1/1 ... [2025-09-07 08:02:21.576605] 2025-09-07T08:02:21.5769203Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:21.5775258Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:21.577177] 2025-09-07T08:02:22.8500175Z 2025-09-07T08:02:22.8500957Z inductor/test_fp8 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_fp8_1.1_64e5bd23846373a5_.log 2025-09-07T08:02:22.8501628Z 2025-09-07T08:02:24.5190349Z 2025-09-07T08:02:24.5191334Z inductor/test_op_completeness 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_completeness_1.1_83b5525669dc3aa1_.log 2025-09-07T08:02:24.5192027Z 2025-09-07T08:02:25.1270521Z 2025-09-07T08:02:25.1271528Z dynamo/test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_utils_1.1_7c3a5c3ecc431329_.log 2025-09-07T08:02:25.1272273Z 2025-09-07T08:02:27.1120452Z Running dynamo/test_reconstruct 1/1 ... [2025-09-07 08:02:27.111574] 2025-09-07T08:02:27.1120883Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:27.1127467Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_reconstruct.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:27.112154] 2025-09-07T08:02:28.7652289Z Running inductor/test_cpu_cpp_wrapper 1/1 ... [2025-09-07 08:02:28.765052] 2025-09-07T08:02:28.7652748Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:28.7659289Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_cpp_wrapper.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:28.765632] 2025-09-07T08:02:29.3155483Z Running dynamo/test_autograd_function 1/1 ... [2025-09-07 08:02:29.315360] 2025-09-07T08:02:29.3155944Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:29.3162554Z 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-09-07 08:02:29.315991] 2025-09-07T08:02:37.2791699Z 2025-09-07T08:02:37.2792830Z dynamo/test_reconstruct 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_reconstruct_1.1_aa833b72d2a6092c_.log 2025-09-07T08:02:37.2793587Z 2025-09-07T08:02:39.3793252Z 2025-09-07T08:02:39.3794168Z 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_2ff38585fdd8f14d_.log 2025-09-07T08:02:39.3794871Z 2025-09-07T08:02:41.6066331Z Running inductor/test_alignment 1/1 ... [2025-09-07 08:02:41.605986] 2025-09-07T08:02:41.6072506Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:41.6073560Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_alignment.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:41.607154] 2025-09-07T08:02:42.0409390Z 2025-09-07T08:02:42.0410298Z inductor/test_cpu_cpp_wrapper 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_cpp_wrapper_1.1_95a7521ee6d9a539_.log 2025-09-07T08:02:42.0410982Z 2025-09-07T08:02:43.7894943Z Running functorch/test_ops 5/8 ... [2025-09-07 08:02:43.788347] 2025-09-07T08:02:43.7895369Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:43.7901436Z 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-09-07 08:02:43.788347] 2025-09-07T08:02:46.4286433Z Running inductor/test_group_batch_fusion 1/1 ... [2025-09-07 08:02:46.428263] 2025-09-07T08:02:46.4286924Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:46.4293008Z 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-09-07 08:02:46.428881] 2025-09-07T08:02:51.9576144Z 2025-09-07T08:02:51.9577491Z inductor/test_alignment 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_alignment_1.1_faa174ebd7b4caea_.log 2025-09-07T08:02:51.9578157Z 2025-09-07T08:02:56.8586807Z Running inductor/test_quantization 1/1 ... [2025-09-07 08:02:56.858486] 2025-09-07T08:02:56.8587533Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:02:56.8594612Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_quantization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:02:56.859121] 2025-09-07T08:02:57.1331754Z 2025-09-07T08:02:57.1333142Z 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_860be47aebff8aa5_.log 2025-09-07T08:02:57.1334351Z 2025-09-07T08:03:02.1665861Z Running inductor/test_cooperative_reductions 1/1 ... [2025-09-07 08:03:02.165874] 2025-09-07T08:03:02.1666669Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:03:02.1672896Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cooperative_reductions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:03:02.167020] 2025-09-07T08:03:08.2119281Z 2025-09-07T08:03:08.2120754Z inductor/test_quantization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_quantization_1.1_de9d8ea277eebfcc_.log 2025-09-07T08:03:08.2121923Z 2025-09-07T08:03:12.8996161Z Running inductor/test_codegen_triton 1/1 ... [2025-09-07 08:03:12.899128] 2025-09-07T08:03:12.8996639Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:03:12.9005692Z 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-09-07 08:03:12.900316] 2025-09-07T08:03:13.3001200Z 2025-09-07T08:03:13.3002269Z inductor/test_cooperative_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cooperative_reductions_1.1_4214ae19dcad638d_.log 2025-09-07T08:03:13.3003035Z 2025-09-07T08:03:17.8466477Z Running inductor/test_custom_post_grad_passes 1/1 ... [2025-09-07 08:03:17.846442] 2025-09-07T08:03:17.8467069Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:03:17.8476468Z 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-09-07 08:03:17.847474] 2025-09-07T08:03:23.7814838Z 2025-09-07T08:03:23.7816158Z 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_4b5b4c056fd9888b_.log 2025-09-07T08:03:23.7817313Z 2025-09-07T08:03:28.5846649Z 2025-09-07T08:03:28.5847917Z 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_bb5d451e7515c5eb_.log 2025-09-07T08:03:28.5848709Z 2025-09-07T08:03:28.6007935Z Running test_meta 4/5 ... [2025-09-07 08:03:28.600301] 2025-09-07T08:03:28.6008310Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:03:28.6014716Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'not serial', '--shard-id=4', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:03:28.600888] 2025-09-07T08:03:33.1419938Z Running test_meta 5/5 ... [2025-09-07 08:03:33.141709] 2025-09-07T08:03:33.1425953Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:03:33.1426973Z 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-09-07 08:03:33.141709] 2025-09-07T08:12:50.4785025Z 2025-09-07T08:12:50.4788816Z functorch/test_ops 5/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_5.8_ae9863216b704fbc_.log 2025-09-07T08:12:50.5574400Z Running 1328 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_grid_sampler_3d_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-09-07T08:12:50.6270448Z 2025-09-07T08:12:55.7028793Z Running xpu/test_gemm 1/1 ... [2025-09-07 08:12:55.694907] 2025-09-07T08:12:55.7029515Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:12:55.7038076Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_gemm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:12:55.694907] 2025-09-07T08:13:01.2160657Z 2025-09-07T08:13:01.2163627Z xpu/test_gemm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_gemm_1.1_5abc27ef3e639f26_.log 2025-09-07T08:13:01.2172360Z Running 0 items in this shard: 2025-09-07T08:13:01.2205206Z 2025-09-07T08:13:06.4690604Z Running higher_order_ops/test_invoke_quant 1/1 ... [2025-09-07 08:13:06.459790] 2025-09-07T08:13:06.4691484Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:13:06.4698278Z 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-09-07 08:13:06.459790] 2025-09-07T08:13:26.1887990Z 2025-09-07T08:13:26.1888876Z test_meta 5/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_5.5_65a30b9f9f6db6a4_.log 2025-09-07T08:13:26.4523764Z Running 8087 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_grid_sampler_3d_cpu_bfloat16, 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_grid_sampler_3d_cpu_float16, 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_grid_sampler_3d_cpu_bfloat16, 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_grid_sampler_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_3d_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-09-07T08:13:26.7536716Z 2025-09-07T08:13:28.0561803Z 2025-09-07T08:13:28.0563068Z 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_18ef64b55ef0548e_.log 2025-09-07T08:13:28.0568459Z 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-09-07T08:13:28.0573402Z 2025-09-07T08:13:30.5700916Z Running dynamo/test_unittest 1/1 ... [2025-09-07 08:13:30.564196] 2025-09-07T08:13:30.5701367Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:13:30.5707689Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unittest.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:13:30.564196] 2025-09-07T08:13:32.2674871Z Running functorch/test_minifier 1/1 ... [2025-09-07 08:13:32.267235] 2025-09-07T08:13:32.2675628Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:13:32.2682143Z 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-09-07 08:13:32.267565] 2025-09-07T08:13:34.7195256Z 2025-09-07T08:13:34.7196161Z dynamo/test_unittest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unittest_1.1_3dd41c608413b0c8_.log 2025-09-07T08:13:34.7196847Z 2025-09-07T08:13:37.0583509Z 2025-09-07T08:13:37.0584444Z functorch/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_minifier_1.1_519a78d0b98f4570_.log 2025-09-07T08:13:37.0586456Z 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-09-07T08:13:37.0587871Z 2025-09-07T08:13:39.0164083Z Running test_legacy_vmap 1/1 ... [2025-09-07 08:13:39.010700] 2025-09-07T08:13:39.0164556Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:13:39.0170601Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_legacy_vmap.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:13:39.010700] 2025-09-07T08:13:40.6230593Z 2025-09-07T08:13:40.6231661Z test_meta 4/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_4.5_02b5ee2023833812_.log 2025-09-07T08:13:40.8847680Z Running 8187 items in this shard: test/test_meta.py::TestMetaConverter::test_channels_last, test/test_meta.py::TestMetaConverter::test_empty_strided_non_dense_leaf, test/test_meta.py::TestMetaConverter::test_requires_grad_false, test/test_meta.py::TestMetaConverter::test_view_as_complex, test/test_meta.py::TestMetaConverter::test_view_as_real, test/test_meta.py::TestMetaCPU::test_batch_norm_backward_output_mask0_cpu, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_offsets_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_left_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_grid_sampler_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_number_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pca_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_quantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__batch_norm_with_update_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geqrf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_instance_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_trilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_prelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softplus_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_inplace_bin_ops_error_cpu, test/test_meta.py::TestMetaCPU::test_meta__fused_moving_avg_obs_fq_helper_cpu, test/test_meta.py::TestMetaCPU::test_meta_consistency_out_dtype_mismatch_pow_Tensor_Scalar_cpu, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigvalsh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_triangular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_huber_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_frexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_instance_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_general_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_log_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_quantized_embedding_bag_cpu 2025-09-07T08:13:41.1363986Z 2025-09-07T08:13:41.4515618Z Running torch_np/numpy_tests/core/test_einsum 1/1 ... [2025-09-07 08:13:41.451136] 2025-09-07T08:13:41.4516142Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:13:41.4524166Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_einsum.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:13:41.451726] 2025-09-07T08:13:45.3054277Z Running inductor/test_benchmarking 1/1 ... [2025-09-07 08:13:45.297709] 2025-09-07T08:13:45.3054787Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:13:45.3060954Z 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-09-07 08:13:45.297709] 2025-09-07T08:13:46.0045236Z 2025-09-07T08:13:46.0046599Z test_legacy_vmap 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_legacy_vmap_1.1_e781e2694952d942_.log 2025-09-07T08:13:46.0111014Z Running 124 items in this shard: test/test_legacy_vmap.py::TestVmapAPILegacy::test_accepts_nested_inputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_backward_unsupported_interaction, test/test_legacy_vmap.py::TestVmapAPILegacy::test_batched_gradient_basic, test/test_legacy_vmap.py::TestVmapAPILegacy::test_constant_function, test/test_legacy_vmap.py::TestVmapAPILegacy::test_different_map_dim_size_raises, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_atan2, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_does_not_warn_by_default, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_masked_fill, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_multiple_returns, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_warns_when_warnings_are_enabled, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_with_undefined_grad, test/test_legacy_vmap.py::TestVmapAPILegacy::test_fallback_zero_dim, test/test_legacy_vmap.py::TestVmapAPILegacy::test_func_with_no_inputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_functools_partial, test/test_legacy_vmap.py::TestVmapAPILegacy::test_grad_unsupported_interaction, test/test_legacy_vmap.py::TestVmapAPILegacy::test_in_dim_not_in_tensor_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_in_dims_wrong_type_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_inplace_fallback_nary_different_levels, test/test_legacy_vmap.py::TestVmapAPILegacy::test_inplace_fallback_nary_same_levels, test/test_legacy_vmap.py::TestVmapAPILegacy::test_inplace_fallback_unary, test/test_legacy_vmap.py::TestVmapAPILegacy::test_integer_in_dim_but_not_tensor_input_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_inputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_outputs, test/test_legacy_vmap.py::TestVmapAPILegacy::test_multiple_outputs_error_cases, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_non_default_in_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_with_different_map_dim, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nested_with_same_map_dim, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nn_module, test/test_legacy_vmap.py::TestVmapAPILegacy::test_non_default_in_dims_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_non_tensor_output_raises, test/test_legacy_vmap.py::TestVmapAPILegacy::test_non_zero_in_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_none_in_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_nonzero_out_dims, test/test_legacy_vmap.py::TestVmapAPILegacy::test_noop_in_inner_vmap, test/test_legacy_vmap.py::TestVmapAPILegacy::test_not_enough_in_dims_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dim_out_of_bounds_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dims_and_num_outputs_mismatch_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dims_edge_case, test/test_legacy_vmap.py::TestVmapAPILegacy::test_out_dims_must_be_int_or_tuple_of_int_err_msg, test/test_legacy_vmap.py::TestVmapAPILegacy::test_single_input, test/test_legacy_vmap.py::TestVmapAPILegacy::test_unsupported_op_err_msg, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_T_numpy, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_as_strided, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_binary_pointwise_ops, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_bmm, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_cat, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_chunk, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_clamp, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_clone, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_comparison_ops, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_conj, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_contiguous, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_diagonal, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_dot, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_expand_as, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_fill_and_zero_inplace, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_imag, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_is_complex, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_is_contiguous, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_is_floating_point, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_mm, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_movedim, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_mv, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_narrow, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_new_empty, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_new_empty_strided, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_new_zeros, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_no_random_op_support, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_real, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_reshape, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_reshape_as, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_result_type, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_select, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_slice, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_split, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_squeeze, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_stack, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_stride, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_sum_dim, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_t, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_tensor_split, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_to, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_trace, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_transpose, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_unary_pointwise_ops, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_unbind, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_unfold, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view_as, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view_as_complex, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_view_as_real, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_vmap_fallback_check, test/test_legacy_vmap.py::TestVmapOperatorsLegacy::test_vmap_fallback_check_ok, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_add_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_binary_cross_entropy_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_diagonal_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_div_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_expand_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_index_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_inplace_manyview_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_inplace_on_view_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_lgamma_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_log1p_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_log_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_logsumexp_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_max_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_median_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_min_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_mul_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_permute_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_reshape_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_select_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_sigmoid_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_slice_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_stack_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_sub_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_threshold_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_trace_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_unrelated_output_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_unrelated_output_multiple_grad_cpu, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_vmap_fallback_check, test/test_legacy_vmap.py::TestVmapBatchedGradientLegacyCPU::test_vmap_fallback_check_ok 2025-09-07T08:13:46.0172604Z 2025-09-07T08:13:50.1329960Z Running torch_np/test_basic 1/1 ... [2025-09-07 08:13:50.128227] 2025-09-07T08:13:50.1330413Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:13:50.1336463Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_basic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:13:50.128227] 2025-09-07T08:13:55.3524602Z 2025-09-07T08:13:55.3525842Z inductor/test_benchmarking 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_benchmarking_1.1_4a1a2b5ebd7ea6b7_.log 2025-09-07T08:13:55.3526599Z 2025-09-07T08:13:56.2379929Z 2025-09-07T08:13:56.2381058Z torch_np/test_basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_basic_1.1_c717888af260a50e_.log 2025-09-07T08:13:56.2508734Z Running 453 items in this shard: test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func0, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func1, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func10, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func11, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func12, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func13, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func14, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func15, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func16, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func17, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func18, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func19, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func2, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func20, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func21, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func22, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func23, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func24, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func25, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func26, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func27, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func28, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func29, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func3, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func30, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func31, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func32, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func33, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func34, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func35, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func36, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func37, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func38, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func39, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func4, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func40, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func41, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func42, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func43, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func44, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func45, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func46, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func47, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func48, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func49, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func5, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func50, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func51, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func52, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func53, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func54, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func55, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func56, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func57, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func58, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func59, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func6, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func60, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func61, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func62, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func63, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func64, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func65, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func66, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func67, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func68, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func69, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func7, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func70, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func71, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func72, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func73, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func74, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func8, test/torch_np/test_basic.py::TestOneArr::test_asarray_array_func9, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func0, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func1, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func10, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func11, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func12, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func13, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func14, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func15, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func16, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func17, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func18, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func19, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func2, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func20, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func21, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func22, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func23, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func24, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func25, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func26, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func27, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func28, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func29, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func3, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func30, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func31, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func32, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func33, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func34, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func35, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func36, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func37, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func38, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func39, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func4, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func40, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func41, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func42, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func43, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func44, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func45, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func46, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func47, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func48, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func49, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func5, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func50, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func51, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func52, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func53, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func54, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func55, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func56, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func57, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func58, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func59, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func6, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func60, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func61, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func62, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func63, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func64, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func65, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func66, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func67, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func68, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func69, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func7, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func70, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func71, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func72, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func73, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func74, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func8, test/torch_np/test_basic.py::TestOneArr::test_asarray_list_func9, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func0, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func1, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func10, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func11, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func12, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func13, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func14, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func15, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func16, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func17, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func18, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func19, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func2, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func20, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func21, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func22, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func23, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func24, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func25, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func26, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func27, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func28, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func29, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func3, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func30, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func31, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func32, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func33, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func34, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func35, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func36, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func37, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func38, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func39, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func4, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func40, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func41, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func42, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func43, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func44, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func45, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func46, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func47, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func48, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func49, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func5, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func50, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func51, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func52, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func53, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func54, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func55, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func56, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func57, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func58, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func59, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func6, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func60, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func61, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func62, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func63, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func64, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func65, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func66, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func67, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func68, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func69, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func7, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func70, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func71, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func72, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func73, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func74, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func8, test/torch_np/test_basic.py::TestOneArr::test_asarray_tensor_func9, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func0_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func10_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func1_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func2_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func3_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func4_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func5_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func6_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func7_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func8_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_array_func9_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func0_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func10_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func1_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func2_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func3_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func4_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func5_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func6_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func7_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func8_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_list_func9_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func0_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func10_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func1_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func2_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func3_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func4_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func5_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func6_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func7_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func8_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis3, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis_-1, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis_0, test/torch_np/test_basic.py::TestOneArrAndAxis::test_andaxis_tensor_func9_axis_1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_array_func0_axes0, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_array_func0_axes1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_array_func0_axes2, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_list_func0_axes0, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_list_func0_axes1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_list_func0_axes2, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_tensor_func0_axes0, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_tensor_func0_axes1, test/torch_np/test_basic.py::TestOneArrAndAxesTuple::test_andtuple_tensor_func0_axes2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func0, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func1, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func3, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_array_func4, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func0, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func1, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func3, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_list_func4, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func0, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func1, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func2, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func3, test/torch_np/test_basic.py::TestOneArrAndShape::test_andshape_tensor_func4, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_array_func0_np_func0, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_array_func1_np_func1, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_array_func2_np_func2, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_list_func0_np_func0, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_list_func1_np_func1, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_list_func2_np_func2, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_tensor_func0_np_func0, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_tensor_func1_np_func1, test/torch_np/test_basic.py::TestOneArrToScalar::test_toscalar_tensor_func2_np_func2, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func0, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func1, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func2, test/torch_np/test_basic.py::TestShapeLikeToArray::test_shape_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_several_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_array_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_list_func3, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func0, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func1, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func2, test/torch_np/test_basic.py::TestSequenceOfArrays::test_single_tensor_func3, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func0, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func1, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func2, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func3, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func4, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func5, test/torch_np/test_basic.py::TestSequenceOfArraysToSingle::test_several_func6, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_array_func0, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_array_func1, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_list_func0, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_list_func1, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_tensor_func0, test/torch_np/test_basic.py::TestArrayToSequence::test_asarray_tensor_func1, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func0_args0, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func1_args1, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func2_args2, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func3_args3, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func4_args4, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func5_args5, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func6_args6, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func7_args7, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func8_args8, test/torch_np/test_basic.py::TestPythonArgsToArray::test_argstoarray_simple_func9_args9, test/torch_np/test_basic.py::TestNormalizations::test_too_few_args_positional, test/torch_np/test_basic.py::TestNormalizations::test_unknown_args, test/torch_np/test_basic.py::TestNormalizations::test_unknown_args_with_defaults, test/torch_np/test_basic.py::TestCopyTo::test_copyto_basic, test/torch_np/test_basic.py::TestCopyTo::test_copyto_typecast, test/torch_np/test_basic.py::TestCopyTo::test_copytobcast, test/torch_np/test_basic.py::TestDivmod::test_divmod_no_out, test/torch_np/test_basic.py::TestDivmod::test_divmod_out, test/torch_np/test_basic.py::TestDivmod::test_divmod_out_both_pos_and_kw, test/torch_np/test_basic.py::TestDivmod::test_divmod_out_list, test/torch_np/test_basic.py::TestDivmod::test_divmod_pos_only, test/torch_np/test_basic.py::TestSmokeNotImpl::test_nimpl_basic, test/torch_np/test_basic.py::TestDefaultDtype::test_defaultdtype_defaults, test/torch_np/test_basic.py::TestDefaultDtype::test_set_default_float_dt_float32, test/torch_np/test_basic.py::TestDefaultDtype::test_set_default_float_dt_pytorch, test/torch_np/test_basic.py::TestDefaultDtype::test_set_default_float_float32, test/torch_np/test_basic.py::TestExport::test_exported_objects, test/torch_np/test_basic.py::TestCtorNested::test_arrays_in_lists, test/torch_np/test_basic.py::TestMisc::test_f16_on_cuda, test/torch_np/test_basic.py::TestMisc::test_ndarrays_to_tensors 2025-09-07T08:13:56.2641639Z 2025-09-07T08:13:59.6594605Z 2025-09-07T08:13:59.6595864Z torch_np/numpy_tests/core/test_einsum 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_einsum_1.1_0167d7603df4f768_.log 2025-09-07T08:13:59.6612269Z Running 50 items in this shard: test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_broadcasting_dot_cases, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_collapse, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_combined_views_mapping, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_complex, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_B, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_D, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_F, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_b, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_d, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_e, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_f, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_h, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_i, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_different_paths_dtype_l, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_edge_cases, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_all_contig_non_contig_output, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_broadcast, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_errors, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_failed_on_p9_and_s390x, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_fixed_collapsingbug, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_fixedstridebug, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_misc, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_cfloat128, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_cfloat64, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_float16, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_float32, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_float64, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_int16, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_int32, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_int64, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_int8, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_sums_uint8, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_einsum_views, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_expand, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_hadamard_like_products, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_index_transformations, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_inner_product, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_out_is_res, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_output_order, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_random_cases, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_small_boolean_arrays, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsum::test_subscript_range, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_edge_paths, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_long_paths, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_memory_contraints, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_path_type_input, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_path_type_input_internal_trace, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_path_type_input_invalid, test/torch_np/numpy_tests/core/test_einsum.py::TestEinsumPath::test_spaces, test/torch_np/numpy_tests/core/test_einsum.py::TestMisc::test_overlap 2025-09-07T08:13:59.6627753Z 2025-09-07T08:13:59.8123048Z Running test_segment_reductions 1/1 ... [2025-09-07 08:13:59.803435] 2025-09-07T08:13:59.8123546Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:13:59.8129618Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_segment_reductions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:13:59.803435] 2025-09-07T08:14:00.5063693Z Running test_ops_fwd_gradients 1/2 ... [2025-09-07 08:14:00.503781] 2025-09-07T08:14:00.5064178Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:14:00.5070170Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_fwd_gradients.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:14:00.503781] 2025-09-07T08:14:04.0083794Z Running inductor/test_multi_kernel 1/1 ... [2025-09-07 08:14:04.008210] 2025-09-07T08:14:04.0084304Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:14:04.0090535Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_multi_kernel.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:14:04.008788] 2025-09-07T08:14:05.2171496Z 2025-09-07T08:14:05.2175533Z test_segment_reductions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_segment_reductions_1.1_7770c6d0f213a46e_.log 2025-09-07T08:14:05.2209086Z Running 74 items in this shard: test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_multi_d_simple_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_max_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_mean_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_min_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_prod_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_pytorch_scatter_test_cases_reduce_sum_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_1d_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_bfloat16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_bfloat16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float16_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float16_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float32_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float32_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float64_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_simple_zero_length_cpu_float64_int64, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_unsafe_flag_cpu_int32, test/test_segment_reductions.py::TestSegmentReductionsCPU::test_unsafe_flag_cpu_int64 2025-09-07T08:14:05.2241195Z 2025-09-07T08:14:09.5445901Z Running inductor/test_op_dtype_prop 1/1 ... [2025-09-07 08:14:09.544207] 2025-09-07T08:14:09.5446649Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:14:09.5452543Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_op_dtype_prop.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:14:09.544207] 2025-09-07T08:14:13.9262326Z 2025-09-07T08:14:13.9263429Z inductor/test_multi_kernel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_multi_kernel_1.1_2699272ae88bb8ba_.log 2025-09-07T08:14:13.9264113Z 2025-09-07T08:14:18.1160725Z Running inductor/test_cutlass_evt 1/1 ... [2025-09-07 08:14:18.115825] 2025-09-07T08:14:18.1161223Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:14:18.1167798Z 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-09-07 08:14:18.115825] 2025-09-07T08:14:21.0286322Z 2025-09-07T08:14:21.0287196Z inductor/test_op_dtype_prop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_op_dtype_prop_1.1_761dfe98413ba612_.log 2025-09-07T08:14:21.0287879Z 2025-09-07T08:14:25.2500153Z Running inductor/test_torchinductor_codegen_config_overrides 1/1 ... [2025-09-07 08:14:25.249709] 2025-09-07T08:14:25.2501080Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:14:25.2507715Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_codegen_config_overrides.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:14:25.250318] 2025-09-07T08:14:28.4352534Z 2025-09-07T08:14:28.4353646Z 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_29d479a0517818c8_.log 2025-09-07T08:14:28.4354362Z 2025-09-07T08:14:32.6854238Z Running xpu/test_conv 1/1 ... [2025-09-07 08:14:32.684752] 2025-09-07T08:14:32.6854678Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:14:32.6860729Z 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-09-07 08:14:32.685930] 2025-09-07T08:14:35.5777030Z 2025-09-07T08:14:35.5778220Z inductor/test_torchinductor_codegen_config_overrides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_codegen_config_overrides_1.1_225340146a99f0c8_.log 2025-09-07T08:14:35.5779160Z 2025-09-07T08:14:37.4139111Z 2025-09-07T08:14:37.4139970Z xpu/test_conv 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_conv_1.1_8a5b3d28c7391f08_.log 2025-09-07T08:14:37.4140816Z Running 0 items in this shard: 2025-09-07T08:14:37.4143421Z 2025-09-07T08:14:39.7771851Z Running inductor/test_binary_folding 1/1 ... [2025-09-07 08:14:39.776580] 2025-09-07T08:14:39.7772377Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:14:39.7791063Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_binary_folding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:14:39.778905] 2025-09-07T08:14:41.6548492Z Running test_ops_gradients 2/2 ... [2025-09-07 08:14:41.654276] 2025-09-07T08:14:41.6548978Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:14:41.6558799Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:14:41.655531] 2025-09-07T08:14:49.8461146Z 2025-09-07T08:14:49.8462241Z inductor/test_binary_folding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_binary_folding_1.1_429b6e9c95a326d4_.log 2025-09-07T08:14:49.8462968Z 2025-09-07T08:14:54.1948443Z Running test_jiterator 1/1 ... [2025-09-07 08:14:54.194594] 2025-09-07T08:14:54.1948882Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:14:54.1954799Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_jiterator.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:14:54.194674] 2025-09-07T08:14:58.4255013Z 2025-09-07T08:14:58.4256443Z test_jiterator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_jiterator_1.1_d938963bb2919381_.log 2025-09-07T08:14:58.4257632Z Running 0 items in this shard: 2025-09-07T08:14:58.4257938Z 2025-09-07T08:15:03.4531518Z Running dynamo/test_optimizers 1/1 ... [2025-09-07 08:15:03.451211] 2025-09-07T08:15:03.4532348Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:15:03.4540955Z 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-09-07 08:15:03.451211] 2025-09-07T08:15:07.6666525Z 2025-09-07T08:15:07.6667924Z dynamo/test_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_optimizers_1.1_9f447c4f0b079967_.log 2025-09-07T08:15:07.6669171Z 2025-09-07T08:15:12.5341714Z Running inductor/test_custom_lowering 1/1 ... [2025-09-07 08:15:12.533798] 2025-09-07T08:15:12.5342709Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:15:12.5352316Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_lowering.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:15:12.534970] 2025-09-07T08:15:24.6651191Z 2025-09-07T08:15:24.6652177Z inductor/test_custom_lowering 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_lowering_1.1_cc3a2a6e1795f61e_.log 2025-09-07T08:15:24.6652917Z 2025-09-07T08:15:29.4793366Z Running inductor/test_needs_exact_strides 1/1 ... [2025-09-07 08:15:29.464194] 2025-09-07T08:15:29.4793895Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:15:29.4800443Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_needs_exact_strides.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:15:29.464194] 2025-09-07T08:15:40.6229012Z 2025-09-07T08:15:40.6232739Z inductor/test_needs_exact_strides 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_needs_exact_strides_1.1_38ba078aa2f288af_.log 2025-09-07T08:15:40.6242338Z 2025-09-07T08:15:45.4292059Z Running dynamo/test_base_hop 1/1 ... [2025-09-07 08:15:45.428782] 2025-09-07T08:15:45.4292912Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:15:45.4299727Z 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-09-07 08:15:45.429364] 2025-09-07T08:15:49.8826043Z 2025-09-07T08:15:49.8827763Z 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_45c210b904f7e3ab_.log 2025-09-07T08:15:49.8828894Z 2025-09-07T08:15:54.4084270Z Running dynamo/test_backends 1/1 ... [2025-09-07 08:15:54.408213] 2025-09-07T08:15:54.4085007Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:15:54.4095656Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_backends.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:15:54.409299] 2025-09-07T08:16:06.7365459Z 2025-09-07T08:16:06.7366954Z dynamo/test_backends 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_backends_1.1_371a1672ece638f0_.log 2025-09-07T08:16:06.7367910Z 2025-09-07T08:16:11.7131331Z Running dynamo/test_cudagraphs 1/1 ... [2025-09-07 08:16:11.705164] 2025-09-07T08:16:11.7132124Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:16:11.7138204Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_cudagraphs.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:16:11.705164] 2025-09-07T08:16:15.8145598Z 2025-09-07T08:16:15.8146530Z dynamo/test_cudagraphs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_cudagraphs_1.1_1bca675d32f34214_.log 2025-09-07T08:16:15.8147256Z 2025-09-07T08:16:20.1251232Z Running dynamo/test_comptime 1/1 ... [2025-09-07 08:16:20.124468] 2025-09-07T08:16:20.1251677Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:16:20.1257802Z 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-09-07 08:16:20.124468] 2025-09-07T08:16:24.0060810Z 2025-09-07T08:16:24.0061828Z dynamo/test_comptime 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_comptime_1.1_2158b8b08abab478_.log 2025-09-07T08:16:24.0062473Z 2025-09-07T08:16:28.3707895Z Running cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic 1/1 ... [2025-09-07 08:16:28.362924] 2025-09-07T08:16:28.3709145Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:16:28.3715462Z 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-09-07 08:16:28.362924] 2025-09-07T08:16:32.5819512Z 2025-09-07T08:16:32.5820863Z 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_575e26bd621e8884_.log 2025-09-07T08:16:32.5822625Z Running 0 items in this shard: 2025-09-07T08:16:32.5822813Z 2025-09-07T08:16:37.1961218Z Running test_modules 2/2 ... [2025-09-07 08:16:37.191485] 2025-09-07T08:16:37.1961791Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:16:37.1970567Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_modules.py', '-m', 'not serial', '--shard-id=2', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:16:37.191485] 2025-09-07T08:20:28.6416138Z 2025-09-07T08:20:28.6417057Z test_ops_fwd_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_fwd_gradients_1.2_1c10a0febc5c9b91_.log 2025-09-07T08:20:28.7061279Z Running 1604 items in this shard: test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_H_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_T_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___getitem___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___radd___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___radd___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rdiv___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rdiv___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmatmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad___rsub___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__segment_reduce_offsets_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad__unsafe_masked_index_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_abs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_acosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcdiv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addcmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addmm_decomposed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_addr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_alias_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_alias_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_allclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_aminmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_arange_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argsort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argwhere_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_argwhere_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_partial_views_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_as_strided_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_asinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_atleast_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_baddbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_baddbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bernoulli_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bfloat16_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_block_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_block_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_bool_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_broadcast_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cartesian_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cdouble_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cfloat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_char_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_inverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cholesky_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clamp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clamp_max_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_clamp_min_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_column_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_column_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_combinations_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_combinations_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_physical_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_conj_physical_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_constant_pad_nd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_constant_pad_nd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_contiguous_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_copysign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_count_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_count_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cov_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cross_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cummax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_cumulative_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_deg2rad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_embed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diag_embed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diagonal_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_diff_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dist_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_double_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_dstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_einsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_einsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_permuted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_equal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_equal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_erf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_erfinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_exp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expand_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_expm1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_fftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_hfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ifftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_ihfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_irfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_rfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fft_rfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flip_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flip_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fliplr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_flipud_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_float_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_floor_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_fmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ge_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_geometric_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gradient_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gradient_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_gt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_half_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_half_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_heaviside_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_histogram_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_histogramdd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_hstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_igammac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_imag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_index_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_inner_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_int_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isfinite_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isinf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isnan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_isposinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_istft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_item_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_unary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_jiterator_unary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_kron_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_kron_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_kthvalue_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ldexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ldexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_le_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lerp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lgamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eig_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvals_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_eigvalsh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_householder_product_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_inv_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_matrix_rank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_multi_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_multi_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_singular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_pinv_singular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_slogdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_solve_triangular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_tensorinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vander_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linalg_vector_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log10_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log10_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log1p_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log1p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logaddexp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logcumsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_and_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_not_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_or_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logical_xor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_logit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_long_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_unpack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_lu_unpack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mH_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_argmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_masked_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_matrix_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_max_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_min_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_min_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_min_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_movedim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_mv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nanmean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nanmedian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nanquantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_narrow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_native_dropout_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_native_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ne_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_new_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nextafter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_celu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_embedding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_glu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_group_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_kl_div_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_relu6_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_rrelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_selu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_softshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_static_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_nonzero_static_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_fro_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_nuc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_norm_nuc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_normal_in_place_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ones_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ormqr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_ormqr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_outer_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pca_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pca_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_permute_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pinverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_positive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_pow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_put_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_quantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rand_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rand_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_randn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reciprocal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_remainder_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_renorm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_repeat_interleave_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_reshape_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_decimals_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_round_decimals_neg_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_rsub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scalar_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_scatter_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_short_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_gaussian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signal_windows_nuttall_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_signbit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_slice_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_j0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_bessel_y0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_entr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_erfcx_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_i0e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_i1e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_log_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_ndtri_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_xlog1py_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_special_zeta_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_list_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_squeeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_std_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_stft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_sum_to_size_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_svd_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_take_along_dim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_to_sparse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_topk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_transpose_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_trapz_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triangular_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_triangular_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_tril_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_true_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unbind_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unflatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unflatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_uniform_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unique_consecutive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unique_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsafe_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_unsqueeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_var_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_complex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_view_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_vsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_where_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zero__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zero__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_fn_fwgrad_bwgrad_zeros_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_H_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_T_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___getitem___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___getitem___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rdiv___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmatmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmatmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rmul___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD___rpow___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__softmax_backward_data_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD__upsample_bilinear2d_aa_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_acosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addcdiv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_addmm_decomposed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_alias_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_alias_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_all_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_all_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_allclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_any_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_any_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argsort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argwhere_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_argwhere_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_partial_views_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_partial_views_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_as_strided_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_asinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_atleast_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_baddbmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bernoulli_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bfloat16_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_block_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bool_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bool_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_broadcast_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_bucketize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_byte_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cartesian_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cauchy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cdist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cdouble_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cfloat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cfloat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chalf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_char_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_inverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cholesky_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_chunk_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clamp_max_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clamp_min_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_clone_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_column_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_physical_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_conj_physical_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_constant_pad_nd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_contiguous_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_copysign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_corrcoef_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_count_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_count_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cov_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_cumulative_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_embed_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diag_embed_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagflat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diagonal_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diff_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_diff_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_digamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dist_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_no_rounding_mode_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_div_trunc_rounding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_double_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_dsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_einsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_permuted_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_permuted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_equal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_erfc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_erfinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expand_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_expm1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eye_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_eye_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_fftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_hfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ifftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ihfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_ihfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_irfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_rfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fft_rfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fill_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flatten_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flip_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flip_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fliplr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_flipud_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_float_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_floor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_floor_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_fmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_full_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gather_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gather_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_geometric_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_geqrf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_geqrf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gradient_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_grid_sampler_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_grid_sampler_3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_gt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_heaviside_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_histogramdd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_hsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_igamma_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_igammac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_imag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_index_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_inner_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isclose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isfinite_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isinf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isneginf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isposinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_isreal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_istft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_item_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_unary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_jiterator_unary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ldexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lerp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cholesky_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eig_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eig_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_eigh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_householder_product_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_householder_product_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_inv_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_ldl_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_lu_factor_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_multi_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_pinv_singular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_slogdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_slogdet_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_solve_triangular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_svdvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_tensorsolve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vecdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linalg_vecdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_linspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log1p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_log_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logaddexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logcumsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_not_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logical_xor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_tensor_overload_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_long_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mH_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mT_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_median_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_std_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_var_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_masked_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matrix_exp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_matrix_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_max_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_meshgrid_variadic_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_min_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_mv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nanmean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nanmedian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nansum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_narrow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_native_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_native_dropout_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ne_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ne_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_full_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_zeros_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_new_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_alpha_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_avg_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_channel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv3d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_dropout2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_dropout3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_embedding_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_glu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_grid_sample_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_group_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardsigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_hardswish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_huber_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_kl_div_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_local_response_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_max_unpool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_mse_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_circular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_constant_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_reflect_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pad_reflect_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_prelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_relu6_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_rms_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_rms_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_rrelu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_silu_complex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softsign_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_softsign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_tanhshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nn_functional_upsample_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_nonzero_static_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_fro_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_inf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_inf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_norm_nuc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ones_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ormqr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_outer_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_outer_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_permute_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pinverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polar_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_polygamma_polygamma_n_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_positive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_pow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_qr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_quantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rad2deg_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rand_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_randint_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ravel_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_ravel_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_repeat_interleave_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_reshape_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resize__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_conj_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_resolve_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_roll_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rot90_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rot90_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_rsqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_scatter_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_searchsorted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_select_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sgn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_short_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sigmoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sigmoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_gaussian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_general_cosine_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_general_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signal_windows_nuttall_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_signbit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_slice_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_slice_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_slice_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sparse_mm_reduce_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sparse_sampled_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sparse_sampled_addmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_y0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_bessel_y1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_i0e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_legendre_polynomial_p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_modified_bessel_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_special_xlog1py_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_list_args_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_split_with_sizes_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sqrt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_multiple_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_squeeze_multiple_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_std_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_stft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_sum_to_size_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_svd_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_t_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_along_dim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_take_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensor_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tensordot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_sparse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_to_sparse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_transpose_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trapz_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triangular_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_tril_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triu_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_triu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_true_divide_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_trunc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unflatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unfold_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_uniform_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_uniform_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unique_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_chunk_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsafe_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_unsqueeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_mean_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_var_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vdot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_as_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_view_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_vstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_where_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_xlogy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zero__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zero__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_forward_mode_AD_zeros_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_H_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_T_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___getitem___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmatmul___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rmod___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rpow___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rsub___cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD___rsub___cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__batch_norm_with_update_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__chunk_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__native_batch_norm_legit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__segment_reduce_offsets_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_abs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acosh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_acosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_add_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcdiv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addcdiv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_addr_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_alias_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_alias_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_all_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_any_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_any_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_argsort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_partial_views_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_as_strided_scatter_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_asinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atan2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atan_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atanh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_atleast_1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_baddbmm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bfloat16_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_block_diag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bool_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_broadcast_to_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_bucketize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_byte_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cartesian_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cauchy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cdouble_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ceil_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chalf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_chalf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_char_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_char_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_inverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_inverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cholesky_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_clone_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_column_stack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_combinations_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_conj_physical_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_constant_pad_nd_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_contiguous_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_contiguous_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_corrcoef_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_corrcoef_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cos_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cos_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cosh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_count_nonzero_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cov_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cummax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagflat_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_diff_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dist_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_div_no_rounding_mode_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_dot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_double_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_einsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_erf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_erfc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exp2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expand_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_expm1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_exponential_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eye_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_eye_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_fftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_hfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft2_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftshift_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ifftshift_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ihfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_ihfftn_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfft_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_irfftn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_rfft2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fft_rfft_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_flipud_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_float_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_floor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_floor_divide_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_fmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_frac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_frexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_full_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gather_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gradient_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gradient_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_grid_sampler_2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_gt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_half_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_half_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_heaviside_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_histc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_histogram_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hsplit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hstack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hstack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_hypot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_i0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_igammac_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_imag_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_put_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_amax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_reduce_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_index_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_inner_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isfinite_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isfinite_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isinf_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isinf_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isnan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isreal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_isreal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_unary_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_jiterator_unary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_le_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cholesky_ex_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cond_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_cross_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_det_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_diagonal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eig_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvals_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvalsh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_eigvalsh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_inv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_factor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_ldl_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_factor_ex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_power_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_power_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_multi_dot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_hermitian_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_hermitian_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_singular_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_pinv_singular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_solve_triangular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_tensorsolve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vander_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vander_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linalg_vector_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_linspace_tensor_overload_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log10_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log10_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log1p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_log_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logaddexp2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logaddexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logdet_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_and_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_not_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_or_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_or_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logical_xor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logit_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logspace_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_long_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lt_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_unpack_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_lu_unpack_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mH_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mT_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_argmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumprod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumprod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumsum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_cumsum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_fill_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_log_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_logsumexp_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_logsumexp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_prod_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_prod_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_select_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_masked_var_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matmul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matmul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_matrix_exp_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_binary_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_reduction_no_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_max_reduction_with_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_list_of_tensors_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_msort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mul_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mul_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_multinomial_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mv_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mv_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nanmean_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nansum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_narrow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_native_batch_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_native_dropout_backward_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_native_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ne_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_strided_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_empty_strided_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_full_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_new_ones_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nextafter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_avg_pool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_avg_pool3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_celu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_channel_shuffle_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv1d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_cosine_similarity_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_cross_entropy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_dropout2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_dropout_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_elu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_embedding_bag_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_glu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardshrink_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_hardtanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_huber_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_instance_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_kl_div_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_l1_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_layer_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_leaky_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_linear_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_local_response_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool1d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_max_unpool2d_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_mish_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_mse_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_nll_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_normalize_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_normalize_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_circular_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pairwise_distance_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_relu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_rms_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_rms_norm_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_silu_complex_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_silu_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softmin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softplus_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_softsign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nn_functional_upsample_nearest_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_nonzero_static_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_norm_fro_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_normal_in_place_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ones_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ormqr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_outer_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pca_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pca_lowrank_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_permute_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pinverse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pinverse_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polar_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_2_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_polygamma_polygamma_n_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pow_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_pow_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_qr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_quantile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rand_like_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randint_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randint_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_randn_like_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_ravel_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_real_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reciprocal_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reciprocal_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_remainder_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_interleave_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_repeat_interleave_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_reshape_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize__cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resize_as__cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_conj_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_resolve_neg_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_roll_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rot90_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rot90_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_decimals_0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_round_decimals_3_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsqrt_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_rsub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scalar_tensor_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scalar_tensor_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_add_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_scatter_reduce_amin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_searchsorted_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_select_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_select_scatter_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sgn_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sigmoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sign_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_blackman_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_general_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_hamming_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_hann_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_signal_windows_nuttall_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sin_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sin_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinc_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinh_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sinh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_softmax_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_softmax_with_dtype_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_softmax_with_dtype_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sort_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sparse_sampled_addmm_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_airy_ai_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_j1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_y0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_bessel_y1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_erfcx_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_hermite_polynomial_he_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_i1e_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_laguerre_polynomial_l_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_legendre_polynomial_p_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_i1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_ndtr_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_ndtri_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_special_xlog1py_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_list_args_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_split_with_sizes_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_squeeze_multiple_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_std_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sub_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sub_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_sum_to_size_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_svd_lowrank_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_t_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_along_dim_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_along_dim_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_take_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tan_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tanh_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tensordot_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_tile_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_to_sparse_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trace_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_transpose_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapezoid_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapezoid_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trapz_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triangular_solve_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_triangular_solve_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_trunc_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unbind_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unflatten_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_copy_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unfold_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_uniform_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unique_consecutive_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_split_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsafe_split_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_unsqueeze_copy_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_mean_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_unbiased_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_var_unbiased_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vdot_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_cpu_float64, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_as_real_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_view_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vsplit_cpu_complex128, test/test_ops_fwd_gradients.py::TestFwdGradientsCPU::test_inplace_forward_mode_AD_vstack_cpu_complex128 2025-09-07T08:20:28.7680067Z 2025-09-07T08:20:32.8017611Z Running test_cuda_sanitizer 1/1 ... [2025-09-07 08:20:32.795087] 2025-09-07T08:20:32.8018100Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:20:32.8024129Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_sanitizer.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:20:32.795087] 2025-09-07T08:20:36.6519265Z 2025-09-07T08:20:36.6520225Z test_cuda_sanitizer 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_sanitizer_1.1_b5eba8559ef90ecf_.log 2025-09-07T08:20:36.6522801Z Running 0 items in this shard: 2025-09-07T08:20:36.6523092Z 2025-09-07T08:20:41.0016042Z Running inductor/test_unbacked_symints 1/1 ... [2025-09-07 08:20:41.001044] 2025-09-07T08:20:41.0016629Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:20:41.0022864Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_unbacked_symints.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:20:41.001637] 2025-09-07T08:20:50.8446187Z 2025-09-07T08:20:50.8447195Z inductor/test_unbacked_symints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_unbacked_symints_1.1_7c81d219e918dc3f_.log 2025-09-07T08:20:50.8447926Z 2025-09-07T08:20:54.9538393Z Running torch_np/numpy_tests/core/test_indexing 1/1 ... [2025-09-07 08:20:54.953488] 2025-09-07T08:20:54.9538912Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:20:54.9545844Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_indexing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:20:54.954114] 2025-09-07T08:20:59.4628249Z 2025-09-07T08:20:59.4629526Z torch_np/numpy_tests/core/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_indexing_1.1_2a02343125b64b24_.log 2025-09-07T08:20:59.4658911Z Running 67 items in this shard: test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_assignment_value_mismatch, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_indexing_list, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_indexing_onedim, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_indexing_twodim, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_boolean_shape_mismatch, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_broaderrors_indexing, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_broken_sequence_not_nd_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_ellipsis_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_ellipsis_index_2, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_empty_fancy_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_empty_tuple_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_everything_returns_views, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_index_no_array_to_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_index_no_floats, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_indexing_array_negative_strides, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_indexing_array_weird_strides, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_memory_order, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_none_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_nontuple_ndindex, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_reverse_strides_and_subspace_bufferinit, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_reversed_strides_result_allocation, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_same_kind_index_casting, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_scalar_array_bool, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_single_bool_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_single_int_index, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_slicing_no_floats, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_small_regressions, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index2_num_32_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index2_num_32_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index2_num_40_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index2_num_40_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_False_num_32_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_False_num_32_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_False_num_40_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_False_num_40_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_True_num_32_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_True_num_32_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_True_num_40_original_ndim_1, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_advanced_indices_index_True_num_40_original_ndim_32, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_too_many_fancy_indices_special_case, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_trivial_fancy_not_possible, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_trivial_fancy_out_of_bounds, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_tuple_subclass, test/torch_np/numpy_tests/core/test_indexing.py::TestIndexing::test_uncontiguous_subspace_assignment, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_broadcast_error_reports_correct_shape_index0, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_broadcast_error_reports_correct_shape_index1, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_broadcast_error_reports_correct_shape_index2, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_broadcast_subspace, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_index_is_larger, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_prepend_not_one, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_prepending_ones, test/torch_np/numpy_tests/core/test_indexing.py::TestBroadcastedAssignments::test_simple_broadcasting_errors, test/torch_np/numpy_tests/core/test_indexing.py::TestFancyIndexingCast::test_boolean_index_cast_assign, test/torch_np/numpy_tests/core/test_indexing.py::TestMultiIndexingAutomated::test_1d, test/torch_np/numpy_tests/core/test_indexing.py::TestMultiIndexingAutomated::test_boolean, test/torch_np/numpy_tests/core/test_indexing.py::TestMultiIndexingAutomated::test_multidim, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_non_integer_argument_errors, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_non_integer_sequence_multiplication, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_reduce_axis_float_index, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_valid_indexing, test/torch_np/numpy_tests/core/test_indexing.py::TestFloatNonIntegerArgument::test_valid_slicing, test/torch_np/numpy_tests/core/test_indexing.py::TestBooleanIndexing::test_bool_as_int_argument_errors, test/torch_np/numpy_tests/core/test_indexing.py::TestBooleanIndexing::test_boolean_indexing_fast_path, test/torch_np/numpy_tests/core/test_indexing.py::TestBooleanIndexing::test_boolean_indexing_weirdness, test/torch_np/numpy_tests/core/test_indexing.py::TestArrayToIndexDeprecation::test_array_to_index_error, test/torch_np/numpy_tests/core/test_indexing.py::TestNonIntegerArrayLike::test_basic, test/torch_np/numpy_tests/core/test_indexing.py::TestMultipleEllipsisError::test_basic 2025-09-07T08:20:59.4685167Z 2025-09-07T08:21:03.6170677Z Running nn/test_lazy_modules 1/1 ... [2025-09-07 08:21:03.616721] 2025-09-07T08:21:03.6171153Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:21:03.6178082Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_lazy_modules.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:21:03.617356] 2025-09-07T08:21:09.1461834Z 2025-09-07T08:21:09.1463090Z nn/test_lazy_modules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_lazy_modules_1.1_d506580bd255a369_.log 2025-09-07T08:21:09.1493897Z Running 59 items in this shard: test/nn/test_lazy_modules.py::TestLazyModules::test_chained_initialization, test/nn/test_lazy_modules.py::TestLazyModules::test_invalid_functions, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_batchnorm_with_dict_input, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose1d_kwargs, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d_kwargs, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d_kwargs, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transpose3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_conv_transposed1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_forward_hook, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm1d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm1d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm1d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm2d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm2d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm2d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm3d, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm3d_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_instancenorm3d_state, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_linear_pickle, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_linear_state_and_forward, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_buffer, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_jit_buffer, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_jit_param, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_module_parameter, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_pre_forward_hook, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_share_memory_buffer, test/nn/test_lazy_modules.py::TestLazyModules::test_lazy_share_memory_param, test/nn/test_lazy_modules.py::TestLazyModules::test_linear, test/nn/test_lazy_modules.py::TestLazyModules::test_linear_state, test/nn/test_lazy_modules.py::TestLazyModules::test_materialize_device, test/nn/test_lazy_modules.py::TestLazyModules::test_materialize_dtype, test/nn/test_lazy_modules.py::TestLazyModules::test_optimizer_pass, test/nn/test_lazy_modules.py::TestLazyModules::test_spectral_norm, test/nn/test_lazy_modules.py::TestLazyModules::test_weight_norm 2025-09-07T08:21:09.1522424Z 2025-09-07T08:21:13.8623573Z Running test_fx_reinplace_pass 1/1 ... [2025-09-07 08:21:13.852451] 2025-09-07T08:21:13.8624373Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:21:13.8633474Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx_reinplace_pass.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:21:13.862583] 2025-09-07T08:21:19.2653865Z 2025-09-07T08:21:19.2655454Z test_fx_reinplace_pass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_reinplace_pass_1.1_a4faf2fd0fbaa970_.log 2025-09-07T08:21:19.2665165Z Running 12 items in this shard: test/test_fx_reinplace_pass.py::TestReinplacePass::test_out_node_updated, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_basic, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_different_metadata, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_index_mutation, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_overlapping_memory, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_op, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_twice, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_twice_with_different_view_op_invalid, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_twice_with_different_view_op_invalid2, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_scatter_twice_with_different_view_op_valid, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_sym_input, test/test_fx_reinplace_pass.py::TestReinplacePass::test_reinplace_with_view 2025-09-07T08:21:19.2673298Z 2025-09-07T08:21:24.5984268Z Running torch_np/numpy_tests/lib/test_type_check 1/1 ... [2025-09-07 08:21:24.598013] 2025-09-07T08:21:24.5985083Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:21:24.5992746Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/lib/test_type_check.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:21:24.598013] 2025-09-07T08:21:29.2571436Z 2025-09-07T08:21:29.2572567Z torch_np/numpy_tests/lib/test_type_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.lib.test_type_check_1.1_930d0f3a1328f24d_.log 2025-09-07T08:21:29.2588331Z Running 50 items in this shard: test/torch_np/numpy_tests/lib/test_type_check.py::TestCommonType::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestMintypecode::test_default_1, test/torch_np/numpy_tests/lib/test_type_check.py::TestMintypecode::test_default_2, test/torch_np/numpy_tests/lib/test_type_check.py::TestMintypecode::test_default_3, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsscalar::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestReal::test_cmplx, test/torch_np/numpy_tests/lib/test_type_check.py::TestReal::test_real, test/torch_np/numpy_tests/lib/test_type_check.py::TestImag::test_cmplx, test/torch_np/numpy_tests/lib/test_type_check.py::TestImag::test_real, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplex::test_fail, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplex::test_pass, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsreal::test_fail, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsreal::test_isreal_real, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsreal::test_pass, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplexobj::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplexobj::test_list, test/torch_np/numpy_tests/lib/test_type_check.py::TestIscomplexobj::test_scalar, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsrealobj::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_complex, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_complex1, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_goodvalues, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_ind, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_integer, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_neginf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsnan::test_posinf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_complex, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_complex1, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_goodvalues, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_ind, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_integer, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_neginf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsfinite::test_posinf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_goodvalues, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_ind, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_neginf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_neginf_scalar, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_posinf, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsinf::test_posinf_scalar, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsposinf::test_generic, test/torch_np/numpy_tests/lib/test_type_check.py::TestIsneginf::test_generic, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_array, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_complex_bad, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_complex_bad2, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_complex_good, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_do_not_rewrite_previous_keyword, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_float, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_generic, test/torch_np/numpy_tests/lib/test_type_check.py::TestNanToNum::test_integer, test/torch_np/numpy_tests/lib/test_type_check.py::TestRealIfClose::test_basic, test/torch_np/numpy_tests/lib/test_type_check.py::TestArrayConversion::test_asfarray 2025-09-07T08:21:29.2602997Z 2025-09-07T08:21:33.5911483Z Running inductor/test_custom_partitioner_fn 1/1 ... [2025-09-07 08:21:33.590898] 2025-09-07T08:21:33.5912063Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:21:33.5918408Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_partitioner_fn.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:21:33.591479] 2025-09-07T08:21:43.5630617Z 2025-09-07T08:21:43.5632114Z inductor/test_custom_partitioner_fn 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_partitioner_fn_1.1_b42ec20ba4c62d11_.log 2025-09-07T08:21:43.5633408Z 2025-09-07T08:21:48.1853297Z Running test_type_info 1/1 ... [2025-09-07 08:21:48.184668] 2025-09-07T08:21:48.1853722Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:21:48.1859383Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_info.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:21:48.185766] 2025-09-07T08:21:52.2016385Z 2025-09-07T08:21:52.2017406Z test_type_info 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_info_1.1_550dad28cdece7ca_.log 2025-09-07T08:21:52.2019127Z Running 5 items in this shard: test/test_type_info.py::TestDTypeInfo::test_finfo, test/test_type_info.py::TestDTypeInfo::test_iinfo, test/test_type_info.py::TestDTypeInfo::test_invalid_input, test/test_type_info.py::TestDTypeInfo::test_to_complex, test/test_type_info.py::TestDTypeInfo::test_to_real 2025-09-07T08:21:52.2020287Z 2025-09-07T08:21:56.2927343Z Running lazy/test_functionalization 1/1 ... [2025-09-07 08:21:56.291999] 2025-09-07T08:21:56.2927870Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:21:56.2933522Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_functionalization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:21:56.293172] 2025-09-07T08:22:00.5575930Z 2025-09-07T08:22:00.5576876Z lazy/test_functionalization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_functionalization_1.1_50aa77c8fe678cec_.log 2025-09-07T08:22:00.5578683Z Running 2 items in this shard: test/lazy/test_functionalization.py::LazyFuncionalizationTest::test_data_assign, test/lazy/test_functionalization.py::LazyFuncionalizationTest::test_lazy_init_with_view 2025-09-07T08:22:00.5579516Z 2025-09-07T08:22:04.7142783Z Running test_functionalization_of_rng_ops 1/1 ... [2025-09-07 08:22:04.713662] 2025-09-07T08:22:04.7143295Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:22:04.7149906Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_functionalization_of_rng_ops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:22:04.714269] 2025-09-07T08:22:08.7971356Z 2025-09-07T08:22:08.7972391Z test_functionalization_of_rng_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_functionalization_of_rng_ops_1.1_21b02118ad9ec79d_.log 2025-09-07T08:22:08.7973149Z 2025-09-07T08:22:11.7943043Z 2025-09-07T08:22:11.7944170Z test_ops_gradients 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_2.2_35da435b73ac3e2e_.log 2025-09-07T08:22:11.8932846Z Running 2661 items in this shard: test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyMulScalarCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyNMSCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpySortCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cond_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_grid_sampler_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_invoke_quant_packed_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_invoke_quant_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_invoke_subgraph_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_map_triple_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_while_loop_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cond_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_grid_sampler_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_map_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_while_loop_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_while_loop_stack_output_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySplitCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_T_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_baddbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bfloat16_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_byte_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumulative_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_no_rounding_mode_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_double_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expm1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flipud_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_grid_sampler_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvalsh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_pool2d_with_indices_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cosine_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_gaussian_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nonzero_static_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randint_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scalar_tensor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_along_dim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_like_cpu_float64 2025-09-07T08:22:11.9868852Z 2025-09-07T08:22:13.0631326Z Running test_subclass 1/1 ... [2025-09-07 08:22:13.059859] 2025-09-07T08:22:13.0631768Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:22:13.0637644Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_subclass.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:22:13.059859] 2025-09-07T08:22:16.0099092Z Running test_decomp 1/17 ... [2025-09-07 08:22:16.009326] 2025-09-07T08:22:16.0099523Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:22:16.0106475Z 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-09-07 08:22:16.010429] 2025-09-07T08:22:17.7573631Z 2025-09-07T08:22:17.7574470Z test_subclass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_subclass_1.1_ea42b4d5672a9519_.log 2025-09-07T08:22:17.7610523Z Running 100 items in this shard: test/test_subclass.py::TestSubclass::test_deepcopy_base_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_base_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_diag_tensor_below_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_diag_tensor_below_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_logging_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_logging_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_non_wrapper_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_non_wrapper_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_sparse_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_sparse_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_wrapper_with_custom_sizes_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_wrapper_with_custom_sizes_as_param_True, test/test_subclass.py::TestSubclass::test_deepcopy_wrapper_with_custom_strides_as_param_False, test/test_subclass.py::TestSubclass::test_deepcopy_wrapper_with_custom_strides_as_param_True, test/test_subclass.py::TestSubclass::test_lazy_module_base_tensor, test/test_subclass.py::TestSubclass::test_lazy_module_diag_tensor_below, test/test_subclass.py::TestSubclass::test_lazy_module_logging_tensor, test/test_subclass.py::TestSubclass::test_lazy_module_non_wrapper_tensor, test/test_subclass.py::TestSubclass::test_lazy_module_sparse_tensor, test/test_subclass.py::TestSubclass::test_lazy_module_wrapper_with_custom_sizes, test/test_subclass.py::TestSubclass::test_lazy_module_wrapper_with_custom_strides, test/test_subclass.py::TestSubclass::test_module_optimization_base_tensor, test/test_subclass.py::TestSubclass::test_module_optimization_diag_tensor_below, test/test_subclass.py::TestSubclass::test_module_optimization_logging_tensor, test/test_subclass.py::TestSubclass::test_module_optimization_non_wrapper_tensor, test/test_subclass.py::TestSubclass::test_module_optimization_sparse_tensor, test/test_subclass.py::TestSubclass::test_module_optimization_wrapper_with_custom_sizes, test/test_subclass.py::TestSubclass::test_module_optimization_wrapper_with_custom_strides, test/test_subclass.py::TestSubclass::test_non_rewrapping_torch_dispatch_subclass_as_parameter_throws_for_detach, test/test_subclass.py::TestSubclass::test_param_invariants_base_tensor_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_base_tensor_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_diag_tensor_below_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_diag_tensor_below_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_logging_tensor_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_logging_tensor_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_non_wrapper_tensor_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_non_wrapper_tensor_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_sparse_tensor_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_sparse_tensor_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_wrapper_with_custom_sizes_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_wrapper_with_custom_sizes_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_param_invariants_wrapper_with_custom_strides_tensor_requires_grad_False, test/test_subclass.py::TestSubclass::test_param_invariants_wrapper_with_custom_strides_tensor_requires_grad_True, test/test_subclass.py::TestSubclass::test_parametrization_base_tensor_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_base_tensor_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_diag_tensor_below_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_diag_tensor_below_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_logging_tensor_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_logging_tensor_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_non_wrapper_tensor_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_non_wrapper_tensor_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_sparse_tensor_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_sparse_tensor_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_wrapper_with_custom_sizes_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_wrapper_with_custom_sizes_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_parametrization_wrapper_with_custom_strides_leave_parametrized_False, test/test_subclass.py::TestSubclass::test_parametrization_wrapper_with_custom_strides_leave_parametrized_True, test/test_subclass.py::TestSubclass::test_repr_base_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_repr_base_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_repr_diag_tensor_below_as_param_False, test/test_subclass.py::TestSubclass::test_repr_diag_tensor_below_as_param_True, test/test_subclass.py::TestSubclass::test_repr_logging_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_repr_logging_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_repr_non_wrapper_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_repr_non_wrapper_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_repr_sparse_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_repr_sparse_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_repr_wrapper_with_custom_sizes_as_param_False, test/test_subclass.py::TestSubclass::test_repr_wrapper_with_custom_sizes_as_param_True, test/test_subclass.py::TestSubclass::test_repr_wrapper_with_custom_strides_as_param_False, test/test_subclass.py::TestSubclass::test_repr_wrapper_with_custom_strides_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_base_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_base_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_diag_tensor_below_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_diag_tensor_below_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_logging_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_logging_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_non_wrapper_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_non_wrapper_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_sparse_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_sparse_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_wrapper_with_custom_sizes_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_wrapper_with_custom_sizes_as_param_True, test/test_subclass.py::TestSubclass::test_serialization_wrapper_with_custom_strides_as_param_False, test/test_subclass.py::TestSubclass::test_serialization_wrapper_with_custom_strides_as_param_True, test/test_subclass.py::TestSubclass::test_tensor_subclass_storage_data_accesses_throw, test/test_subclass.py::TestSubclass::test_type_propagation_base_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_base_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_diag_tensor_below_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_diag_tensor_below_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_logging_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_logging_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_non_wrapper_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_non_wrapper_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_sparse_tensor_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_sparse_tensor_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_wrapper_with_custom_sizes_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_wrapper_with_custom_sizes_as_param_True, test/test_subclass.py::TestSubclass::test_type_propagation_wrapper_with_custom_strides_as_param_False, test/test_subclass.py::TestSubclass::test_type_propagation_wrapper_with_custom_strides_as_param_True 2025-09-07T08:22:17.7644308Z 2025-09-07T08:22:21.9233613Z Running test_decomp 6/17 ... [2025-09-07 08:22:21.916918] 2025-09-07T08:22:21.9234038Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:22:21.9240168Z 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-09-07 08:22:21.916918] 2025-09-07T08:24:51.7773795Z 2025-09-07T08:24:51.7775156Z test_modules 2/2 was successful, full logs can be found in artifacts with path test/test-reports/test_modules_2.2_2ad0c5b0035611a0_.log 2025-09-07T08:24:51.8573559Z Running 1805 items in this shard: test/test_modules.py::TestModuleCPU::test_check_inplace_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_check_inplace_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_cpu_gpu_parity_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_device_ctx_init_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_errors_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_errors_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_factory_kwargs_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_forward_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_forward_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_RNNCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_forward_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_grad_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_gradgrad_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_BatchNorm3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CircularPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConstantPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_FractionalMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_InstanceNorm3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LSTM_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LSTM_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiheadAttention_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_MultiheadAttention_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Sigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Tanhshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_TransformerEncoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_TransformerEncoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_TransformerEncoder_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_if_train_and_eval_modes_differ_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_CosineEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Embedding_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GRU_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_memory_format_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MarginRankingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_RNN_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_memory_format_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Hardtanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LocalResponseNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_LogSoftmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiLabelSoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_MultiheadAttention_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_PoissonNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RNN_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SiLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SiLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softplus_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_multiple_device_transfer_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BCELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Bilinear_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Conv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Conv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CosineEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CrossEntropyLoss_cpu_float16, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_CrossEntropyLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GaussianNLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardswish_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Hardtanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_HuberLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LSTMCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_LogSoftmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MaxPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_PoissonNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_SoftMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmax_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoderLayer_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_Transformer_cpu_float32, test/test_modules.py::TestModuleCPU::test_non_contiguous_tensors_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveAvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AdaptiveMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BCELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BCEWithLogitsLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm3d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Bilinear_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_CELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_CTCLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_CTCLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConstantPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConstantPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConstantPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose3d_cpu_complex128, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_CrossEntropyLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Embedding_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GRU_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GRU_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_GaussianNLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_repr_nn_GroupNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Hardswish_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_HingeEmbeddingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm2d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm3d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_L1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LPPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LPPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LSTM_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LSTM_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LazyConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Linear_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MSELoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MarginRankingLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MaxPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiLabelSoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_NLLLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_PReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_RMSNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_RNN_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_RNN_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReLU6_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReflectionPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReflectionPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_SmoothL1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmax2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmax_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softmin_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softplus_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Softshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Softsign_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerDecoderLayer_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoderLayer_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoder_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_TransformerEncoder_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_Transformer_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ZeroPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_repr_nn_ZeroPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_repr_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveAvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveMaxPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AdaptiveMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_AvgPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BCEWithLogitsLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm1d_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_BatchNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_CELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_CircularPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_CircularPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_CircularPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConstantPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConstantPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Conv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Conv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose1d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_complex32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_complex64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ConvTranspose3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ELU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_FractionalMaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_FractionalMaxPool3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_FractionalMaxPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_GELU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_GRUCell_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_GRUCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_GRU_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_GroupNorm_cpu_bfloat16, test/test_modules.py::TestModuleCPU::test_save_load_nn_GroupNorm_cpu_float16, test/test_modules.py::TestModuleCPU::test_save_load_nn_GroupNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Hardshrink_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Hardshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_HingeEmbeddingLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_HuberLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm1d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm1d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm1d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm2d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm2d_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm2d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm3d_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_InstanceNorm3d_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_KLDivLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_KLDivLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_L1Loss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LPPool1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LPPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LPPool3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTMCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTM_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LSTM_train_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LayerNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LayerNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConv1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConv1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConv3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConv3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LazyConvTranspose3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LeakyReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LeakyReLU_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Linear_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LocalResponseNorm_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_LogSigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_LogSigmoid_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MSELoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MaxPool2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Mish_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Mish_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiLabelMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiLabelMarginLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiheadAttention_eval_mode_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiheadAttention_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_MultiheadAttention_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_NLLLoss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_PReLU_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_RMSNorm_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_RNNCell_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReLU6_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReflectionPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad2d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ReplicationPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Sigmoid_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_SmoothL1Loss_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_SoftMarginLoss_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softmax2d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softmin_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Softsign_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Tanh_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Tanh_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Tanhshrink_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_Threshold_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_Threshold_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerDecoderLayer_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoderLayer_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoder_eval_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_TransformerEncoder_train_mode_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ZeroPad1d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ZeroPad1d_cpu_float64, test/test_modules.py::TestModuleCPU::test_save_load_nn_ZeroPad3d_cpu_float32, test/test_modules.py::TestModuleCPU::test_save_load_nn_ZeroPad3d_cpu_float64, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveAvgPool2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveMaxPool1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveMaxPool1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AdaptiveMaxPool2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AvgPool1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AvgPool2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_AvgPool3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BCELoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BCEWithLogitsLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm2d_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm2d_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm2d_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm3d_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_BatchNorm3d_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CTCLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CircularPad1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConstantPad1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConstantPad2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConstantPad3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ConstantPad3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Conv1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Conv1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CosineEmbeddingLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_CrossEntropyLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ELU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ELU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Embedding_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_FractionalMaxPool3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GELU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GLU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GRU_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GRU_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GRU_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GaussianNLLLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GaussianNLLLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GroupNorm_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_GroupNorm_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Hardshrink_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Hardshrink_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Hardswish_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Hardtanh_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_HingeEmbeddingLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_HingeEmbeddingLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm1d_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm1d_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm1d_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm2d_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm3d_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_InstanceNorm3d_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_KLDivLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_L1Loss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LPPool1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LPPool1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LPPool2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LSTMCell_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LSTM_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LSTM_train_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LayerNorm_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LogSigmoid_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LogSoftmax_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_LogSoftmax_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MSELoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MarginRankingLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MarginRankingLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MaxPool1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MaxPool3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiLabelMarginLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiLabelMarginLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiLabelSoftMarginLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiheadAttention_eval_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiheadAttention_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_MultiheadAttention_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_PReLU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_PoissonNLLLoss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_PoissonNLLLoss_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RMSNorm_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RMSNorm_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RNNCell_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_RNN_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReLU6_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReLU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReLU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReflectionPad1d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReflectionPad2d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReflectionPad2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReplicationPad1d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReplicationPad2d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ReplicationPad3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SELU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SiLU_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SiLU_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Sigmoid_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_SmoothL1Loss_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softmax_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softmin_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softshrink_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Softsign_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Tanh_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Tanhshrink_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_Threshold_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerDecoderLayer_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerEncoderLayer_eval_mode_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerEncoderLayer_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_TransformerEncoder_train_mode_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ZeroPad3d_swap_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_empty_nn_ZeroPad3d_swap_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveAvgPool3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AdaptiveMaxPool3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_AvgPool3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCELoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCELoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCEWithLogitsLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCEWithLogitsLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCEWithLogitsLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BCEWithLogitsLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm1d_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm2d_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm3d_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_BatchNorm3d_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Bilinear_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Bilinear_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Bilinear_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CELU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CTCLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CTCLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CircularPad3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConstantPad2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Conv3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ConvTranspose3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CosineEmbeddingLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CosineEmbeddingLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CosineEmbeddingLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CrossEntropyLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_CrossEntropyLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ELU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ELU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Embedding_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_FractionalMaxPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_FractionalMaxPool2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GELU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GELU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GELU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GLU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRUCell_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRUCell_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRU_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRU_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRU_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GRU_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GaussianNLLLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GroupNorm_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_GroupNorm_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardshrink_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardswish_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardswish_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardswish_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Hardtanh_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HingeEmbeddingLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HingeEmbeddingLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HingeEmbeddingLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HuberLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HuberLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_HuberLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm1d_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm2d_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_InstanceNorm3d_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_KLDivLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_KLDivLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_KLDivLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_L1Loss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_L1Loss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_L1Loss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LPPool3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTMCell_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTMCell_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTMCell_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LSTM_train_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LayerNorm_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LayerNorm_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LeakyReLU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LeakyReLU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Linear_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Linear_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Linear_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LocalResponseNorm_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LogSoftmax_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_LogSoftmax_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MarginRankingLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool2d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MaxPool3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Mish_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Mish_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelMarginLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelMarginLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelSoftMarginLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelSoftMarginLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiLabelSoftMarginLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiMarginLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiMarginLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_MultiheadAttention_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_NLLLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_NLLLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_PReLU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_PReLU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_PoissonNLLLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RMSNorm_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RMSNorm_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNNCell_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_eval_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_eval_mode_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_RNN_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU6_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU6_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU6_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReLU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReflectionPad3d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad1d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad1d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad3d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ReplicationPad3d_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SELU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SELU_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SELU_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SiLU_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SiLU_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Sigmoid_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Sigmoid_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SmoothL1Loss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SoftMarginLoss_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SoftMarginLoss_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SoftMarginLoss_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_SoftMarginLoss_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax2d_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmax_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmin_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmin_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softmin_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softplus_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softplus_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softplus_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softshrink_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softsign_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Softsign_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanh_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanh_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanh_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanh_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanhshrink_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanhshrink_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Tanhshrink_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Threshold_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Threshold_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerDecoderLayer_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerDecoderLayer_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerDecoderLayer_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoderLayer_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoderLayer_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoderLayer_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_eval_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_eval_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_train_mode_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_train_mode_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_TransformerEncoder_train_mode_swap_True_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_Transformer_swap_False_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad1d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad1d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad2d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad2d_swap_True_set_grad_False_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad3d_swap_False_set_grad_True_cpu_float32, test/test_modules.py::TestModuleCPU::test_to_nn_ZeroPad3d_swap_True_set_grad_False_cpu_float32 2025-09-07T08:24:51.9235037Z 2025-09-07T08:24:56.2812636Z Running test_decomp 7/17 ... [2025-09-07 08:24:56.277810] 2025-09-07T08:24:56.2813054Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:24:56.2820886Z 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-09-07 08:24:56.277810] 2025-09-07T08:31:10.8633996Z 2025-09-07T08:31:10.8635101Z test_decomp 1/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_1.17_741b291bbd159b47_.log 2025-09-07T08:31:10.8797552Z 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-09-07T08:31:10.8943040Z 2025-09-07T08:31:15.0474906Z Running test_decomp 10/17 ... [2025-09-07 08:31:15.046806] 2025-09-07T08:31:15.0481315Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:31:15.0482377Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=10', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:31:15.047973] 2025-09-07T08:31:44.3566403Z 2025-09-07T08:31:44.3567187Z test_decomp 6/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_6.17_f2784d4ef6eb1d1d_.log 2025-09-07T08:31:44.3725992Z 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-09-07T08:31:44.3877514Z 2025-09-07T08:31:48.6356869Z Running test_decomp 15/17 ... [2025-09-07 08:31:48.635283] 2025-09-07T08:31:48.6357331Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:31:48.6363700Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=15', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:31:48.635860] 2025-09-07T08:35:40.7969159Z 2025-09-07T08:35:40.7970082Z test_decomp 7/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_7.17_ac88bd8f403a9a13_.log 2025-09-07T08:35:40.8135261Z Running 541 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cauchy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_complex_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_igamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_imag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_hermitian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_triangular_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_median_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_layer_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardsigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_pca_lowrank_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polar_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_gaussian_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__softmax_backward_data_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_diag_embed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_dot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_logaddexp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_special_entr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exponential_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e5m2fnuz, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_hypot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_igammac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_native_batch_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_RNN_train_mode_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_native_layer_norm_cpu_decomp_cpu 2025-09-07T08:35:40.8286086Z 2025-09-07T08:35:45.2180607Z Running test_decomp 16/17 ... [2025-09-07 08:35:45.217862] 2025-09-07T08:35:45.2181308Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:35:45.2188776Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=16', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:35:45.218450] 2025-09-07T08:40:20.1721622Z 2025-09-07T08:40:20.1733272Z test_decomp 10/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_10.17_6aaeae77d83a46bb_.log 2025-09-07T08:40:20.1888940Z Running 548 items in this shard: test/test_decomp.py::TestDecompCPU::test_arange_graph_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__upsample_bilinear2d_aa_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_inverse_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_frac_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gcd_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_istft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_singular_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_slogdet_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svdvals_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svdvals_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_batch_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_bag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_glu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_group_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardswish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_huber_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_area_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_area_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_logsigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_nll_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pdist_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_prelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_prelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_number_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_blackman_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_hamming_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick__softmax_backward_data_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick__upsample_bilinear2d_aa_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_alias_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_frac_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_lerp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_norm_inf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_rsub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_select_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_special_log_ndtr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_std_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e4m3fn, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e5m2, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_grid_sampler_2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardswish_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_leaky_relu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_prelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_rrelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_GRU_eval_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_RNN_train_mode_cpu_float32 2025-09-07T08:40:20.2041812Z 2025-09-07T08:40:24.6614881Z Running export/test_experimental 1/1 ... [2025-09-07 08:40:24.655980] 2025-09-07T08:40:24.6616032Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:40:24.6622168Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_experimental.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:40:24.661568] 2025-09-07T08:40:28.5366785Z 2025-09-07T08:40:28.5367901Z export/test_experimental 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_experimental_1.1_125c8b1f545570e4_.log 2025-09-07T08:40:28.5368950Z 2025-09-07T08:40:33.0114579Z Running dynamo/test_torchrec 1/1 ... [2025-09-07 08:40:33.009737] 2025-09-07T08:40:33.0115079Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:40:33.0120948Z 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-09-07 08:40:33.009737] 2025-09-07T08:40:36.8161689Z 2025-09-07T08:40:36.8162629Z dynamo/test_torchrec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_torchrec_1.1_249feb91f8860c96_.log 2025-09-07T08:40:36.8163409Z 2025-09-07T08:40:41.5220476Z Running inductor/test_mmdecomp 1/1 ... [2025-09-07 08:40:41.519802] 2025-09-07T08:40:41.5221237Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:40:41.5228689Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mmdecomp.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:40:41.519802] 2025-09-07T08:40:51.8387671Z 2025-09-07T08:40:56.3121883Z inductor/test_mmdecomp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mmdecomp_1.1_3601b8065741f648_.log 2025-09-07T08:40:56.3122759Z 2025-09-07T08:40:56.3122967Z Running dynamo/test_ctx_manager 1/1 ... [2025-09-07 08:40:56.311765] 2025-09-07T08:40:56.3123484Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:40:56.3128018Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_ctx_manager.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:40:56.312347] 2025-09-07T08:41:06.6524324Z 2025-09-07T08:41:06.6525272Z dynamo/test_ctx_manager 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_ctx_manager_1.1_466800106cc60486_.log 2025-09-07T08:41:06.6525940Z 2025-09-07T08:41:10.8799411Z Running dynamo/test_recompile_ux 1/1 ... [2025-09-07 08:41:10.879394] 2025-09-07T08:41:10.8799967Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:41:10.8805933Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_recompile_ux.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:41:10.879992] 2025-09-07T08:41:14.6490333Z 2025-09-07T08:41:14.6491391Z dynamo/test_recompile_ux 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_recompile_ux_1.1_a3897764a151e14c_.log 2025-09-07T08:41:14.6492080Z 2025-09-07T08:41:18.7727788Z Running functorch/test_vmap_registrations 1/1 ... [2025-09-07 08:41:18.772075] 2025-09-07T08:41:18.7728334Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:41:18.7734015Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_vmap_registrations.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:41:18.773175] 2025-09-07T08:41:29.5945228Z 2025-09-07T08:41:29.5946489Z functorch/test_vmap_registrations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_vmap_registrations_1.1_fa8c55968b08897d_.log 2025-09-07T08:41:29.6973272Z Running 1722 items in this shard: test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_TorchScriptTesting::take_an_instance], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_TorchScriptTesting::take_an_instance_inferred], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_TorchScriptTesting::takes_foo_cia], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_test::cat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_test::get_first], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[_test::leaky_relu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__and__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__and__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__iand__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__iand__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__ior__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__ior__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__ixor__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__ixor__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__or__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__or__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__xor__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::__xor__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_add_batch_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_autocast_to_full_precision], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_autocast_to_reduced_precision], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_batch_norm_impl_index], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_batch_norm_impl_index_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Byte], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Char], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Double], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Half], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Long], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cast_Short], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_choose_qparams_per_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_convolution.deprecated], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_convolution_double_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_convolution_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cufft_clear_plan_cache], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cufft_get_plan_cache_max_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cufft_get_plan_cache_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_cufft_set_plan_cache_max_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_debug_has_internal_overlap], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_dim_arange], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_embedding_bag_sparse_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_fused_rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_gather_sparse_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_grid_sampler_2d_cpu_fallback_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_has_compatible_shallow_copy_type], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_is_zerotensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_lu_with_info], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_nnpack_available], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_pack_padded_sequence_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_pad_circular], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_pad_enum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_pad_packed_sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_propagate_xla_data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_remove_batch_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_reshape_from_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_rowwise_prune], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_saturate_weight_to_fp16], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_scaled_dot_product_attention_math], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_shape_as_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sobol_engine_draw], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sobol_engine_ff_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sobol_engine_initialize_state_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sobol_engine_scramble_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_bsc_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_bsr_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_compressed_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_coo_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_csc_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_csr_tensor_unsafe], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_log_softmax.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_log_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_mm.reduce], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_mm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_softmax.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_sum.dim_dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_sum.dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_sparse_sum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_ambiguous_defaults.a], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_ambiguous_defaults.b], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_autograd_multiple_dispatch.ntonly], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_check_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_serialization_subcmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_test_string_default], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_thnn_differentiable_gru_cell_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_thnn_differentiable_lstm_cell_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_thnn_fused_lstm_cell_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_to_cpu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_unpack_dual], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_bicubic2d_aa.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_bilinear2d_aa.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_nearest_exact1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_nearest_exact2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_upsample_nearest_exact3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_use_cudnn_rnn_flatten_weight], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_bsc_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_bsr_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_compressed_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_coo_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_csc_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_validate_sparse_csr_tensor_args], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_version], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_weight_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_weight_norm_differentiable_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_wrapped_linear_prepack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::_wrapped_quantized_linear_prepacked], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::absolute.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::absolute], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::absolute_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adaptive_avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adaptive_avg_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adaptive_avg_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adaptive_max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::adjoint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::affine_grid_generator_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::align_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::align_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::align_to.ellipsis_idx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::align_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::all.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::all.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::alpha_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::alpha_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::any.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::any.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccos.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccos], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccos_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccosh.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccosh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arccosh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsin.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsin], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsin_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsinh.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsinh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arcsinh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan2_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctan_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctanh.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctanh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::arctanh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argsort.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argsort.stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argsort.stable_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argsort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::argwhere], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_1d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_2d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_3d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::atleast_3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::batch_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::bilinear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::broadcast_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::broadcast_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::can_cast], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cartesian_prod], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cat.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cat.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::chain_matmul.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::chain_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::chalf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::choose_qparams_optimized], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::clip_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::coalesce], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::column_stack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::column_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::combinations], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concat.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concat.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concat.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concatenate.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concatenate.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concatenate.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::concatenate], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conj_physical], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::contiguous], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv1d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv2d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv3d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv_tbc_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv_transpose1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv_transpose2d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::conv_transpose3d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::corrcoef], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cosine_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cosine_similarity], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cov], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cross.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cross], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cross_entropy_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ctc_loss.IntList], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ctc_loss.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cudnn_is_acceptable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummax.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummax.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummaxmin_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummin.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cummin.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumprod.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumprod.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumprod_.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumprod_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumsum.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumsum.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumsum_.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumulative_trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::cumulative_trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diag.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diagflat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diagonal.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diff.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::diff], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide.out_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide_.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::divide_.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dstack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::dstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::einsum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::embedding_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::embedding_bag.padding_idx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::embedding_bag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::embedding_sparse_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::empty.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::expand_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_channel_affine], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_channel_affine_cachemask_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_tensor_affine.tensor_qparams], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_tensor_affine], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fake_quantize_per_tensor_affine_cachemask_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_fp16_weight.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_fp16_weight], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_fp16_weight_fp32_activation.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_fp16_weight_fp32_activation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_int8_weight], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_int8_weight_fp32_activation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_linear_quantize_weight], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_pack_gemm_matrix_fp16], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_pack_quantized_matrix.KN], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fbgemm_pack_quantized_matrix], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::feature_alpha_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::feature_alpha_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::feature_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::feature_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_fftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_hfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ifftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_ihfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_irfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfft.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfft2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfftn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fft_rfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fill_diagonal_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fix.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fix], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fix_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten.DimnameList], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten.named_out_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten.using_ints], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten.using_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flatten_dense_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fliplr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::flipud], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Tensor_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Tensor_Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Tensor_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power.Tensor_Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::float_power_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::frobenius_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::frobenius_norm.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::fused_moving_avg_obs_fake_quant], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gather.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gather.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gather_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ger.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ger], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.scalararray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.scalarint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.scalarrayarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.scalarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.tensorarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gradient.tensorarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::greater_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::grid_sampler], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::group_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gru.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gru.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::gru_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hinge_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::histogramdd.TensorList_bins], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::histogramdd.int_bins], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::histogramdd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hstack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::hstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::imag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_add.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_copy.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_copy_.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_fill.Dimname_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_fill.Dimname_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_fill_.Dimname_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_fill_.Dimname_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_select.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_select.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::index_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::infinitely_differentiable_gelu_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::inner.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::inner], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::instance_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::inverse.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::inverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_complex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_distributed], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_floating_point], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_inference], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_leaf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_neg], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_nonzero], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_signed], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::is_vulkan_available], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::isclose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::isfinite], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::isreal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::istft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::item], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kl_div], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kron.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kron], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kthvalue.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::kthvalue.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::l1_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::layer_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ldexp.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ldexp.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ldexp_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::less_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cholesky.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cholesky], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cond.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cond.p_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cond.p_str_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_cond], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_det.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_diagonal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigh.eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigvalsh.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_eigvalsh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_inv.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_inv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_ldl_factor.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_ldl_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_lu_factor.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_lu_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matmul.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_norm.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_norm.str_ord], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_norm.str_ord_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_power.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.atol_rtol_float_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.atol_rtol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.atol_rtol_tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.out_tol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank.tol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_matrix_rank], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_multi_dot.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_multi_dot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_norm.ord_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_norm.ord_str_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_norm.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.atol_rtol_float_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.out_rcond_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv.rcond_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_pinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_slogdet.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_solve.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_solve_ex.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_solve_ex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_svd.U], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_svdvals.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_svdvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_tensorinv.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_tensorinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_tensorsolve.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_tensorsolve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_vecdot.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linalg_vecdot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::linear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::log_sigmoid.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::log_sigmoid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::log_softmax.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::log_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logcumsumexp.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logcumsumexp.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logsumexp.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::logsumexp.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lstm.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lstm.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lstm_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lu_solve.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::lu_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mH], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mT], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::margin_ranking_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::masked_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matmul.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_H], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_exp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_exp_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_power.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max.names_dim_max], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max_pool1d_with_indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::max_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mean.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::median.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::median.names_dim_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::meshgrid.indexing], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::meshgrid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::min.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::min.names_dim_min], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::min.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::min.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mish_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mode.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::mode.dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::moveaxis.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::moveaxis.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::movedim.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::movedim.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::msort.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::msort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multilabel_margin_loss.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multilabel_margin_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::multiply_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanmean.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanmean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanmedian.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanmedian.names_dim_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanquantile.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanquantile.scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanquantile.scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nanquantile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::narrow.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::narrow], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::native_channel_shuffle], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::negative.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::negative], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::negative_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nested_to_padded_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss2d.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nll_loss_nd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nonzero_numpy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm.names_ScalarOpt_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm.names_ScalarOpt_dim_dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm.names_dtype_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::norm_except_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal.Scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal.Tensor_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::not_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nuclear_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nuclear_norm.dim_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nuclear_norm.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::nuclear_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::numpy_T], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::one_hot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::orgqr.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::orgqr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::outer.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::outer], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::output_nr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pad_sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pairwise_distance], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pin_memory], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::pinverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::poisson_nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::positive], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::prelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::prod.Dimname_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::prod.dim_Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::promote_types], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::qr.Q], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::qr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantile.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantile.scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantile.scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantized_gru_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantized_lstm_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantized_rnn_relu_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::quantized_rnn_tanh_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rand.generator_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::randn.generator_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::randn.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::ravel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::real], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::refine_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::relu6], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::relu6_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rename], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rename_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::repeat_interleave.self_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::repeat_interleave.self_int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::requires_grad_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::reshape], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::reshape_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::resolve_conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::resolve_neg], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::result_type.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::result_type.Scalar_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::result_type.Scalar_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::result_type.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::retain_grad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::retains_grad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_relu.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_relu.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_relu_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_tanh.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_tanh.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rnn_tanh_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::row_stack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::row_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rrelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::rrelu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::scaled_dot_product_attention], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::scatter.dimname_src], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::scatter.dimname_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::scatter_add.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::select.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::selu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::selu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::set_.source_Tensor_storage_offset], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::set_data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::silu_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::size.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::slogdet.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::slow_conv3d.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::slow_conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::smm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::softmax.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sort.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sort.dimname_stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sort.dimname_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sort.dimname_values_stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_bsc_tensor.ccol_row_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_bsc_tensor.ccol_row_value_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_bsr_tensor.crow_col_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_bsr_tensor.crow_col_value_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_coo_tensor.indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_coo_tensor.indices_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_csc_tensor.ccol_row_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_csc_tensor.ccol_row_value_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_csr_tensor.crow_col_value], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sparse_csr_tensor.crow_col_value_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_digamma.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_digamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erf.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erfc.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erfc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erfinv.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_erfinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_exp2.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_exp2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_expit.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_expit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_expm1.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_expm1], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammainc.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammainc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammaincc.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammaincc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammaln.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_gammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_i0.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_i0], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_log1p.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_log1p], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_log_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_logit.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_logit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_logsumexp.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_logsumexp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_multigammaln.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_multigammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_ndtr.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_ndtr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_polygamma.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_polygamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_psi.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_psi], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_round.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_round], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_sinc.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_sinc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.other_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.other_scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.self_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy.self_scalar_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::special_xlogy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::split.sizes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::square.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::square], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::square_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::squeeze.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::squeeze_.dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sspaddmm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.correction_names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std_mean.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std_mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::std_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::stft.center], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::stft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::stride.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::stride.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::subtract_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sum.DimnameList_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sum.dim_DimnameList], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sum_to_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::svd.U], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::swapaxes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::swapaxes_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::swapdims], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::swapdims_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sym_numel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sym_size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sym_storage_offset], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::sym_stride.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::take_along_dim.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::take_along_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensor_split.indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensor_split.sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensor_split.tensor_indices_or_sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensordot.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tensordot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::thnn_conv2d.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::thnn_conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::tile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to.device], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to.dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to.dtype_layout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_dense], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_dense_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_mkldnn_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse.sparse_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse_bsc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse_bsr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse_csc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::to_sparse_csr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trace_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::transpose.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trapz.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::trapz.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::triplet_margin_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::true_divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::type_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unbind.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unflatten.Dimname], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unflatten.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unflatten_dense_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::unsafe_chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_bicubic2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_bilinear2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_linear1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_nearest1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_nearest2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_nearest3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::upsample_trilinear3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::value_selecting_reduction_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.correction_names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.names_out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var_mean.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var_mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::var_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::view_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vstack.out], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::vstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::where.ScalarOther], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::where.ScalarSelf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::where.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[aten::where], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_gather_into_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_gather_into_tensor_coalesced], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_reduce], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_reduce_coalesced], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::all_to_all_single], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::broadcast], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::reduce_scatter_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::reduce_scatter_tensor_coalesced], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[c10d_functional::wait_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[inductor::_alloc_from_pool], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[mkldnn::_is_mkldnn_acl_supported], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[mkldnn::_is_mkldnn_bf16_supported], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[mkldnn::_is_mkldnn_fp16_supported], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[prepacked::unpack_prepacked_sizes_conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[prepacked::unpack_prepacked_sizes_linear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[profiler::_record_function_enter], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[profiler::_record_function_enter_new], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[profiler::_record_function_exit._RecordFunction], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[profiler::_record_function_exit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv1d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_dilation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_groups], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_output_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_stride], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_transpose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv2d_unpack_sizes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_dilation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_groups], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_output_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_stride], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_transpose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv3d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose1d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_dilation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_groups], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_output_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_stride], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_transpose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose2d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_dilation], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_groups], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_output_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_stride], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_transpose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_transpose3d_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::conv_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::embedding_bag_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::linear_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::linear_unpack_fp16], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[quantized::make_quantized_cell_params_fp16], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_a_batching_rule_for_composite_implicit_autograd_[sparse::qlinear_unpack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__and__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__and__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__iand__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__iand__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__ior__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__ior__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__ixor__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__ixor__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__or__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__or__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__xor__.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::__xor__.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_batch_norm_impl_index], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_convolution_double_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_convolution_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_fused_rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_has_compatible_shallow_copy_type], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_lu_with_info], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_pad_circular], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_scaled_dot_product_attention_math], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_test_check_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_upsample_bicubic2d_aa.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::_upsample_bilinear2d_aa.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::absolute], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::absolute_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adaptive_avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adaptive_avg_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adaptive_avg_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adaptive_max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::adjoint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::alias_copy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arccos], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arccos_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arccosh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arccosh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arcsin], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arcsin_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arcsinh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arcsinh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctan2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctan2_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctan], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctan_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctanh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::arctanh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::argsort.stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::argsort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::as_strided_copy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_1d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_2d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_3d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::atleast_3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::batch_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::broadcast_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::broadcast_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cartesian_prod], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::clip.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::clip], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::combinations], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::concat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::concatenate], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conj_physical], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::contiguous], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv1d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv2d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv3d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv_transpose1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv_transpose2d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::conv_transpose3d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::corrcoef], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cosine_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cosine_similarity], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cov], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cross], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cross_entropy_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cumprod_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cumulative_trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::cumulative_trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::diag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::diagonal_copy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::diff], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide_.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::divide_.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::dsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::dsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::dstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::einsum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::embedding_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::expand_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_fft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_fft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_fftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_fftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_hfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_hfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_hfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ifft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ifft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ifftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ifftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_ihfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_irfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_irfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_irfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_rfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_rfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fft_rfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fix], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::flatten.using_ints], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::fliplr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::flipud], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::float_power.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::float_power.Tensor_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::float_power.Tensor_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::frobenius_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gather_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::ger], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.scalararray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.scalarint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.scalarrayarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.scalarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.tensorarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::gradient.tensorarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::greater.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::greater.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::greater_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::greater_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::grid_sampler], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::group_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::hinge_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::hsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::hsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::hstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::imag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::index_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::inner], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::instance_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::inverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::is_complex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::is_same_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::isfinite], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::isreal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::kron], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::l1_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::layer_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::ldexp.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::less.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::less.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::less_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::less_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_cholesky], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_cond], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_diagonal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_eigh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_eigvalsh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_inv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_ldl_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_lu_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_norm.str_ord], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_rank.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_matrix_rank.atol_rtol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_multi_dot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_norm.ord_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_pinv.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_pinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_solve_ex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_svdvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_tensorinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linalg_vecdot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::linear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::log_sigmoid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::log_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::logdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::mH], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::mT], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::matrix_H], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::matrix_exp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max_pool1d_with_indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::max_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::meshgrid.indexing], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::meshgrid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::min.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::moveaxis.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::movedim.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::movedim.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::msort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::multiply.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::multiply.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::multiply_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::multiply_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nanmean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::narrow], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::negative], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nll_loss2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nll_loss_nd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::not_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::not_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nuclear_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::nuclear_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::numpy_T], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::orgqr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::outer], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::pad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::pairwise_distance], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::pinverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::poisson_nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::positive], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::prelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::qr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::ravel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::real], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::relu6], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::relu6_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::repeat_interleave.self_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::repeat_interleave.self_int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::reshape], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::reshape_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::resolve_conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::resolve_neg], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::result_type.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::result_type.Scalar_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::result_type.Scalar_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::result_type.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::row_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::rrelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::rrelu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::scaled_dot_product_attention], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::selu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::selu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_digamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_erf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_erfc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_erfinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_exp2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_expit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_expm1], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_gammainc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_gammaincc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_gammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_i0], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_log1p], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_log_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_logit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_logsumexp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_multigammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_ndtr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_polygamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_psi], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_round], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_sinc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_xlogy.other_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_xlogy.self_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::special_xlogy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::split.sizes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::square], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::std.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::std], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::std_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::std_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::subtract.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::sum_to_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::swapaxes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::swapaxes_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::swapdims], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::swapdims_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::take_along_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::tensor_split.indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::tensor_split.sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::tensordot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::tile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::to.device], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::to.dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::to.dtype_layout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::to.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::trapz.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::trapz.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::true_divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::true_divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::true_divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::true_divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::type_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::unflatten.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::unfold_copy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::unsafe_chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_bicubic2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_bilinear2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_linear1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_nearest1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_nearest2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_nearest3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::upsample_trilinear3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::value_selecting_reduction_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::var.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::var], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::var_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::var_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::view_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::vsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::vsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::vstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::where.ScalarOther], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::where.ScalarSelf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_register_functorch_batched_decomposition_[aten::where.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::absolute], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::absolute_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adaptive_avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adaptive_avg_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adaptive_avg_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adaptive_max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::adjoint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::affine_grid_generator_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::align_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::align_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::align_to.ellipsis_idx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::align_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::alpha_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::alpha_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arccos], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arccos_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arccosh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arccosh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arcsin], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arcsin_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arcsinh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arcsinh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctan2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctan2_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctan], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctan_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctanh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::arctanh_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::argsort.stable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::argsort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::argwhere], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_1d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_2d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_3d.Sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::atleast_3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::avg_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::batch_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::bilinear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::broadcast_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::broadcast_to], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::can_cast], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cartesian_prod], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cat.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::chain_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::chalf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::choose_qparams_optimized], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::clip.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::clip], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::clip_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::clip_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::coalesce], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::column_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::combinations], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::concat.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::concat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::concatenate.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::concatenate], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conj_physical], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::contiguous], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv1d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv2d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv3d.padding], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv_tbc_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv_transpose1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv_transpose2d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::conv_transpose3d.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::corrcoef], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cosine_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cosine_similarity], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cov], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cross], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cross_entropy_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ctc_loss.IntList], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ctc_loss.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cudnn_is_acceptable], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cummaxmin_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cumprod_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cumulative_trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::cumulative_trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::diag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::diagflat], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::diff], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide.out_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide_.Scalar_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::divide_.Tensor_mode], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::dstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::einsum], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::embedding_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::embedding_bag.padding_idx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::embedding_bag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::expand_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::feature_alpha_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::feature_alpha_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::feature_dropout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::feature_dropout_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_fft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_fft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_fftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_fftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_hfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_hfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_hfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ifft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ifft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ifftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ifftshift], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ihfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ihfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_ihfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_irfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_irfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_irfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_rfft2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_rfft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fft_rfftn], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fill_diagonal_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fix], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fix_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flatten.named_out_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flatten.using_ints], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flatten.using_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flatten_dense_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fliplr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::flipud], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power.Tensor_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power.Tensor_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::float_power_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::frobenius_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::fused_moving_avg_obs_fake_quant], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gather_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ger], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.scalararray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.scalarint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.scalarrayarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.scalarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.tensorarray], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gradient.tensorarrayint], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::greater_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::grid_sampler], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::group_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gru.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gru.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::gru_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::hinge_embedding_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::histogramdd.TensorList_bins], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::histogramdd.int_bins], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::histogramdd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::hsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::hsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::hstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::imag], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::index_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::infinitely_differentiable_gelu_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::inner], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::instance_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::inverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::isclose], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::isfinite], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::isreal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::istft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::item], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::kl_div], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::kron], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::l1_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::layer_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ldexp.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ldexp_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::less_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_cholesky], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_cond.p_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_cond], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_det], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_diagonal], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_eigh.eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_eigh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_eigvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_eigvalsh], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_inv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_ldl_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_lu_factor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_norm.str_ord], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank.atol_rtol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank.out_tol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank.tol_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_matrix_rank], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_multi_dot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_norm.ord_str], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_pinv.atol_rtol_float], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_pinv.out_rcond_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_pinv.rcond_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_pinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_solve_ex], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_svd.U], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_svdvals], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_tensorinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_tensorsolve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linalg_vecdot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::linear], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::log_sigmoid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::log_softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::logdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::logsumexp.names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::lstm.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::lstm.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::lstm_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::lu_solve], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::mH], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::mT], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::margin_ranking_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::masked_select_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matmul], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matrix_H], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matrix_exp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matrix_exp_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::matrix_power], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max.names_dim_max], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max_pool1d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max_pool1d_with_indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max_pool2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::max_pool3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::median.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::median.names_dim_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::meshgrid.indexing], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::meshgrid], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::min.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::min.names_dim_min], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::min.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::mish_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::moveaxis.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::moveaxis.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::movedim.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::movedim.intlist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::msort], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multilabel_margin_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multiply.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multiply.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multiply_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::multiply_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanmean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanmedian.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanmedian.names_dim_values], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanquantile.scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nanquantile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::narrow.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::narrow], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::native_channel_shuffle], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::negative], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::negative_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nested_to_padded_tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nll_loss2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nll_loss_nd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nonzero_numpy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::norm.names_ScalarOpt_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::norm.names_ScalarOpt_dim_dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::norm_except_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::not_equal.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::not_equal.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::not_equal_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::not_equal_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nuclear_norm.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::nuclear_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::numpy_T], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::one_hot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::orgqr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::outer], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::output_nr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pad_sequence], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pairwise_distance], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pdist], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pin_memory], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::pinverse], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::poisson_nll_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::positive], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::prelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::promote_types], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::qr.Q], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::qr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::quantile.scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::quantile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::ravel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::real], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::refine_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::relu6], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::relu6_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rename], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rename_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::repeat_interleave.self_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::repeat_interleave.self_int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::requires_grad_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::reshape], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::reshape_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::resolve_conj], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::resolve_neg], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::result_type.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::result_type.Scalar_Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::result_type.Scalar_Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::result_type.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::retain_grad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::retains_grad], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rms_norm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_relu.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_relu.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_relu_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_tanh.data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_tanh.input], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rnn_tanh_cell], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::row_stack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rrelu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::rrelu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::scaled_dot_product_attention], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::selu], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::selu_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::set_.source_Tensor_storage_offset], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::set_data], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::silu_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::slogdet], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::slow_conv3d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::smm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::softmax.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_digamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_erf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_erfc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_erfinv], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_exp2], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_expit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_expm1], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_gammainc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_gammaincc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_gammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_i0], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_log1p], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_log_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_logit], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_logsumexp], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_multigammaln], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_ndtr], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_polygamma], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_psi], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_round], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_sinc], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_softmax], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_xlogy.other_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_xlogy.self_scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::special_xlogy], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::split.sizes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::square], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::square_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sspaddmm], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std_mean.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std_mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::std_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::stft.center], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::stft], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::stride.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::subtract.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::subtract.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::subtract_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::subtract_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sum_to_size], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::svd.U], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::svd], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::swapaxes], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::swapaxes_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::swapdims], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::swapdims_], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sym_numel], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sym_size.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sym_storage_offset], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::sym_stride.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::take_along_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tensor_split.indices], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tensor_split.sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tensor_split.tensor_indices_or_sections], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tensordot], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::thnn_conv2d], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::tile], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to.device], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to.dtype], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to.dtype_layout], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to.other], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to_dense], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to_dense_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::to_mkldnn_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trace_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trapezoid.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trapezoid.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trapz.dx], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::trapz.x], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::triplet_margin_loss], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::true_divide.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::true_divide.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::true_divide_.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::true_divide_.Tensor], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::type_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::unflatten.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::unflatten_dense_tensors], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::unsafe_chunk], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_bicubic2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_bilinear2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_linear1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_nearest1d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_nearest2d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_nearest3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::upsample_trilinear3d.vec], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::value_selecting_reduction_backward], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::vander], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var_mean.correction_names], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var_mean.dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var_mean.names_dim], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::var_mean], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::view_as], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::vsplit.array], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::vsplit.int], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::vstack], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::where.ScalarOther], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::where.ScalarSelf], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::where.Scalar], test/functorch/test_vmap_registrations.py::TestFunctorchDispatcher::test_unimplemented_batched_registrations_[aten::where] 2025-09-07T08:41:29.7956212Z 2025-09-07T08:41:33.7414097Z Running torch_np/numpy_tests/core/test_dtype 1/1 ... [2025-09-07 08:41:33.739606] 2025-09-07T08:41:33.7414649Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:41:33.7420442Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_dtype.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:41:33.739606] 2025-09-07T08:41:38.1890251Z 2025-09-07T08:41:38.1891573Z torch_np/numpy_tests/core/test_dtype 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_dtype_1.1_347043dd59ad8bc6_.log 2025-09-07T08:41:38.1931586Z Running 102 items in this shard: test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_equivalent_dtype_hashing, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_invalid_types, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Bool, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Bytes0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Complex128, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Complex32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Complex64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Datetime64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Float128, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Float16, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Float32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Float64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Int16, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Int32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Int64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Int8, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Object0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Str0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Timedelta64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_UInt16, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_UInt32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_UInt64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_UInt8, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Uint32, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Uint64, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_numeric_style_types_are_invalid_dtype_Void0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_comparison_operation0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_comparison_operation1, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_comparison_operation2, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_comparison_operation3, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_richcompare_invalid_dtype_equality, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_run_t0, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_run_t1, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_run_t2, test/torch_np/numpy_tests/core/test_dtype.py::TestBuiltin::test_run_t3, test/torch_np/numpy_tests/core/test_dtype.py::TestDtypeAttributeDeletion::test_dtype_non_writable_attributes_deletion, test/torch_np/numpy_tests/core/test_dtype.py::TestDtypeAttributeDeletion::test_dtype_writable_attributes_deletion, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t0, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t1, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t2, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t3, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_builtin_t4, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_DType11, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_bool__10, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_complex128_4, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_complex64_3, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_float16_0, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_float32_1, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_float64_2, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_int16_7, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_int32_8, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_int64_9, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_int8_6, test/torch_np/numpy_tests/core/test_dtype.py::TestPickling::test_pickle_types_uint8_5, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_complex64_complex64_None, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_float16_complex64_None, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_float32_complex64_None, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_other_4294967295_expected1_expected_weak1, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_other_value_based_other_65535_expected0_expected_weak0, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other0_expected0, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other1_expected1, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other2_expected2, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other3_expected3, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other4_expected4, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other5_expected5, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_complex_scalar_value_based_other6_expected6, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes0_expected0, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes1_expected1, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes2_expected2, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes3_expected3, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes4_expected4, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes5_expected5, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes6_expected6, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes7_expected7, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes8_expected8, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_permutations_do_not_influence_result_dtypes9_expected9, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_18446744073709551616, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_2, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_200, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_4294967296, test/torch_np/numpy_tests/core/test_dtype.py::TestPromotion::test_python_integer_promotion_val_9223372036854775808, test/torch_np/numpy_tests/core/test_dtype.py::TestMisc::test_dtypes_are_true, test/torch_np/numpy_tests/core/test_dtype.py::TestMisc::test_keyword_argument, test/torch_np/numpy_tests/core/test_dtype.py::TestFromDTypeAttribute::test_recursion, test/torch_np/numpy_tests/core/test_dtype.py::TestFromDTypeAttribute::test_simple, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_?, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_B, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_D, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_F, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_b, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_d, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_e, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_f, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_h, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_i, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_dtype_subclass_code_l, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_scalar, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_tuple_arg_len_0, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_tuple_arg_len_1, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_tuple_arg_len_2, test/torch_np/numpy_tests/core/test_dtype.py::TestClassGetItem::test_subscript_tuple_arg_len_3 2025-09-07T08:41:38.1970096Z 2025-09-07T08:41:41.1635033Z 2025-09-07T08:41:41.1650575Z test_decomp 15/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_15.17_a4c2b3cdc59c4192_.log 2025-09-07T08:41:41.1905345Z Running 513 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__batch_norm_with_update_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_shapes_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdist_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_uint16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_histc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hypot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_slogdet_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svdvals_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_unpack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_median_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_batch_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_alpha_dropout_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv1d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cross_entropy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mish_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rrelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ormqr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_hann_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_lowrank_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__batch_norm_with_update_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__native_batch_norm_legit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_xor_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_index_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_hardswish_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lcm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_lcm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_embedding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardswish_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_logsigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_remainder_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_uniform_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_LSTM_train_mode_cpu_float64 2025-09-07T08:41:41.2155328Z 2025-09-07T08:41:42.7808341Z Running torch_np/numpy_tests/core/test_shape_base 1/1 ... [2025-09-07 08:41:42.780473] 2025-09-07T08:41:42.7808924Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:41:42.7814989Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_shape_base.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:41:42.781057] 2025-09-07T08:41:45.4933263Z Running dynamo/test_hooks 1/1 ... [2025-09-07 08:41:45.485867] 2025-09-07T08:41:45.4933750Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:41:45.4939831Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_hooks.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:41:45.485867] 2025-09-07T08:41:47.3903545Z 2025-09-07T08:41:47.3904603Z torch_np/numpy_tests/core/test_shape_base 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_shape_base_1.1_d2d4ea32d8062563_.log 2025-09-07T08:41:47.3951515Z Running 119 items in this shard: test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_3D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast1d::test_r1array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_3D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast2d::test_r2array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestAtleast3d::test_3D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_casting_and_dtype, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_casting_and_dtype_type_error, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_empty_input, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_generator, test/torch_np/numpy_tests/core/test_shape_base.py::TestHstack::test_non_iterable, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_0D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_1D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_2D_array, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_2D_array2, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_casting_and_dtype, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_casting_and_dtype_type_error, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_empty_input, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_generator, test/torch_np/numpy_tests/core/test_shape_base.py::TestVstack::test_non_iterable, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_bad_out_shape, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_concatenate, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_concatenate_axis_None, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_exceptions, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_large_concatenate_axis_None, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_operator_concat, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_c8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f4_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_f8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis0_out_dtype_i8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_c8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f4_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_f8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_axis_0_out_dtype_i8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_out_and_dtype_simple, test/torch_np/numpy_tests/core/test_shape_base.py::TestConcatenate::test_returns_copy, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_c8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f4_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_f8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_equiv, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_no, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_safe, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_same_kind, test/torch_np/numpy_tests/core/test_shape_base.py::TestStackMisc::test_stack_out_and_dtype_axis_0_out_dtype_i8_casting_unsafe, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_3d, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_complicated, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_memory_order, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_mixed_1d_and_2d, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_simple_column_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_simple_row_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_total_size_estimate, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_1d_arrays_column_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_1d_arrays_multiple_rows, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_1d_arrays_row_wise, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_block_with_mismatched_shape, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_different_ndims, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_different_ndims_depths, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_empty_lists, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_invalid_nesting, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_nested, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_no_lists, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_returns_copy, test/torch_np/numpy_tests/core/test_shape_base.py::TestBlock::test_tuple 2025-09-07T08:41:47.3995508Z 2025-09-07T08:41:49.3390127Z 2025-09-07T08:41:49.3391069Z dynamo/test_hooks 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_hooks_1.1_a42ab64f76193db6_.log 2025-09-07T08:41:49.3391777Z 2025-09-07T08:41:51.5286213Z Running nn/test_packed_sequence 1/1 ... [2025-09-07 08:41:51.528054] 2025-09-07T08:41:51.5292304Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:41:51.5293411Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'nn/test_packed_sequence.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:41:51.528664] 2025-09-07T08:41:53.7133467Z Running export/test_verifier 1/1 ... [2025-09-07 08:41:53.712731] 2025-09-07T08:41:53.7133918Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:41:53.7139866Z 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-09-07 08:41:53.712731] 2025-09-07T08:41:55.9513642Z 2025-09-07T08:41:55.9514583Z nn/test_packed_sequence 1/1 was successful, full logs can be found in artifacts with path test/test-reports/nn.test_packed_sequence_1.1_6722b10fe373cb03_.log 2025-09-07T08:41:55.9519030Z Running 12 items in this shard: test/nn/test_packed_sequence.py::PackedSequenceTest::test_pack_padded_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_pack_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_pad_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_pad_sequence_with_non_iterable_sequences, test/nn/test_packed_sequence.py::PackedSequenceTest::test_pad_sequence_with_tensor_sequences, test/nn/test_packed_sequence.py::PackedSequenceTest::test_to, test/nn/test_packed_sequence.py::PackedSequenceTest::test_to_memory_format, test/nn/test_packed_sequence.py::PackedSequenceTest::test_total_length, test/nn/test_packed_sequence.py::PackedSequenceTest::test_type_casts, test/nn/test_packed_sequence.py::PackedSequenceTest::test_unpack_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_unpad_sequence, test/nn/test_packed_sequence.py::PackedSequenceTest::test_wrong_order 2025-09-07T08:41:55.9522887Z 2025-09-07T08:42:00.2241707Z Running export/test_sparse 1/1 ... [2025-09-07 08:42:00.223976] 2025-09-07T08:42:00.2242445Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:42:00.2251605Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_sparse.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:42:00.223976] 2025-09-07T08:42:07.4305704Z 2025-09-07T08:42:07.4307050Z export/test_verifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_verifier_1.1_e072e2433defabc6_.log 2025-09-07T08:42:07.4313453Z 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-09-07T08:42:07.4318594Z 2025-09-07T08:42:11.8043314Z Running test_ops 5/9 ... [2025-09-07 08:42:11.803895] 2025-09-07T08:42:11.8048877Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:42:11.8049864Z 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-09-07 08:42:11.803895] 2025-09-07T08:46:27.5510660Z 2025-09-07T08:46:27.5511856Z test_decomp 16/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_16.17_d87929ccf49abac2_.log 2025-09-07T08:46:27.5846925Z Running 544 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_left_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_complex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float8_e5m2fnuz, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_frac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_histogram_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_igammac_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cond_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_householder_product_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_hermitian_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_singular_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_qr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_triangular_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svdvals_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logaddexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cross_entropy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_bag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_group_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_kl_div_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_margin_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ormqr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_general_hamming_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_complex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_complex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_masked_fill_cpu, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_deg2rad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nan_to_num_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_max_unpool3d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_roll_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_squeeze_multiple_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_trace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_transpose_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_xlogy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_exponential_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_igammac_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_native_layer_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_glu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardswish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_prelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softplus_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_norm_nuc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_RNN_eval_mode_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_sdpa_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_weight_norm_interface_cpu 2025-09-07T08:46:27.6151298Z 2025-09-07T08:46:32.4476569Z Running test_ops 6/9 ... [2025-09-07 08:46:32.445008] 2025-09-07T08:46:32.4477217Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:46:32.4483813Z 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-09-07 08:46:32.445008] 2025-09-07T08:51:09.5662012Z 2025-09-07T08:51:09.5662793Z test_ops 5/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_5.9_4e0a26d67129011b_.log 2025-09-07T08:51:09.7857891Z Running 3882 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_grid_sampler_3d_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_grid_sampler_3d_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_grid_sampler_3d_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-09-07T08:51:09.9909334Z 2025-09-07T08:51:14.5296324Z Running test_ops 9/9 ... [2025-09-07 08:51:14.520749] 2025-09-07T08:51:14.5296738Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:51:14.5303235Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=9', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:51:14.520749] 2025-09-07T08:51:18.7734875Z 2025-09-07T08:51:18.7736053Z export/test_sparse 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_1.1_69d284e9330f9679_.log 2025-09-07T08:51:18.7805088Z Running 203 items in this shard: test/export/test_sparse.py::TestSparseProp::test_activation_coo, test/export/test_sparse.py::TestSparseProp::test_activation_csr, test/export/test_sparse.py::TestSparseProp::test_add, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseCSR 2025-09-07T08:51:18.7870998Z 2025-09-07T08:51:23.5213200Z Running dynamo/test_python_autograd 1/1 ... [2025-09-07 08:51:23.520875] 2025-09-07T08:51:23.5214097Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:51:23.5221807Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_python_autograd.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-09-07 08:51:23.521906] 2025-09-07T08:51:28.0507011Z 2025-09-07T08:51:28.0508778Z dynamo/test_python_autograd 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_python_autograd_1.1_81ec228db14f740e_.log 2025-09-07T08:51:28.0509971Z 2025-09-07T08:55:36.0397438Z 2025-09-07T08:55:36.0398601Z test_ops 6/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_6.9_dae4f90c9006484c_.log 2025-09-07T08:55:36.1699134Z Running 3908 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_grid_sampler_3d_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_grid_sampler_3d_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_grid_sampler_3d_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-09-07T08:55:36.3408916Z 2025-09-07T08:58:25.9587849Z 2025-09-07T08:58:25.9588593Z test_ops 9/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_9.9_ca5a9ebd222db8d6_.log 2025-09-07T08:58:26.0813755Z Running 3864 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___rsub___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_empty_permuted_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_compare_cpu_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scalar_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_zero__cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_cat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_clone_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_dsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_empty_permuted_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_movedim_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_permute_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_repeat_interleave_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_reshape_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_resolve_neg_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_roll_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_scalar_tensor_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_split_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_squeeze_multiple_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_triu_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unsqueeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_view_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_where_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes___rpow___cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rsub___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__chunk_cat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_byte_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_char_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_double_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_arange_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_not_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_cat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_clamp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_constant_pad_nd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_diagonal_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_dstack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_empty_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_equal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_erf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_exponential_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ifftshift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_floor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_hypot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_neg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_celu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_selu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_ones_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_permute_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_permute_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_round_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_entr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_logit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_std_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_transpose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unsqueeze_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_vdot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_view_as_complex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_acosh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addmm_decomposed_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_asinh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atleast_1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bernoulli_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_xor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_copysign_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cross_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cummin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_digamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_double_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_float_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_frexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ge_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_igamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isposinf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_jiterator_4inputs_with_extra_args_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_jiterator_binary_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_matrix_rank_hermitian_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logaddexp2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_long_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_max_reduction_no_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_meshgrid_variadic_tensors_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_minimum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mode_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nanmean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nansum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_neg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_binary_cross_entropy_with_logits_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv_transpose2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_cosine_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_dropout3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_fractional_max_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hardshrink_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_area_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_interpolate_trilinear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_mish_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pad_reflect_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_relu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_rms_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_rrelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_softmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_triplet_margin_with_distance_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_pow_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_quantile_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_randn_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_resolve_neg_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_reduce_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_bartlett_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sinc_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_bessel_j1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_take_along_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_torch_ops_aten__flash_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tril_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tril_indices_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unsafe_chunk_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_view_as_cpu, test/test_ops.py::TestCommonCPU::test_errors_bitwise_right_shift_cpu, test/test_ops.py::TestCommonCPU::test_errors_diagonal_copy_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_hfft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_irfft_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_errors_flipud_cpu, test/test_ops.py::TestCommonCPU::test_errors_ge_cpu, test/test_ops.py::TestCommonCPU::test_errors_geometric_cpu, test/test_ops.py::TestCommonCPU::test_errors_hstack_cpu, test/test_ops.py::TestCommonCPU::test_errors_item_cpu, test/test_ops.py::TestCommonCPU::test_errors_linalg_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_errors_masked_fill_cpu, test/test_ops.py::TestCommonCPU::test_errors_multinomial_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_adaptive_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_conv1d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_conv2d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_embedding_cpu, test/test_ops.py::TestCommonCPU::test_errors_reshape_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_gaussian_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_mul_layout1_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_randn_like_layout1_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_sum_layout2_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_hermite_polynomial_h_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_shifted_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_errors_uniform_cpu, test/test_ops.py::TestCommonCPU::test_errors_view_as_cpu, test/test_ops.py::TestCommonCPU::test_errors_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_slogdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_bessel_y1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_addbmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_aminmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_argmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_argsort_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_argwhere_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_char_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_count_nonzero_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diff_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_einsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_eye_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_hash_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_mean_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_item_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_2inputs_2outputs_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_kron_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_multi_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_matmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pad_constant_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nonzero_static_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_ones_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_4_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_real_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_resize__cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_resolve_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_rot90_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_searchsorted_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_slice_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_y0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sub_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsafe_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsafe_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_zeros_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_T_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_alias_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_asin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bitwise_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_broadcast_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cummax_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_erfinv_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_half_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_jiterator_binary_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_log10_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_logical_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_meshgrid_variadic_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_movedim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_narrow_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_new_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_new_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_pad_circular_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_put_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_resize_as__cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_resolve_conj_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_rsqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_signbit_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_entr_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_legendre_polynomial_p_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_squeeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unbind_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsqueeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rand___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmatmul___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_angle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argsort_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argwhere_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_block_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_byte_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cdouble_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_contiguous_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_contiguous_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_corrcoef_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cummin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isreal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigvalsh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_multi_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_unpack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mT_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_reduction_with_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_binary_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_min_reduction_no_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_msort_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nonzero_static_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_fro_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_normal_in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pinverse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randint_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_randn_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize_as__cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rot90_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scalar_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_short_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_list_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensor_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensordot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_to_sparse_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_topk_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trapz_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unique_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unravel_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_mean_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zero__cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zero__cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_numpy_ref_broadcast_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_diff_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_2inputs_2outputs_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vecdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_meshgrid_variadic_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_repeat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_repeat_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_exponential_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_gaussian_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_multiple_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_tensor_split_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_view_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_where_cpu_float64, test/test_ops.py::TestCommonCPU::test_out___getitem___cpu_float32, test/test_ops.py::TestCommonCPU::test_out___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_out__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_roll_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_vdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_argsort_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_grid_sampler_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_histogram_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nanmedian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_dstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_kron_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ldexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_cholesky_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_inv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_multi_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_slogdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_triangular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lu_unpack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tensordot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_searchsorted_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_uniform_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unique_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_view_as_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_warning___rand___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rmatmul___cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rmod___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__chunk_cat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_complex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_addcdiv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_broadcast_shapes_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_clamp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_clamp_min_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_conj_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_conj_physical_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cosh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_deg2rad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diagonal_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_erfc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_expand_as_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_flatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isnan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isposinf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isreal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_meshgrid_variadic_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_full_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_pixel_unshuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_softplus_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ones_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sinh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_bessel_j1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_square_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sub_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_transpose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unbind_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_view_as_complex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__segment_reduce_offsets_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_aminmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_atleast_3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_right_shift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_block_diag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bool_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_count_nonzero_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_exp2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_rfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_geometric_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_add_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isinf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isposinf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_jiterator_2inputs_2outputs_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lcm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_cholesky_ex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logdet_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_lt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_sum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_max_binary_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_meshgrid_variadic_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_min_binary_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mvlgamma_mvlgamma_p_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_new_full_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_dropout2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_fractional_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_trilinear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_logsigmoid_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_mse_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_replicate_negative_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_relu6_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nonzero_static_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polar_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_positive_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rand_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_round_decimals_3_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rsqrt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scalar_tensor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_amax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_scatter_reduce_amin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sigmoid_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sinh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_entr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_torch_ops_aten__flash_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_torch_ops_aten__safe_softmax_default_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_transpose_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_triu_indices_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_vstack_cpu, test/test_ops.py::TestCommonCPU::test_pointwise_tag_coverage_cpu, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asin_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_expm1_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log10_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log10_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_2_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rsqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rsqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinc_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_w_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_xlogy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_polar_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_right_shift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float8_e5m2fnuz, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igammac_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_imag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lcm_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_glu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_huber_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mse_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pdist_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_poisson_nll_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_prelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_amax_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_amin_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_clamp_max_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_clamp_min_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_irfftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_geometric_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logaddexp_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_minimum_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_ne_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_t_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_vstack_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_complex_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_allclose_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_allclose_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_left_shift_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_right_shift_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_right_shift_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftn_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frexp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igamma_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_imag_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_istft_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nextafter_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_elu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_group_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_leaky_relu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mish_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mse_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_nll_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_prelu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_smooth_l1_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_number_mean_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_zeta_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_mean_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gcd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hypot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lcm_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vector_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_normal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hinge_embedding_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_nll_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_number_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_left_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igammac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_le_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svdvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nextafter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_leaky_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_selu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softplus_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_T_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___radd___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rpow___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmm_decomposed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_aminmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_angle_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cfloat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_constant_pad_nd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cummax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gradient_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_half_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_histc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_2inputs_2outputs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_unary_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cond_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_factor_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_triangular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vander_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_and_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_not_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_constant_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resolve_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_roll_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rot90_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_stft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tile_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_to_sparse_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unique_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsafe_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_copy_cpu_complex64, test/test_ops.py::TestCompositeComplianceCPU::test_backward___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_asinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cholesky_inverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_clamp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_column_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_fft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ifftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_grid_sampler_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_kron_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_vecdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_native_dropout_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_mish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_pinverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_repeat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_std_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_trapz_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_var_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_view_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_vstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_argwhere_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diagflat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_div_floor_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_expand_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_expm1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_flipud_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_igamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lgamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_narrow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_new_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_new_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_permute_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_polar_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_positive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_round_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_bessel_y0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unsafe_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_var_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_arange_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_argsort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_char_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_clamp_min_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_dist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_empty_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expm1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_exponential_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_eye_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_fft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ifftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_flipud_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_frexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_igammac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isfinite_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isnan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lerp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_eig_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_eigvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logcumsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_celu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ones_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_outer_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_permute_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rand_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_randint_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_resolve_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_resolve_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_round_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_erfcx_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_unbind_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_vdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_T_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addmv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_argwhere_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_as_strided_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_asinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bucketize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_byte_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cfloat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_hfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ifft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_ifftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_full_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_gather_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_half_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_heaviside_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_hstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_inner_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_jiterator_unary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_eig_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_eigh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_inv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logaddexp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logical_xor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_narrow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_native_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_new_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_new_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_pinverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_round_decimals_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_slice_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_airy_ai_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_bessel_y1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_t_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_true_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_uniform_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_var_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_vstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___getitem___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_abs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_byte_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_empty_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_empty_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_frexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_full_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_igammac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_item_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logical_or_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_minimum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_native_dropout_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_native_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_new_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_new_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_silu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_positive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_rad2deg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_renorm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_reshape_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sgn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_bessel_j1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_bessel_y1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_split_list_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_std_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_stft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_take_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unflatten_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view_H_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view___rsub___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_int_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_long_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_atan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_block_diag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_broadcast_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_diagonal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_dsplit_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_hfft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_hfftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_ifftshift_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_irfftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_index_add_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isfinite_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_isinf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_lerp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logical_xor_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_neg_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_pow_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_reshape_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_squeeze_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_squeeze_multiple_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_std_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sum_to_size_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_t_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_transpose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_true_divide_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_vstack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addmm_decomposed_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_all_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_atanh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cov_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_diagflat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_empty_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_equal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_exp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_expand_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_expand_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_ifft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_ifftshift_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_irfft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_flatten_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_float_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_geqrf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isclose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_istft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eigvals_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_eigvalsh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_matrix_rank_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_slogdet_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_svdvals_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_tensorinv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_log10_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logical_or_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_select_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_new_empty_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_normalize_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pad_replicate_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_norm_fro_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_randn_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_repeat_interleave_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_resize__cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_std_unbiased_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_stft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_svd_lowrank_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_tanh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_trace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_true_divide_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_uniform_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_var_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_var_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_var_mean_unbiased_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_vdot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_byte_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_short_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_abs_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_addcdiv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_chunk_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_clone_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_cos_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_dot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_empty_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_expand_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_eye_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_hfft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_ifftshift_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_flip_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_matrix_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_svd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_log2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_new_empty_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_normal__in_place_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_prod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_reshape_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_roll_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sinh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_squeeze_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_to_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_transpose_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unbind_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addmv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_allclose_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_as_strided_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_asin_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_asinh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_atleast_3d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_broadcast_to_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_byte_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cfloat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cholesky_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cholesky_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cumsum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_dsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_expand_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_flipud_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_cholesky_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_cond_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_diagonal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_lu_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_lu_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_svd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_vander_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_vector_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_lu_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mH_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_select_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_std_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_matmul_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_conv1d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_conv2d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ones_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_prod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_randn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_repeat_interleave_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_reshape_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_rsub_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_split_list_args_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_square_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sum_to_size_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_svd_lowrank_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_transpose_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_zeros_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view___getitem___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view___rmatmul___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_cfloat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_float_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_as_strided_partial_views_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_block_diag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cauchy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_clamp_max_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cumprod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_diag_embed_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_erfc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_expm1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_fftshift_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ifft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ifftshift_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_irfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_flip_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_floor_divide_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_ge_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_heaviside_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_hsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_index_select_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_lerp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_lgamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_matrix_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_meshgrid_list_of_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_ne_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_new_ones_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_celu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_prelu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_softshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_rsub_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_signbit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_bessel_j0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_i1e_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_logit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_ndtr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_stack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_triu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_view_as_complex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_vsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_acosh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addmm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_angle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_any_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argsort_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bfloat16_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_block_diag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bmm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_broadcast_to_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cauchy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ceil_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_column_stack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_complex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_count_nonzero_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagflat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diagonal_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_einsum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_eq_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_irfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_flip_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_gather_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_igammac_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_reduce_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isclose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isposinf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lgamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_eigvalsh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lu_factor_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_matrix_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_matrix_power_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_tensorsolve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log_normal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logspace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_lu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_cumprod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_softmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_matrix_exp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_max_binary_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_max_reduction_no_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_meshgrid_list_of_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_msort_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ne_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_batch_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_dropout_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_nearest_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_local_response_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_logsigmoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_pool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_normal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ormqr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_prod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_resolve_neg_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_searchsorted_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sign_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_bartlett_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_cosine_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_general_cosine_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sinc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_chebyshev_polynomial_t_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_hermite_polynomial_h_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_split_list_args_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_square_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_uniform_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unsafe_chunk_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unsqueeze_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_var_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_var_unbiased_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_zero__cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_bool_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_double_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_abs__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_acos_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atan2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_or_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_xor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_clamp_min__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_conj_physical__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cos_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_deg2rad_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_exp2__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_fft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_hfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ihfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_flipud_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_full_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_heaviside__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_i0_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lgamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logaddexp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_mean_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_mvlgamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nan_to_num__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nan_to_num_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_empty_strided_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_new_ones_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_elu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_nll_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_pairwise_distance_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_selu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_prod_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_reciprocal__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rfloordiv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rsqrt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_i1_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_zeta_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_square_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_squeeze_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_stft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tan_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_transpose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_chalf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_acosh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_amax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_asinh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_conj_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_diag_embed_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_digamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erfc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_exp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_hfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_ifftshift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_floor_divide_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_is_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isinf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isposinf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lcm__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lcm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log2__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logaddexp2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_lt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_meshgrid_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_mul__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_mvlgamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_mvlgamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_empty_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_celu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_mse_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_nll_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_pairwise_distance_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_threshold_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_log_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_multigammaln_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_xlog1py_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sqrt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_t_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_take_along_dim_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_transpose_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_true_divide_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unflatten_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unsqueeze_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_view_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_xlogy__cpu, test/test_ops.py::TestFakeTensorCPU::test_fake___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_acosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_allclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_allclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_aminmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bernoulli_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bitwise_or_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_clamp_max_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_double_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_dstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_eye_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ifft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_gcd_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_geometric_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_histogramdd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_igamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_imag_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log10_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logical_or_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_relu6_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_threshold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_randint_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_randn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_reshape_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_short_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unravel_index_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bincount_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_right_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_broadcast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_T_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_abs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addmm_decomposed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_as_strided_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_clamp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diagflat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_double_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_dstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_erf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_frexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_vecdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softplus_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_round_decimals_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_log_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_square_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_t_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unfold_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_var_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_vdot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_view_as_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___rpow___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__unsafe_masked_index_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addmm_decomposed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addmv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_ceil_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_clamp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_clamp_min_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diagonal_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_expand_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_rfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_lgamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_eigvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_householder_product_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_lu_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_tensorinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_vector_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_logaddexp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nansum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_silu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_norm_nuc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_polygamma_polygamma_n_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_repeat_interleave_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_slice_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_entr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_squeeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_take_along_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_trunc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_dsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_dstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_empty_permuted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_gcd_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_geometric_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_geqrf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_imag_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_jiterator_unary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lu_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_slogdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_solve_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logical_xor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_msort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_narrow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_norm_fro_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_norm_inf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_normal_in_place_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ones_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_randint_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_resize__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_round_decimals_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_bessel_j1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_std_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tril_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_unflatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_var_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_view_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_T_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rmatmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__softmax_backward_data_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atan2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bfloat16_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cauchy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_constant_pad_nd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_div_trunc_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_erf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_erfc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_expm1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ifftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_floor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_grid_sampler_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_item_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lgamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_det_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_householder_product_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nansum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_narrow_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nextafter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ormqr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_resolve_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_softmax_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_squeeze_multiple_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unsafe_chunk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unsqueeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_view_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_xlogy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_complex32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_complex128, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_chalf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_char_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_long_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_addcmul_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_asin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_not_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_ceil_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_clamp_min_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cos_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_dsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_empty_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_eq_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_equal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ifft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_rfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_hstack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_svd_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_masked_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_narrow_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_ne_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_remainder_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_zeta_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_squeeze_multiple_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_transpose_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_triu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_triu_indices_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_unfold_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_vdot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_abs_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_acos_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_aminmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_arange_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_argwhere_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_as_strided_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bitwise_not_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_contiguous_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cummax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diag_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diagonal_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_einsum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_erfinv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_eye_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_fftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_hfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ifftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_irfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_rfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_float_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_floor_divide_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_full_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_geometric_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_igamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_igammac_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isinf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ldexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_multi_dot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log1p_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log_softmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logical_xor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mH_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mT_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_softmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nanmean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_celu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ones_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_pinverse_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_positive_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_remainder_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_repeat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_reshape_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_select_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_cosine_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_hann_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signbit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_softmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_i1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_i1e_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sqrt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tensor_split_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_trace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_var_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_vdot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_view_as_complex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_view_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_zeros_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_zeros_like_cpu_float32 2025-09-07T08:58:26.2002062Z 2025-09-07T08:58:26.6927149Z Running test batch 'tests to run' cost 7329.04 seconds 2025-09-07T08:58:26.6950254Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T08:58:26.6950722Z Uploading artifacts took 0.00 seconds 2025-09-07T08:58:26.6951164Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T08:58:26.6951593Z Uploading artifacts took 0.00 seconds 2025-09-07T08:58:26.6952021Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T08:58:26.6952450Z Uploading artifacts took 0.00 seconds 2025-09-07T08:58:27.7303621Z 2025-09-07T08:58:27.7304397Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if ERRORLEVEL 1 goto fail 2025-09-07T08:58:27.7304788Z 2025-09-07T08:58:27.7305255Z (base) C:\actions-runner\_work\pytorch\pytorch\test>popd 2025-09-07T08:58:27.7309437Z 2025-09-07T08:58:27.7309669Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T08:58:27.7331226Z + [[ 1 == 1 ]] 2025-09-07T08:58:27.7331500Z + [[ 3 -gt 1 ]] 2025-09-07T08:58:27.7331945Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_libtorch.bat 2025-09-07T08:58:27.7530100Z 2025-09-07T08:58:27.7530907Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-09-07T08:58:27.7543885Z 2025-09-07T08:58:27.7547002Z 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:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;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:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-09-07T08:58:27.7550164Z 2025-09-07T08:58:27.7550679Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-09-07T08:58:27.7551314Z 2025-09-07T08:58:27.7551875Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-09-07T08:58:27.7565558Z 2025-09-07T08:58:27.7566230Z 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-09-07T08:58:27.7570384Z 2025-09-07T08:58:27.7570809Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-09-07T08:58:27.7573435Z 2025-09-07T08:58:27.7573663Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-09-07T08:58:27.7574769Z 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-09-07T08:58:27.7575801Z if errorlevel 1 exit /b 2025-09-07T08:58:27.7576177Z if not errorlevel 0 exit /b 2025-09-07T08:58:27.7577030Z 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-09-07T08:58:27.7577870Z if errorlevel 1 exit /b 2025-09-07T08:58:27.7578175Z if not errorlevel 0 exit /b 2025-09-07T08:58:27.7578449Z ) 2025-09-07T08:58:27.7578592Z 2025-09-07T08:58:27.7578956Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-09-07T08:58:28.4179653Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? qM���n�s� ���8���8+�J@��8>����8X��8���8X��8@��8��8^^���|�J���8f�J@��8��!���@�V�;��!��@�V�; 2025-09-07T08:58:28.4181691Z �P��&�;��������J��8��������J4���(�������JPa�J`�J��8q�R��x���� ��JC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py���88pm�J���8������������J���8 2025-09-07T08:58:28.4182946Z �`�������J4���(�������J��J��J��J������J������ :�������J������ :�������J������ :�� :�� :�� ��������JP��8O\JkiA? 2025-09-07T08:58:28.4183523Z 2025-09-07T08:58:28.4184665Z ix���� ��JC:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py��������J���8;-+ 2025-09-07T08:58:28.4185373Z 2025-09-07T08:58:28.4186121Z � �J�J0�D�JN����J) ��J��J��J�;�J�D�JО(����J� �J0O�J��!��0�J��!��QJ�V�;'���@ 2025-09-07T08:58:28.4188585Z �P��&8��'������8Bp��8`��8��R�����8=�����������@��JPa�J`�J8q�R��p��8@��JPa�J�)�J`��8�@"���J���8�)�J�*�J��J�c�JJ4���c�J�c�J`��8`��8`��8���JO�Jpm�Jx��8s�J���8��J���J���J���J���8�/����J���8���8s�J���J��8������J��J���Js�J���J��x���� ��JC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py���J���J2�������J�������J���J��J���J�������J�������J���J��J��J�������J�������JЬ�J��J�������J�������J��J��������Jp��8OA? 2025-09-07T08:58:28.4190156Z 2025-09-07T08:58:28.4191856Z ���� ��JC:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\�������J���8BA?x���� ��J�J� 2025-09-07T08:58:28.4193385Z �������J�������J���J����J�������J�������J0��J�J���8�������J`��J�������J��J�8�������J�J�������J��JqR�V 2025-09-07T08:58:28.5266876Z Overwrite C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\functional.py (Yes/No/All)? ********************************************************************** 2025-09-07T08:58:28.5267759Z ** Visual Studio 2022 Developer Command Prompt v17.12.11 2025-09-07T08:58:28.5268189Z ** Copyright (c) 2022 Microsoft Corporation 2025-09-07T08:58:28.5268527Z ********************************************************************** 2025-09-07T08:58:28.9713646Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-09-07T08:58:28.9745226Z 2025-09-07T08:58:28.9745780Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-09-07T08:58:28.9748942Z 2025-09-07T08:58:28.9749291Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-09-07T08:58:28.9751834Z 2025-09-07T08:58:28.9752225Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-09-07T08:58:28.9754542Z 2025-09-07T08:58:28.9755193Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-09-07T08:58:28.9757799Z 2025-09-07T08:58:28.9757992Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-09-07T08:58:28.9936996Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-09-07T08:58:28.9938144Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-2-azure-eastus.actions.githubusercontent.com/139//idtoken/f409845e-2ea6-41ce-a516-e066432415ca/0dd5a3e4-574d-50d4-ae31-2035a3b11fdb?api-version=2.0 2025-09-07T08:58:28.9939323Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-09-07T08:58:28.9939779Z ALLUSERSPROFILE=C:\ProgramData 2025-09-07T08:58:28.9940209Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-09-07T08:58:28.9940651Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-09-07T08:58:28.9941021Z AWS_DEFAULT_REGION=us-east-1 2025-09-07T08:58:28.9941297Z AWS_EXECUTION_ENV=EC2 2025-09-07T08:58:28.9941593Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-09-07T08:58:28.9941917Z CI=true 2025-09-07T08:58:28.9942290Z CommandPromptType=Native 2025-09-07T08:58:28.9942637Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-09-07T08:58:28.9942992Z COMPUTERNAME=EC2AMAZ-F4P7NAP 2025-09-07T08:58:28.9943318Z COMSPEC=C:\Windows\system32\cmd.exe 2025-09-07T08:58:28.9943755Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T08:58:28.9944239Z CONDA_DEFAULT_ENV=base 2025-09-07T08:58:28.9944529Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-09-07T08:58:28.9944990Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T08:58:28.9945470Z CONDA_PARENT_DIR=C:\Jenkins 2025-09-07T08:58:28.9945810Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-09-07T08:58:28.9946134Z CONDA_PROMPT_MODIFIER=(base) 2025-09-07T08:58:28.9946453Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-09-07T08:58:28.9946947Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T08:58:28.9947371Z CONDA_SHLVL=1 2025-09-07T08:58:28.9947622Z CONTINUE_THROUGH_ERROR=True 2025-09-07T08:58:28.9947986Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0 2025-09-07T08:58:28.9948525Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-09-07T08:58:28.9949068Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-09-07T08:58:28.9949631Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-09-07T08:58:28.9950204Z CUDA_PATH_V13_0=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0 2025-09-07T08:58:28.9950599Z CUDA_VERSION=cpu 2025-09-07T08:58:28.9950891Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-09-07T08:58:28.9951305Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-09-07T08:58:28.9951768Z CommonProgramW6432=C:\Program Files\Common Files 2025-09-07T08:58:28.9952339Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-09-07T08:58:28.9952829Z DISTUTILS_USE_SDK=1 2025-09-07T08:58:28.9953147Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-09-07T08:58:28.9953494Z EC2LAUNCH_TELEMETRY=1 2025-09-07T08:58:28.9953939Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-09-07T08:58:28.9956282Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-09-07T08:58:28.9958458Z Framework40Version=v4.0 2025-09-07T08:58:28.9958804Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-09-07T08:58:28.9959246Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-09-07T08:58:28.9959618Z FrameworkVersion=v4.0.30319 2025-09-07T08:58:28.9959952Z FrameworkVersion64=v4.0.30319 2025-09-07T08:58:28.9960217Z GITHUB_ACTION=test 2025-09-07T08:58:28.9960456Z GITHUB_ACTIONS=true 2025-09-07T08:58:28.9960686Z GITHUB_ACTION_REF= 2025-09-07T08:58:28.9960937Z GITHUB_ACTION_REPOSITORY= 2025-09-07T08:58:28.9961250Z GITHUB_ACTOR=pytorchmergebot 2025-09-07T08:58:28.9961544Z GITHUB_ACTOR_ID=97764156 2025-09-07T08:58:28.9961886Z GITHUB_API_URL=https://api.github.com 2025-09-07T08:58:28.9962181Z GITHUB_BASE_REF= 2025-09-07T08:58:28.9962672Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T08:58:28.9963213Z GITHUB_EVENT_NAME=push 2025-09-07T08:58:28.9963612Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-09-07T08:58:28.9964095Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-09-07T08:58:28.9964457Z GITHUB_HEAD_REF= 2025-09-07T08:58:28.9964657Z GITHUB_JOB=test 2025-09-07T08:58:28.9965244Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T08:58:28.9966068Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T08:58:28.9966613Z GITHUB_REF=refs/heads/main 2025-09-07T08:58:28.9966893Z GITHUB_REF_NAME=main 2025-09-07T08:58:28.9967135Z GITHUB_REF_PROTECTED=true 2025-09-07T08:58:28.9967456Z GITHUB_REF_TYPE=branch 2025-09-07T08:58:28.9967765Z GITHUB_REPOSITORY=pytorch/pytorch 2025-09-07T08:58:28.9968183Z GITHUB_REPOSITORY_ID=65600975 2025-09-07T08:58:28.9968532Z GITHUB_REPOSITORY_OWNER=pytorch 2025-09-07T08:58:28.9968847Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-09-07T08:58:28.9969168Z GITHUB_RETENTION_DAYS=90 2025-09-07T08:58:28.9969418Z GITHUB_RUN_ATTEMPT=1 2025-09-07T08:58:28.9969685Z GITHUB_RUN_ID=17524754564 2025-09-07T08:58:28.9969932Z GITHUB_RUN_NUMBER=143911 2025-09-07T08:58:28.9970232Z GITHUB_SERVER_URL=https://github.com 2025-09-07T08:58:28.9970569Z GITHUB_SHA=93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T08:58:28.9971192Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T08:58:28.9972028Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_015eaed4-b281-4d31-9c68-3664441dac37 2025-09-07T08:58:28.9972656Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-09-07T08:58:28.9972986Z GITHUB_WORKFLOW=trunk 2025-09-07T08:58:28.9973436Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-09-07T08:58:28.9974033Z GITHUB_WORKFLOW_SHA=93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T08:58:28.9974484Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-09-07T08:58:28.9974945Z GIT_DEFAULT_BRANCH=main 2025-09-07T08:58:28.9975187Z HOME=C:\Users\runneruser 2025-09-07T08:58:28.9977195Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-09-07T08:58:28.9979544Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-09-07T08:58:28.9980145Z INSTALL_WINDOWS_SDK=1 2025-09-07T08:58:28.9980402Z is_x64_arch=true 2025-09-07T08:58:28.9980615Z JOB_ID=49774387897 2025-09-07T08:58:28.9981031Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T08:58:28.9982308Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.19041.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.19041.0\\um\x64 2025-09-07T08:58:28.9984529Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.19041.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.19041.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319 2025-09-07T08:58:28.9986125Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-09-07T08:58:28.9986570Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-09-07T08:58:28.9986948Z NO_TD=False 2025-09-07T08:58:28.9987179Z NO_TEST_TIMEOUT=False 2025-09-07T08:58:28.9987419Z NUMBER_OF_PROCESSORS=16 2025-09-07T08:58:28.9987678Z NUM_TEST_SHARDS=3 2025-09-07T08:58:28.9987964Z OLDPWD=C:/17524754564/build-results 2025-09-07T08:58:28.9988261Z OS=Windows_NT 2025-09-07T08:58:28.9996240Z PATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;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:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-09-07T08:58:29.0005072Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-09-07T08:58:29.0005455Z Platform=x64 2025-09-07T08:58:29.0005682Z PROCESSOR_ARCHITECTURE=AMD64 2025-09-07T08:58:29.0006108Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-09-07T08:58:29.0006526Z PROCESSOR_LEVEL=6 2025-09-07T08:58:29.0006772Z PROCESSOR_REVISION=5507 2025-09-07T08:58:29.0007049Z PROGRAMFILES=C:\Program Files 2025-09-07T08:58:29.0007366Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-09-07T08:58:29.0007793Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-09-07T08:58:29.0008274Z PROMPT=(base) $P$G 2025-09-07T08:58:29.0008521Z PR_NUMBER= 2025-09-07T08:58:29.0009091Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-09-07T08:58:29.0009756Z PUBLIC=C:\Users\Public 2025-09-07T08:58:29.0010202Z *** 2025-09-07T08:58:29.0010576Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-09-07T08:58:29.0011048Z PYTHON_VERSION=3.9 2025-09-07T08:58:29.0011380Z PYTORCH_FINAL_PACKAGE_DIR=C:/17524754564/build-results/ 2025-09-07T08:58:29.0011898Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\17524754564\build-results\ 2025-09-07T08:58:29.0012352Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-09-07T08:58:29.0012678Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-09-07T08:58:29.0012972Z ProgramData=C:\ProgramData 2025-09-07T08:58:29.0013284Z ProgramFiles(x86)=C:\Program Files (x86) 2025-09-07T08:58:29.0013627Z ProgramW6432=C:\Program Files 2025-09-07T08:58:29.0013892Z REENABLED_ISSUES= 2025-09-07T08:58:29.0014138Z RUNNER_ARCH=X64 2025-09-07T08:58:29.0014368Z RUNNER_ENVIRONMENT=self-hosted 2025-09-07T08:58:29.0014760Z RUNNER_NAME=i-0d07037e5e35aebe8 2025-09-07T08:58:29.0015028Z RUNNER_OS=Windows 2025-09-07T08:58:29.0015303Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-09-07T08:58:29.0015663Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-09-07T08:58:29.0016094Z RUNNER_TRACKING_ID=github_bc49aed5-657f-4109-8687-78fde8961e55 2025-09-07T08:58:29.0016511Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-09-07T08:58:29.0017046Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-09-07T08:58:29.0017690Z SHA1=93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T08:58:29.0018147Z SHARD_NUMBER=1 2025-09-07T08:58:29.0018379Z SHLVL=2 2025-09-07T08:58:29.0018696Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-09-07T08:58:29.0019120Z SYSTEMDRIVE=C: 2025-09-07T08:58:29.0019394Z SYSTEMROOT=C:\Windows 2025-09-07T08:58:29.0019696Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T08:58:29.0020004Z TERM=xterm-256color 2025-09-07T08:58:29.0020310Z TEST_CONFIG=default 2025-09-07T08:58:29.0020625Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-09-07T08:58:29.0021097Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-09-07T08:58:29.0021508Z TEST_SHOWLOCALS=False 2025-09-07T08:58:29.0021811Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T08:58:29.0022209Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T08:58:29.0022638Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-09-07T08:58:29.0023205Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-09-07T08:58:29.0023634Z TORCH_CUDA_ARCH_LIST=8.6 2025-09-07T08:58:29.0023953Z TORCH_SERIALIZATION_DEBUG=1 2025-09-07T08:58:29.0024216Z UCRTVersion=10.0.19041.0 2025-09-07T08:58:29.0024748Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-09-07T08:58:29.0025170Z UPDATEFILE=update.finished 2025-09-07T08:58:29.0025415Z USERDOMAIN=EC2AMAZ-F4P7NAP 2025-09-07T08:58:29.0025704Z USERNAME=runneruser 2025-09-07T08:58:29.0025969Z USERPROFILE=C:\Users\runneruser 2025-09-07T08:58:29.0026253Z USE_CUDA=0 2025-09-07T08:58:29.0026686Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-09-07T08:58:29.0027387Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-09-07T08:58:29.0028134Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\ 2025-09-07T08:58:29.0029012Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.42.34433\ 2025-09-07T08:58:29.0029595Z VCToolsVersion=14.42.34433 2025-09-07T08:58:29.0029873Z VC_PRODUCT=BuildTools 2025-09-07T08:58:29.0030130Z VC_VERSION= 2025-09-07T08:58:29.0030305Z VC_YEAR=2022 2025-09-07T08:58:29.0030565Z VERBOSE_ARG='SilentlyContinue' 2025-09-07T08:58:29.0030813Z VERBOSE_TEST_LOGS=False 2025-09-07T08:58:29.0031096Z VisualStudioVersion=17.0 2025-09-07T08:58:29.0031565Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-09-07T08:58:29.0032127Z VSCMD_ARG_app_plat=Desktop 2025-09-07T08:58:29.0032401Z VSCMD_ARG_HOST_ARCH=x64 2025-09-07T08:58:29.0032640Z VSCMD_ARG_TGT_ARCH=x64 2025-09-07T08:58:29.0032905Z VSCMD_VER=17.12.11 2025-09-07T08:58:29.0033293Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-09-07T08:58:29.0033752Z VS_VERSION=17.4.1 2025-09-07T08:58:29.0033988Z WINDIR=C:\Windows 2025-09-07T08:58:29.0034607Z 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-09-07T08:58:29.0035415Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-09-07T08:58:29.0035939Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-09-07T08:58:29.0036330Z WindowsSDKLibVersion=10.0.19041.0\ 2025-09-07T08:58:29.0036802Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-09-07T08:58:29.0037462Z WindowsSDKVersion=10.0.19041.0\ 2025-09-07T08:58:29.0038012Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-09-07T08:58:29.0038851Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-09-07T08:58:29.0039634Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_libtorch.bat 2025-09-07T08:58:29.0040212Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-09-07T08:58:29.0040574Z __DOTNET_ADD_64BIT=1 2025-09-07T08:58:29.0040792Z __DOTNET_PREFERRED_BITNESS=64 2025-09-07T08:58:29.0045141Z __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:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;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:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-09-07T08:58:29.0049528Z 2025-09-07T08:58:29.0049736Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 exit /b 1 2025-09-07T08:58:29.0050168Z 2025-09-07T08:58:29.0050491Z (base) C:\actions-runner\_work\pytorch\pytorch>set CWD=C:\actions-runner\_work\pytorch\pytorch 2025-09-07T08:58:29.0050954Z 2025-09-07T08:58:29.0051433Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\bin 2025-09-07T08:58:29.0052015Z 2025-09-07T08:58:29.0060637Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\lib;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.42.34433\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin\x64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;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:\Program Files\NVIDIA Corporation\Nsight Compute 2025.3.0;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-09-07T08:58:29.0069166Z 2025-09-07T08:58:29.0069644Z (base) C:\actions-runner\_work\pytorch\pytorch>set TORCH_CPP_TEST_MNIST_PATH=C:\actions-runner\_work\pytorch\pytorch\test\cpp\api\mnist 2025-09-07T08:58:29.0070175Z 2025-09-07T08:58:29.0070668Z (base) C:\actions-runner\_work\pytorch\pytorch>python tools\download_mnist.py --quiet -d C:\actions-runner\_work\pytorch\pytorch\test\cpp\api\mnist 2025-09-07T08:58:30.6371566Z Downloading http://yann.lecun.com/exdb/mnist/train-images-idx3-ubyte.gz ... 2025-09-07T08:58:30.6372075Z Failed to download (trying next): 2025-09-07T08:58:30.6372356Z HTTP Error 404: Not Found 2025-09-07T08:58:30.6372809Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/train-images-idx3-ubyte.gz ... 2025-09-07T08:58:30.6373464Z Downloading http://yann.lecun.com/exdb/mnist/train-labels-idx1-ubyte.gz ... 2025-09-07T08:58:30.6373914Z Failed to download (trying next): 2025-09-07T08:58:30.6374170Z HTTP Error 404: Not Found 2025-09-07T08:58:30.6374645Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/train-labels-idx1-ubyte.gz ... 2025-09-07T08:58:30.6375282Z Downloading http://yann.lecun.com/exdb/mnist/t10k-images-idx3-ubyte.gz ... 2025-09-07T08:58:30.6375725Z Failed to download (trying next): 2025-09-07T08:58:30.6376133Z HTTP Error 404: Not Found 2025-09-07T08:58:30.6376606Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/t10k-images-idx3-ubyte.gz ... 2025-09-07T08:58:30.6377241Z Downloading http://yann.lecun.com/exdb/mnist/t10k-labels-idx1-ubyte.gz ... 2025-09-07T08:58:30.6377664Z Failed to download (trying next): 2025-09-07T08:58:30.6377931Z HTTP Error 404: Not Found 2025-09-07T08:58:30.6378368Z Downloading https://ossci-datasets.s3.amazonaws.com/mnist/t10k-labels-idx1-ubyte.gz ... 2025-09-07T08:58:30.6486170Z 2025-09-07T08:58:30.6486887Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i cpp/test_api 2025-09-07T08:58:36.3645692Z Found test times from artifacts 2025-09-07T08:58:36.4597655Z Found test times from artifacts 2025-09-07T08:58:36.4621613Z Running all tests 2025-09-07T08:58:36.4627882Z Running parallel tests on 3 processes 2025-09-07T08:58:36.4628261Z Name: tests to run (est. time: 0.0min) 2025-09-07T08:58:36.4628589Z Serial tests (0): 2025-09-07T08:58:36.4628848Z Parallel tests (1): 2025-09-07T08:58:36.4629089Z cpp/test_api 1/1 2025-09-07T08:58:36.4629364Z Name: excluded (est. time: 0.0min) 2025-09-07T08:58:36.4629637Z Serial tests (0): 2025-09-07T08:58:36.4629902Z Parallel tests (0): 2025-09-07T08:58:36.4650485Z Running cpp/test_api 1/1 ... [2025-09-07 08:58:36.463117] 2025-09-07T08:58:36.4650923Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:58:36.4662451Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\bin\\test_api.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c4c1c6b9cef1bfe6.xml', '-x', '--reruns=2'] ... [2025-09-07 08:58:36.463117] 2025-09-07T08:58:36.4664149Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T08:58:38.7428708Z 2025-09-07T08:58:38.7429791Z cpp/test_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_api_1.1_0b1f4f816b60184f_.log 2025-09-07T08:58:38.7430396Z 2025-09-07T08:58:42.4451477Z Running cpp/test_api 1/1 ... [2025-09-07 08:58:42.444693] 2025-09-07T08:58:42.4452073Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T08:58:42.4460492Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\bin\\test_api.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4c51d00bba815e7b.xml', '-x', '--reruns=2'] ... [2025-09-07 08:58:42.444693] 2025-09-07T09:01:37.1957462Z 2025-09-07T09:01:37.1959018Z cpp/test_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_api_1.1_65d8d59ab19fe672_.log 2025-09-07T09:01:37.1976961Z 2025-09-07T09:01:37.8268207Z Running test batch 'tests to run' cost 181.36 seconds 2025-09-07T09:01:37.8280564Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:01:37.8281165Z Uploading artifacts took 0.00 seconds 2025-09-07T09:01:38.3296351Z 2025-09-07T09:01:38.3297023Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 exit /b 1 2025-09-07T09:01:38.3297482Z 2025-09-07T09:01:38.3298093Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 exit /b 1 2025-09-07T09:01:38.3299007Z 2025-09-07T09:01:38.3299486Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:01:38.3306138Z 2025-09-07T09:01:38.3306613Z (base) C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test>for /R "." %a in (*.exe) do ( 2025-09-07T09:01:38.3307209Z call :libtorch_check "%~na" "%~fa" 2025-09-07T09:01:38.3307523Z if errorlevel 1 goto fail 2025-09-07T09:01:38.3307794Z ) 2025-09-07T09:01:38.3312497Z 2025-09-07T09:01:38.3312843Z (base) C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test>( 2025-09-07T09:01:38.3313769Z call :libtorch_check "apply_utils_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-09-07T09:01:38.3314515Z if errorlevel 1 goto fail 2025-09-07T09:01:38.3314783Z ) 2025-09-07T09:01:38.3324111Z 2025-09-07T09:01:38.3324599Z (base) C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:01:38.3328608Z 2025-09-07T09:01:38.3329401Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:01:38.3331581Z 2025-09-07T09:01:38.3332094Z (base) C:\actions-runner\_work\pytorch\pytorch>if "apply_utils_test" == "verify_api_visibility" goto :eof 2025-09-07T09:01:38.3333448Z 2025-09-07T09:01:38.3334031Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-09-07T09:01:38.3334978Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-09-07T09:01:38.3336073Z 2025-09-07T09:01:38.3336546Z (base) C:\actions-runner\_work\pytorch\pytorch>if "apply_utils_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:01:38.3337321Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\apply_utils_test.exe" 2025-09-07T09:01:38.3337878Z goto :eof 2025-09-07T09:01:38.3338098Z ) 2025-09-07T09:01:38.3338312Z 2025-09-07T09:01:38.3338915Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/apply_utils_test" 2025-09-07T09:01:43.9509817Z Found test times from artifacts 2025-09-07T09:01:44.0280569Z Found test times from artifacts 2025-09-07T09:01:44.0306809Z Running all tests 2025-09-07T09:01:44.0312093Z Running parallel tests on 3 processes 2025-09-07T09:01:44.0312485Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:01:44.0312794Z Serial tests (0): 2025-09-07T09:01:44.0313057Z Parallel tests (1): 2025-09-07T09:01:44.0313307Z cpp/apply_utils_test 1/1 2025-09-07T09:01:44.0313606Z Name: excluded (est. time: 0.0min) 2025-09-07T09:01:44.0314030Z Serial tests (0): 2025-09-07T09:01:44.0314289Z Parallel tests (0): 2025-09-07T09:01:44.0324487Z Running cpp/apply_utils_test 1/1 ... [2025-09-07 09:01:44.032238] 2025-09-07T09:01:44.0324939Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:01:44.0334101Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\apply_utils_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8b796f8bd22f8cab.xml', '-x', '--reruns=2'] ... [2025-09-07 09:01:44.032238] 2025-09-07T09:01:44.0336114Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:01:46.2136737Z 2025-09-07T09:01:46.2137627Z cpp/apply_utils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.apply_utils_test_1.1_55506af019981e54_.log 2025-09-07T09:01:46.2138386Z 2025-09-07T09:01:49.9099084Z Running cpp/apply_utils_test 1/1 ... [2025-09-07 09:01:49.903261] 2025-09-07T09:01:49.9099567Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:01:49.9107921Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\apply_utils_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7c6d171dc463141b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:01:49.903261] 2025-09-07T09:01:53.1578706Z 2025-09-07T09:01:53.1579875Z cpp/apply_utils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.apply_utils_test_1.1_7c18a1c7ad1db5d4_.log 2025-09-07T09:01:53.1580647Z 2025-09-07T09:01:53.7650333Z Running test batch 'tests to run' cost 9.73 seconds 2025-09-07T09:01:53.7657249Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:01:53.7657812Z Uploading artifacts took 0.00 seconds 2025-09-07T09:01:54.2544769Z 2025-09-07T09:01:54.2545335Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:01:54.2545836Z echo "apply_utils_test" failed with exit code 0 2025-09-07T09:01:54.2546173Z goto fail 2025-09-07T09:01:54.2546399Z ) 2025-09-07T09:01:54.2546519Z 2025-09-07T09:01:54.2546747Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:01:54.2547187Z echo "apply_utils_test" failed with exit code 0 2025-09-07T09:01:54.2547551Z goto fail 2025-09-07T09:01:54.2547749Z ) 2025-09-07T09:01:54.2547892Z 2025-09-07T09:01:54.2548424Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:01:54.2559433Z 2025-09-07T09:01:54.2559920Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:01:54.2560573Z call :libtorch_check "atest" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-09-07T09:01:54.2561189Z if errorlevel 1 goto fail 2025-09-07T09:01:54.2561466Z ) 2025-09-07T09:01:54.2570283Z 2025-09-07T09:01:54.2580357Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:01:54.2584359Z 2025-09-07T09:01:54.2585032Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:01:54.2587798Z 2025-09-07T09:01:54.2588382Z (base) C:\actions-runner\_work\pytorch\pytorch>if "atest" == "verify_api_visibility" goto :eof 2025-09-07T09:01:54.2589617Z 2025-09-07T09:01:54.2590382Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-09-07T09:01:54.2591294Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-09-07T09:01:54.2592947Z 2025-09-07T09:01:54.2593686Z (base) C:\actions-runner\_work\pytorch\pytorch>if "atest" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:01:54.2594470Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\atest.exe" 2025-09-07T09:01:54.2594949Z goto :eof 2025-09-07T09:01:54.2595185Z ) 2025-09-07T09:01:54.2595303Z 2025-09-07T09:01:54.2595636Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/atest" 2025-09-07T09:01:59.9063100Z Found test times from artifacts 2025-09-07T09:01:59.9829424Z Found test times from artifacts 2025-09-07T09:01:59.9853093Z Running all tests 2025-09-07T09:01:59.9858054Z Running parallel tests on 3 processes 2025-09-07T09:01:59.9858483Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:01:59.9858819Z Serial tests (0): 2025-09-07T09:01:59.9859069Z Parallel tests (1): 2025-09-07T09:01:59.9859316Z cpp/atest 1/1 2025-09-07T09:01:59.9859572Z Name: excluded (est. time: 0.0min) 2025-09-07T09:01:59.9859848Z Serial tests (0): 2025-09-07T09:01:59.9860089Z Parallel tests (0): 2025-09-07T09:01:59.9861624Z Running cpp/atest 1/1 ... [2025-09-07 09:01:59.982790] 2025-09-07T09:01:59.9862012Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:01:59.9871718Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\atest.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-08ad47a405e7ea1d.xml', '-x', '--reruns=2'] ... [2025-09-07 09:01:59.986973] 2025-09-07T09:01:59.9873390Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:02:02.3101889Z 2025-09-07T09:02:02.3102934Z cpp/atest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.atest_1.1_cd56bf8beb07a41b_.log 2025-09-07T09:02:02.3103678Z 2025-09-07T09:02:06.0328972Z Running cpp/atest 1/1 ... [2025-09-07 09:02:06.031811] 2025-09-07T09:02:06.0329453Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:02:06.0338133Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\atest.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8f4bb23600524e7b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:02:06.031811] 2025-09-07T09:02:10.5475129Z 2025-09-07T09:02:10.5475993Z cpp/atest 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.atest_1.1_c70df4fa71b7b60d_.log 2025-09-07T09:02:10.5477321Z 2025-09-07T09:02:11.1571446Z Running test batch 'tests to run' cost 11.17 seconds 2025-09-07T09:02:11.1577907Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:02:11.1578385Z Uploading artifacts took 0.00 seconds 2025-09-07T09:02:11.6435386Z 2025-09-07T09:02:11.6435967Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:02:11.6436441Z echo "atest" failed with exit code 0 2025-09-07T09:02:11.6436762Z goto fail 2025-09-07T09:02:11.6436991Z ) 2025-09-07T09:02:11.6437102Z 2025-09-07T09:02:11.6437702Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:02:11.6438160Z echo "atest" failed with exit code 0 2025-09-07T09:02:11.6438465Z goto fail 2025-09-07T09:02:11.6438660Z ) 2025-09-07T09:02:11.6438816Z 2025-09-07T09:02:11.6439020Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:02:11.6446717Z 2025-09-07T09:02:11.6447218Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:02:11.6447998Z call :libtorch_check "backend_fallback_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-09-07T09:02:11.6448722Z if errorlevel 1 goto fail 2025-09-07T09:02:11.6448969Z ) 2025-09-07T09:02:11.6457838Z 2025-09-07T09:02:11.6458223Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:02:11.6462453Z 2025-09-07T09:02:11.6462945Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:02:11.6465396Z 2025-09-07T09:02:11.6465878Z (base) C:\actions-runner\_work\pytorch\pytorch>if "backend_fallback_test" == "verify_api_visibility" goto :eof 2025-09-07T09:02:11.6466849Z 2025-09-07T09:02:11.6467539Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-09-07T09:02:11.6468762Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-09-07T09:02:11.6469866Z 2025-09-07T09:02:11.6470424Z (base) C:\actions-runner\_work\pytorch\pytorch>if "backend_fallback_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:02:11.6471234Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\backend_fallback_test.exe" 2025-09-07T09:02:11.6471798Z goto :eof 2025-09-07T09:02:11.6472025Z ) 2025-09-07T09:02:11.6472133Z 2025-09-07T09:02:11.6472525Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/backend_fallback_test" 2025-09-07T09:02:17.2232079Z Found test times from artifacts 2025-09-07T09:02:17.2995925Z Found test times from artifacts 2025-09-07T09:02:17.3020139Z Running all tests 2025-09-07T09:02:17.3025159Z Running parallel tests on 3 processes 2025-09-07T09:02:17.3025955Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:02:17.3026309Z Serial tests (0): 2025-09-07T09:02:17.3026566Z Parallel tests (1): 2025-09-07T09:02:17.3026827Z cpp/backend_fallback_test 1/1 2025-09-07T09:02:17.3027287Z Name: excluded (est. time: 0.0min) 2025-09-07T09:02:17.3027561Z Serial tests (0): 2025-09-07T09:02:17.3027812Z Parallel tests (0): 2025-09-07T09:02:17.3028787Z Running cpp/backend_fallback_test 1/1 ... [2025-09-07 09:02:17.301160] 2025-09-07T09:02:17.3029221Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:02:17.3038544Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\backend_fallback_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-48857e7f0a5c44ed.xml', '-x', '--reruns=2'] ... [2025-09-07 09:02:17.301160] 2025-09-07T09:02:17.3040290Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:02:19.5015647Z 2025-09-07T09:02:19.5016600Z cpp/backend_fallback_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.backend_fallback_test_1.1_4dfd1afb01802b57_.log 2025-09-07T09:02:19.5017295Z 2025-09-07T09:02:23.2334571Z Running cpp/backend_fallback_test 1/1 ... [2025-09-07 09:02:23.231087] 2025-09-07T09:02:23.2335063Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:02:23.2343266Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\backend_fallback_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-071a1e59cb6dc565.xml', '-x', '--reruns=2'] ... [2025-09-07 09:02:23.231087] 2025-09-07T09:02:25.8732362Z 2025-09-07T09:02:25.8733330Z cpp/backend_fallback_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.backend_fallback_test_1.1_e4d13d0137723d76_.log 2025-09-07T09:02:25.8734652Z 2025-09-07T09:02:26.5008075Z Running test batch 'tests to run' cost 9.2 seconds 2025-09-07T09:02:26.5014339Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:02:26.5014838Z Uploading artifacts took 0.00 seconds 2025-09-07T09:02:26.9976144Z 2025-09-07T09:02:26.9976812Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:02:26.9977310Z echo "backend_fallback_test" failed with exit code 0 2025-09-07T09:02:26.9977711Z goto fail 2025-09-07T09:02:26.9977911Z ) 2025-09-07T09:02:26.9978109Z 2025-09-07T09:02:26.9978317Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:02:26.9978908Z echo "backend_fallback_test" failed with exit code 0 2025-09-07T09:02:26.9979255Z goto fail 2025-09-07T09:02:26.9979481Z ) 2025-09-07T09:02:26.9979669Z 2025-09-07T09:02:26.9979837Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:02:26.9986828Z 2025-09-07T09:02:26.9987504Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:02:26.9988156Z call :libtorch_check "basic" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-09-07T09:02:26.9988770Z if errorlevel 1 goto fail 2025-09-07T09:02:26.9989050Z ) 2025-09-07T09:02:26.9998276Z 2025-09-07T09:02:26.9998885Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:02:27.0002559Z 2025-09-07T09:02:27.0003123Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:02:27.0005537Z 2025-09-07T09:02:27.0005967Z (base) C:\actions-runner\_work\pytorch\pytorch>if "basic" == "verify_api_visibility" goto :eof 2025-09-07T09:02:27.0007439Z 2025-09-07T09:02:27.0008047Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-09-07T09:02:27.0008950Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-09-07T09:02:27.0010181Z 2025-09-07T09:02:27.0010650Z (base) C:\actions-runner\_work\pytorch\pytorch>if "basic" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:02:27.0011357Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\basic.exe" 2025-09-07T09:02:27.0011830Z goto :eof 2025-09-07T09:02:27.0012052Z ) 2025-09-07T09:02:27.0012161Z 2025-09-07T09:02:27.0012517Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/basic" 2025-09-07T09:02:32.7155040Z Found test times from artifacts 2025-09-07T09:02:32.7919990Z Found test times from artifacts 2025-09-07T09:02:32.7943705Z Running all tests 2025-09-07T09:02:32.7948797Z Running parallel tests on 3 processes 2025-09-07T09:02:32.7949182Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:02:32.7949481Z Serial tests (0): 2025-09-07T09:02:32.7949744Z Parallel tests (1): 2025-09-07T09:02:32.7949978Z cpp/basic 1/1 2025-09-07T09:02:32.7950233Z Name: excluded (est. time: 0.0min) 2025-09-07T09:02:32.7950513Z Serial tests (0): 2025-09-07T09:02:32.7950761Z Parallel tests (0): 2025-09-07T09:02:32.7952500Z Running cpp/basic 1/1 ... [2025-09-07 09:02:32.795181] 2025-09-07T09:02:32.7952905Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:02:32.7962280Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\basic.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e3ccb81b9e517a16.xml', '-x', '--reruns=2'] ... [2025-09-07 09:02:32.795801] 2025-09-07T09:02:32.7964044Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:02:35.0205980Z 2025-09-07T09:02:35.0206785Z cpp/basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.basic_1.1_4b374be2e29f258b_.log 2025-09-07T09:02:35.0207497Z 2025-09-07T09:02:38.7758537Z Running cpp/basic 1/1 ... [2025-09-07 09:02:38.774941] 2025-09-07T09:02:38.7758944Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:02:38.7767568Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\basic.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5a1a567bd87509b5.xml', '-x', '--reruns=2'] ... [2025-09-07 09:02:38.776572] 2025-09-07T09:02:42.3308083Z 2025-09-07T09:02:42.3309179Z cpp/basic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.basic_1.1_ccb4aedc1f56053e_.log 2025-09-07T09:02:42.3310882Z 2025-09-07T09:02:42.9681110Z Running test batch 'tests to run' cost 10.16 seconds 2025-09-07T09:02:42.9687558Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:02:42.9688061Z Uploading artifacts took 0.00 seconds 2025-09-07T09:02:43.4591188Z 2025-09-07T09:02:43.4591774Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:02:43.4592244Z echo "basic" failed with exit code 0 2025-09-07T09:02:43.4592546Z goto fail 2025-09-07T09:02:43.4592783Z ) 2025-09-07T09:02:43.4592904Z 2025-09-07T09:02:43.4593115Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:02:43.4593562Z echo "basic" failed with exit code 0 2025-09-07T09:02:43.4593897Z goto fail 2025-09-07T09:02:43.4594088Z ) 2025-09-07T09:02:43.4606733Z 2025-09-07T09:02:43.4607012Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:02:43.4607321Z 2025-09-07T09:02:43.4607520Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:02:43.4608294Z call :libtorch_check "broadcast_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-09-07T09:02:43.4608978Z if errorlevel 1 goto fail 2025-09-07T09:02:43.4609230Z ) 2025-09-07T09:02:43.4612505Z 2025-09-07T09:02:43.4613152Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:02:43.4616320Z 2025-09-07T09:02:43.4616949Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:02:43.4619467Z 2025-09-07T09:02:43.4619881Z (base) C:\actions-runner\_work\pytorch\pytorch>if "broadcast_test" == "verify_api_visibility" goto :eof 2025-09-07T09:02:43.4621147Z 2025-09-07T09:02:43.4621698Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-09-07T09:02:43.4622710Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-09-07T09:02:43.4624482Z 2025-09-07T09:02:43.4624944Z (base) C:\actions-runner\_work\pytorch\pytorch>if "broadcast_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:02:43.4625668Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\broadcast_test.exe" 2025-09-07T09:02:43.4626209Z goto :eof 2025-09-07T09:02:43.4626408Z ) 2025-09-07T09:02:43.4626547Z 2025-09-07T09:02:43.4626922Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/broadcast_test" 2025-09-07T09:02:49.1782507Z Found test times from artifacts 2025-09-07T09:02:49.2613772Z Found test times from artifacts 2025-09-07T09:02:49.2640234Z Running all tests 2025-09-07T09:02:49.2646653Z Running parallel tests on 3 processes 2025-09-07T09:02:49.2647020Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:02:49.2647305Z Serial tests (0): 2025-09-07T09:02:49.2647639Z Parallel tests (1): 2025-09-07T09:02:49.2647924Z cpp/broadcast_test 1/1 2025-09-07T09:02:49.2648244Z Name: excluded (est. time: 0.0min) 2025-09-07T09:02:49.2648554Z Serial tests (0): 2025-09-07T09:02:49.2648779Z Parallel tests (0): 2025-09-07T09:02:49.2651653Z Running cpp/broadcast_test 1/1 ... [2025-09-07 09:02:49.264794] 2025-09-07T09:02:49.2652063Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:02:49.2663794Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\broadcast_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b484a736b79536ab.xml', '-x', '--reruns=2'] ... [2025-09-07 09:02:49.265981] 2025-09-07T09:02:49.2665585Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:02:51.4729479Z 2025-09-07T09:02:51.4730363Z cpp/broadcast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.broadcast_test_1.1_5ba9422a9360667f_.log 2025-09-07T09:02:51.4731221Z 2025-09-07T09:02:55.1257341Z Running cpp/broadcast_test 1/1 ... [2025-09-07 09:02:55.125052] 2025-09-07T09:02:55.1257795Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:02:55.1277173Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\broadcast_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b79a896307ea4957.xml', '-x', '--reruns=2'] ... [2025-09-07 09:02:55.127446] 2025-09-07T09:02:57.6935062Z 2025-09-07T09:02:57.6936179Z cpp/broadcast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.broadcast_test_1.1_356a3370bed8b39a_.log 2025-09-07T09:02:57.6936812Z 2025-09-07T09:02:58.3327037Z Running test batch 'tests to run' cost 9.07 seconds 2025-09-07T09:02:58.3334813Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:02:58.3335350Z Uploading artifacts took 0.00 seconds 2025-09-07T09:02:58.8341530Z 2025-09-07T09:02:58.8342061Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:02:58.8342788Z echo "broadcast_test" failed with exit code 0 2025-09-07T09:02:58.8343147Z goto fail 2025-09-07T09:02:58.8343373Z ) 2025-09-07T09:02:58.8343531Z 2025-09-07T09:02:58.8343799Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:02:58.8344283Z echo "broadcast_test" failed with exit code 0 2025-09-07T09:02:58.8344659Z goto fail 2025-09-07T09:02:58.8344874Z ) 2025-09-07T09:02:58.8345039Z 2025-09-07T09:02:58.8345209Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:02:58.8354064Z 2025-09-07T09:02:58.8354322Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:02:58.8355127Z call :libtorch_check "c10_accumulate_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-09-07T09:02:58.8355907Z if errorlevel 1 goto fail 2025-09-07T09:02:58.8356215Z ) 2025-09-07T09:02:58.8365710Z 2025-09-07T09:02:58.8366264Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:02:58.8370651Z 2025-09-07T09:02:58.8371151Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:02:58.8373603Z 2025-09-07T09:02:58.8374405Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_accumulate_test" == "verify_api_visibility" goto :eof 2025-09-07T09:02:58.8376499Z 2025-09-07T09:02:58.8377081Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-09-07T09:02:58.8378084Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-09-07T09:02:58.8378966Z 2025-09-07T09:02:58.8379386Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_accumulate_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:02:58.8380170Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_accumulate_test.exe" 2025-09-07T09:02:58.8380812Z goto :eof 2025-09-07T09:02:58.8381054Z ) 2025-09-07T09:02:58.8381172Z 2025-09-07T09:02:58.8381714Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_accumulate_test" 2025-09-07T09:03:04.5012306Z Found test times from artifacts 2025-09-07T09:03:04.5776820Z Found test times from artifacts 2025-09-07T09:03:04.5802117Z Running all tests 2025-09-07T09:03:04.5806893Z Running parallel tests on 3 processes 2025-09-07T09:03:04.5807254Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:03:04.5807584Z Serial tests (0): 2025-09-07T09:03:04.5807828Z Parallel tests (1): 2025-09-07T09:03:04.5808265Z cpp/c10_accumulate_test 1/1 2025-09-07T09:03:04.5808548Z Name: excluded (est. time: 0.0min) 2025-09-07T09:03:04.5808925Z Serial tests (0): 2025-09-07T09:03:04.5809163Z Parallel tests (0): 2025-09-07T09:03:04.5810535Z Running cpp/c10_accumulate_test 1/1 ... [2025-09-07 09:03:04.580287] 2025-09-07T09:03:04.5810972Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:03:04.5820046Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_accumulate_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4dce926061a46753.xml', '-x', '--reruns=2'] ... [2025-09-07 09:03:04.581394] 2025-09-07T09:03:04.5821783Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:03:06.0565745Z 2025-09-07T09:03:06.0566902Z cpp/c10_accumulate_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_accumulate_test_1.1_09b3c7ee9ca63c3d_.log 2025-09-07T09:03:06.0567617Z 2025-09-07T09:03:09.7364262Z Running cpp/c10_accumulate_test 1/1 ... [2025-09-07 09:03:09.727517] 2025-09-07T09:03:09.7365415Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:03:09.7373171Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_accumulate_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e4c9f8a8eb90e605.xml', '-x', '--reruns=2'] ... [2025-09-07 09:03:09.727517] 2025-09-07T09:03:11.2668814Z 2025-09-07T09:03:11.2669712Z cpp/c10_accumulate_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_accumulate_test_1.1_6e334a7b32e98875_.log 2025-09-07T09:03:11.2670536Z 2025-09-07T09:03:11.8707965Z Running test batch 'tests to run' cost 7.28 seconds 2025-09-07T09:03:11.8714382Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:03:11.8714895Z Uploading artifacts took 0.00 seconds 2025-09-07T09:03:12.3614409Z 2025-09-07T09:03:12.3615131Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:03:12.3615642Z echo "c10_accumulate_test" failed with exit code 0 2025-09-07T09:03:12.3616001Z goto fail 2025-09-07T09:03:12.3616198Z ) 2025-09-07T09:03:12.3616340Z 2025-09-07T09:03:12.3616592Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:03:12.3617083Z echo "c10_accumulate_test" failed with exit code 0 2025-09-07T09:03:12.3617405Z goto fail 2025-09-07T09:03:12.3617606Z ) 2025-09-07T09:03:12.3617709Z 2025-09-07T09:03:12.3617869Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:03:12.3625358Z 2025-09-07T09:03:12.3625639Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:03:12.3626427Z call :libtorch_check "c10_AllocatorConfig_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-09-07T09:03:12.3627146Z if errorlevel 1 goto fail 2025-09-07T09:03:12.3627415Z ) 2025-09-07T09:03:12.3636315Z 2025-09-07T09:03:12.3636665Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:03:12.3640817Z 2025-09-07T09:03:12.3641690Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:03:12.3643808Z 2025-09-07T09:03:12.3644328Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_AllocatorConfig_test" == "verify_api_visibility" goto :eof 2025-09-07T09:03:12.3645805Z 2025-09-07T09:03:12.3646450Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-09-07T09:03:12.3647473Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-09-07T09:03:12.3648561Z 2025-09-07T09:03:12.3649286Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_AllocatorConfig_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:03:12.3650124Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_AllocatorConfig_test.exe" 2025-09-07T09:03:12.3650684Z goto :eof 2025-09-07T09:03:12.3650934Z ) 2025-09-07T09:03:12.3651044Z 2025-09-07T09:03:12.3651510Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_AllocatorConfig_test" 2025-09-07T09:03:18.0585152Z Found test times from artifacts 2025-09-07T09:03:18.1347298Z Found test times from artifacts 2025-09-07T09:03:18.1371387Z Running all tests 2025-09-07T09:03:18.1376360Z Running parallel tests on 3 processes 2025-09-07T09:03:18.1376713Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:03:18.1377007Z Serial tests (0): 2025-09-07T09:03:18.1377271Z Parallel tests (1): 2025-09-07T09:03:18.1377523Z cpp/c10_AllocatorConfig_test 1/1 2025-09-07T09:03:18.1377863Z Name: excluded (est. time: 0.0min) 2025-09-07T09:03:18.1378134Z Serial tests (0): 2025-09-07T09:03:18.1378382Z Parallel tests (0): 2025-09-07T09:03:18.1379960Z Running cpp/c10_AllocatorConfig_test 1/1 ... [2025-09-07 09:03:18.130915] 2025-09-07T09:03:18.1380400Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:03:18.1389477Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_AllocatorConfig_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-883924b6ca558d13.xml', '-x', '--reruns=2'] ... [2025-09-07 09:03:18.130915] 2025-09-07T09:03:18.1391220Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:03:19.6040878Z 2025-09-07T09:03:19.6041959Z cpp/c10_AllocatorConfig_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_AllocatorConfig_test_1.1_b00b6a0a046ec696_.log 2025-09-07T09:03:19.6043618Z 2025-09-07T09:03:23.3105798Z Running cpp/c10_AllocatorConfig_test 1/1 ... [2025-09-07 09:03:23.307368] 2025-09-07T09:03:23.3106324Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:03:23.3113833Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_AllocatorConfig_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-39832ab9c31cc4a8.xml', '-x', '--reruns=2'] ... [2025-09-07 09:03:23.310434] 2025-09-07T09:03:24.8015396Z 2025-09-07T09:03:24.8016554Z cpp/c10_AllocatorConfig_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_AllocatorConfig_test_1.1_c9de29c6a20b191e_.log 2025-09-07T09:03:24.8018142Z 2025-09-07T09:03:25.4183912Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:03:25.4184454Z Uploading artifacts took 0.00 seconds 2025-09-07T09:03:25.4194059Z Running test batch 'tests to run' cost 7.29 seconds 2025-09-07T09:03:25.9024021Z 2025-09-07T09:03:25.9024920Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:03:25.9025454Z echo "c10_AllocatorConfig_test" failed with exit code 0 2025-09-07T09:03:25.9026610Z goto fail 2025-09-07T09:03:25.9026846Z ) 2025-09-07T09:03:25.9026963Z 2025-09-07T09:03:25.9027170Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:03:25.9027654Z echo "c10_AllocatorConfig_test" failed with exit code 0 2025-09-07T09:03:25.9027998Z goto fail 2025-09-07T09:03:25.9028213Z ) 2025-09-07T09:03:25.9028325Z 2025-09-07T09:03:25.9028508Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:03:25.9034766Z 2025-09-07T09:03:25.9035263Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:03:25.9036236Z call :libtorch_check "c10_ArrayRef_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-09-07T09:03:25.9036910Z if errorlevel 1 goto fail 2025-09-07T09:03:25.9037191Z ) 2025-09-07T09:03:25.9046073Z 2025-09-07T09:03:25.9046500Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:03:25.9050389Z 2025-09-07T09:03:25.9050882Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:03:25.9053619Z 2025-09-07T09:03:25.9054080Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ArrayRef_test" == "verify_api_visibility" goto :eof 2025-09-07T09:03:25.9055409Z 2025-09-07T09:03:25.9056122Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-09-07T09:03:25.9057068Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-09-07T09:03:25.9058180Z 2025-09-07T09:03:25.9058618Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ArrayRef_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:03:25.9059544Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ArrayRef_test.exe" 2025-09-07T09:03:25.9060056Z goto :eof 2025-09-07T09:03:25.9060285Z ) 2025-09-07T09:03:25.9060399Z 2025-09-07T09:03:25.9060760Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ArrayRef_test" 2025-09-07T09:03:31.5919443Z Found test times from artifacts 2025-09-07T09:03:31.6685718Z Found test times from artifacts 2025-09-07T09:03:31.6709874Z Running all tests 2025-09-07T09:03:31.6715336Z Running parallel tests on 3 processes 2025-09-07T09:03:31.6715688Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:03:31.6715994Z Serial tests (0): 2025-09-07T09:03:31.6716208Z Parallel tests (1): 2025-09-07T09:03:31.6716450Z cpp/c10_ArrayRef_test 1/1 2025-09-07T09:03:31.6716704Z Name: excluded (est. time: 0.0min) 2025-09-07T09:03:31.6716977Z Serial tests (0): 2025-09-07T09:03:31.6717184Z Parallel tests (0): 2025-09-07T09:03:31.6718548Z Running cpp/c10_ArrayRef_test 1/1 ... [2025-09-07 09:03:31.666800] 2025-09-07T09:03:31.6718955Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:03:31.6728284Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ArrayRef_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-fd18b52977acf097.xml', '-x', '--reruns=2'] ... [2025-09-07 09:03:31.666800] 2025-09-07T09:03:31.6730006Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:03:33.1260002Z 2025-09-07T09:03:33.1260869Z cpp/c10_ArrayRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ArrayRef_test_1.1_b3b96efd49973b5e_.log 2025-09-07T09:03:33.1261596Z 2025-09-07T09:03:36.7884147Z Running cpp/c10_ArrayRef_test 1/1 ... [2025-09-07 09:03:36.788218] 2025-09-07T09:03:36.7884571Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:03:36.7893664Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ArrayRef_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-dc1c633fc810ad20.xml', '-x', '--reruns=2'] ... [2025-09-07 09:03:36.788903] 2025-09-07T09:03:38.2578369Z 2025-09-07T09:03:38.2579270Z cpp/c10_ArrayRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ArrayRef_test_1.1_7501ce344784e907_.log 2025-09-07T09:03:38.2580035Z 2025-09-07T09:03:38.8846749Z Running test batch 'tests to run' cost 7.22 seconds 2025-09-07T09:03:38.8853532Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:03:38.8854073Z Uploading artifacts took 0.00 seconds 2025-09-07T09:03:39.3909365Z 2025-09-07T09:03:39.3909912Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:03:39.3910358Z echo "c10_ArrayRef_test" failed with exit code 0 2025-09-07T09:03:39.3910679Z goto fail 2025-09-07T09:03:39.3910851Z ) 2025-09-07T09:03:39.3910955Z 2025-09-07T09:03:39.3911148Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:03:39.3911548Z echo "c10_ArrayRef_test" failed with exit code 0 2025-09-07T09:03:39.3911840Z goto fail 2025-09-07T09:03:39.3912005Z ) 2025-09-07T09:03:39.3912176Z 2025-09-07T09:03:39.3912363Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:03:39.3919997Z 2025-09-07T09:03:39.3920231Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:03:39.3921014Z call :libtorch_check "c10_bfloat16_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-09-07T09:03:39.3921842Z if errorlevel 1 goto fail 2025-09-07T09:03:39.3922054Z ) 2025-09-07T09:03:39.3930779Z 2025-09-07T09:03:39.3931135Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:03:39.3934908Z 2025-09-07T09:03:39.3935377Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:03:39.3938051Z 2025-09-07T09:03:39.3938421Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bfloat16_test" == "verify_api_visibility" goto :eof 2025-09-07T09:03:39.3939698Z 2025-09-07T09:03:39.3940223Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-09-07T09:03:39.3941150Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-09-07T09:03:39.3942456Z 2025-09-07T09:03:39.3942884Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bfloat16_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:03:39.3943672Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bfloat16_test.exe" 2025-09-07T09:03:39.3944157Z goto :eof 2025-09-07T09:03:39.3944327Z ) 2025-09-07T09:03:39.3944425Z 2025-09-07T09:03:39.3944781Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_bfloat16_test" 2025-09-07T09:03:45.0007449Z Found test times from artifacts 2025-09-07T09:03:45.0773259Z Found test times from artifacts 2025-09-07T09:03:45.0798005Z Running all tests 2025-09-07T09:03:45.0803520Z Running parallel tests on 3 processes 2025-09-07T09:03:45.0803878Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:03:45.0804206Z Serial tests (0): 2025-09-07T09:03:45.0804422Z Parallel tests (1): 2025-09-07T09:03:45.0804670Z cpp/c10_bfloat16_test 1/1 2025-09-07T09:03:45.0804918Z Name: excluded (est. time: 0.0min) 2025-09-07T09:03:45.0805178Z Serial tests (0): 2025-09-07T09:03:45.0805373Z Parallel tests (0): 2025-09-07T09:03:45.0807115Z Running cpp/c10_bfloat16_test 1/1 ... [2025-09-07 09:03:45.071002] 2025-09-07T09:03:45.0807497Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:03:45.0817104Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_bfloat16_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f13dd3b2ab008277.xml', '-x', '--reruns=2'] ... [2025-09-07 09:03:45.081085] 2025-09-07T09:03:45.0818808Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:03:46.5362847Z 2025-09-07T09:03:46.5363802Z cpp/c10_bfloat16_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_bfloat16_test_1.1_8ddc7f93b6380392_.log 2025-09-07T09:03:46.5364423Z 2025-09-07T09:03:50.2548318Z Running cpp/c10_bfloat16_test 1/1 ... [2025-09-07 09:03:50.254298] 2025-09-07T09:03:50.2548748Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:03:50.2557489Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_bfloat16_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7de3ccae7b841d65.xml', '-x', '--reruns=2'] ... [2025-09-07 09:03:50.255462] 2025-09-07T09:03:51.7628037Z 2025-09-07T09:03:51.7628870Z cpp/c10_bfloat16_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_bfloat16_test_1.1_2a0fd91e57927c1c_.log 2025-09-07T09:03:51.7629850Z 2025-09-07T09:03:52.4084261Z Running test batch 'tests to run' cost 7.32 seconds 2025-09-07T09:03:52.4091017Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:03:52.4091609Z Uploading artifacts took 0.00 seconds 2025-09-07T09:03:52.8891378Z 2025-09-07T09:03:52.8892128Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:03:52.8892576Z echo "c10_bfloat16_test" failed with exit code 0 2025-09-07T09:03:52.8892914Z goto fail 2025-09-07T09:03:52.8893081Z ) 2025-09-07T09:03:52.8893194Z 2025-09-07T09:03:52.8893380Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:03:52.8893793Z echo "c10_bfloat16_test" failed with exit code 0 2025-09-07T09:03:52.8894085Z goto fail 2025-09-07T09:03:52.8894259Z ) 2025-09-07T09:03:52.8894861Z 2025-09-07T09:03:52.8895088Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:03:52.8902675Z 2025-09-07T09:03:52.8902917Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:03:52.8903628Z call :libtorch_check "c10_Bitset_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-09-07T09:03:52.8904278Z if errorlevel 1 goto fail 2025-09-07T09:03:52.8904553Z ) 2025-09-07T09:03:52.8913515Z 2025-09-07T09:03:52.8913897Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:03:52.8918160Z 2025-09-07T09:03:52.8918637Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:03:52.8921093Z 2025-09-07T09:03:52.8921560Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Bitset_test" == "verify_api_visibility" goto :eof 2025-09-07T09:03:52.8922601Z 2025-09-07T09:03:52.8923167Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-09-07T09:03:52.8924100Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-09-07T09:03:52.8925590Z 2025-09-07T09:03:52.8926030Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Bitset_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:03:52.8926789Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Bitset_test.exe" 2025-09-07T09:03:52.8927288Z goto :eof 2025-09-07T09:03:52.8927657Z ) 2025-09-07T09:03:52.8927819Z 2025-09-07T09:03:52.8928331Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Bitset_test" 2025-09-07T09:03:58.5214643Z Found test times from artifacts 2025-09-07T09:03:58.5980612Z Found test times from artifacts 2025-09-07T09:03:58.6004705Z Running all tests 2025-09-07T09:03:58.6010463Z Running parallel tests on 3 processes 2025-09-07T09:03:58.6010819Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:03:58.6011315Z Serial tests (0): 2025-09-07T09:03:58.6011549Z Parallel tests (1): 2025-09-07T09:03:58.6011951Z cpp/c10_Bitset_test 1/1 2025-09-07T09:03:58.6012230Z Name: excluded (est. time: 0.0min) 2025-09-07T09:03:58.6012577Z Serial tests (0): 2025-09-07T09:03:58.6012810Z Parallel tests (0): 2025-09-07T09:03:58.6014186Z Running cpp/c10_Bitset_test 1/1 ... [2025-09-07 09:03:58.601233] 2025-09-07T09:03:58.6014585Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:03:58.6023843Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Bitset_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-fe5ae8cd9f14496b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:03:58.601233] 2025-09-07T09:03:58.6025579Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:04:00.0760116Z 2025-09-07T09:04:00.0761134Z cpp/c10_Bitset_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Bitset_test_1.1_61d01f0d5a358b78_.log 2025-09-07T09:04:00.0761896Z 2025-09-07T09:04:03.8287788Z Running cpp/c10_Bitset_test 1/1 ... [2025-09-07 09:04:03.828199] 2025-09-07T09:04:03.8288314Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:04:03.8297042Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Bitset_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f261fe78fff6567e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:04:03.829371] 2025-09-07T09:04:05.3457662Z 2025-09-07T09:04:05.3458791Z cpp/c10_Bitset_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Bitset_test_1.1_d5a7c1fc7a943813_.log 2025-09-07T09:04:05.3459442Z 2025-09-07T09:04:05.9960663Z Running test batch 'tests to run' cost 7.38 seconds 2025-09-07T09:04:05.9965951Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:04:05.9966427Z Uploading artifacts took 0.00 seconds 2025-09-07T09:04:06.4867241Z 2025-09-07T09:04:06.4867807Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:04:06.4868282Z echo "c10_Bitset_test" failed with exit code 0 2025-09-07T09:04:06.4868650Z goto fail 2025-09-07T09:04:06.4868901Z ) 2025-09-07T09:04:06.4869031Z 2025-09-07T09:04:06.4869234Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:04:06.4869691Z echo "c10_Bitset_test" failed with exit code 0 2025-09-07T09:04:06.4870008Z goto fail 2025-09-07T09:04:06.4870238Z ) 2025-09-07T09:04:06.4870347Z 2025-09-07T09:04:06.4870565Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:04:06.4877810Z 2025-09-07T09:04:06.4878038Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:04:06.4878829Z call :libtorch_check "c10_bit_cast_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-09-07T09:04:06.4879492Z if errorlevel 1 goto fail 2025-09-07T09:04:06.4879773Z ) 2025-09-07T09:04:06.4888692Z 2025-09-07T09:04:06.4889333Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:04:06.4893043Z 2025-09-07T09:04:06.4893756Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:04:06.4895960Z 2025-09-07T09:04:06.4896377Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bit_cast_test" == "verify_api_visibility" goto :eof 2025-09-07T09:04:06.4897765Z 2025-09-07T09:04:06.4898350Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-09-07T09:04:06.4899478Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-09-07T09:04:06.4900256Z 2025-09-07T09:04:06.4900687Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_bit_cast_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:04:06.4901428Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_bit_cast_test.exe" 2025-09-07T09:04:06.4901954Z goto :eof 2025-09-07T09:04:06.4902155Z ) 2025-09-07T09:04:06.4902286Z 2025-09-07T09:04:06.4902658Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_bit_cast_test" 2025-09-07T09:04:12.1819621Z Found test times from artifacts 2025-09-07T09:04:12.2590661Z Found test times from artifacts 2025-09-07T09:04:12.2611701Z Running all tests 2025-09-07T09:04:12.2616807Z Running parallel tests on 3 processes 2025-09-07T09:04:12.2617161Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:04:12.2617475Z Serial tests (0): 2025-09-07T09:04:12.2617729Z Parallel tests (1): 2025-09-07T09:04:12.2618003Z cpp/c10_bit_cast_test 1/1 2025-09-07T09:04:12.2618273Z Name: excluded (est. time: 0.0min) 2025-09-07T09:04:12.2618565Z Serial tests (0): 2025-09-07T09:04:12.2618892Z Parallel tests (0): 2025-09-07T09:04:12.2620569Z Running cpp/c10_bit_cast_test 1/1 ... [2025-09-07 09:04:12.261400] 2025-09-07T09:04:12.2620963Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:04:12.2630434Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_bit_cast_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b0381fd8b324c588.xml', '-x', '--reruns=2'] ... [2025-09-07 09:04:12.262503] 2025-09-07T09:04:12.2632148Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:04:13.7471918Z 2025-09-07T09:04:13.7472817Z cpp/c10_bit_cast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_bit_cast_test_1.1_8ea4e9bb44521370_.log 2025-09-07T09:04:13.7473446Z 2025-09-07T09:04:17.4874464Z Running cpp/c10_bit_cast_test 1/1 ... [2025-09-07 09:04:17.486823] 2025-09-07T09:04:17.4874994Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:04:17.4883903Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_bit_cast_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6041d739417f55cf.xml', '-x', '--reruns=2'] ... [2025-09-07 09:04:17.488042] 2025-09-07T09:04:18.9627463Z 2025-09-07T09:04:18.9628599Z cpp/c10_bit_cast_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_bit_cast_test_1.1_3f6fa952d05dd4ba_.log 2025-09-07T09:04:18.9629245Z 2025-09-07T09:04:19.5697157Z Running test batch 'tests to run' cost 7.31 seconds 2025-09-07T09:04:19.5703548Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:04:19.5704010Z Uploading artifacts took 0.00 seconds 2025-09-07T09:04:20.0624599Z 2025-09-07T09:04:20.0625307Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:04:20.0625774Z echo "c10_bit_cast_test" failed with exit code 0 2025-09-07T09:04:20.0626083Z goto fail 2025-09-07T09:04:20.0626431Z ) 2025-09-07T09:04:20.0626545Z 2025-09-07T09:04:20.0626750Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:04:20.0627167Z echo "c10_bit_cast_test" failed with exit code 0 2025-09-07T09:04:20.0627476Z goto fail 2025-09-07T09:04:20.0627649Z ) 2025-09-07T09:04:20.0628212Z 2025-09-07T09:04:20.0628447Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:04:20.0635777Z 2025-09-07T09:04:20.0636042Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:04:20.0637037Z call :libtorch_check "c10_CompileTimeFunctionPointer_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-09-07T09:04:20.0637964Z if errorlevel 1 goto fail 2025-09-07T09:04:20.0638201Z ) 2025-09-07T09:04:20.0646512Z 2025-09-07T09:04:20.0646883Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:04:20.0650464Z 2025-09-07T09:04:20.0650951Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:04:20.0653465Z 2025-09-07T09:04:20.0654166Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_CompileTimeFunctionPointer_test" == "verify_api_visibility" goto :eof 2025-09-07T09:04:20.0655191Z 2025-09-07T09:04:20.0655796Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-09-07T09:04:20.0656888Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-09-07T09:04:20.0658007Z 2025-09-07T09:04:20.0658577Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_CompileTimeFunctionPointer_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:04:20.0659464Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_CompileTimeFunctionPointer_test.exe" 2025-09-07T09:04:20.0660041Z goto :eof 2025-09-07T09:04:20.0660217Z ) 2025-09-07T09:04:20.0660345Z 2025-09-07T09:04:20.0660769Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_CompileTimeFunctionPointer_test" 2025-09-07T09:04:25.7637713Z Found test times from artifacts 2025-09-07T09:04:25.8407150Z Found test times from artifacts 2025-09-07T09:04:25.8431115Z Running all tests 2025-09-07T09:04:25.8436364Z Running parallel tests on 3 processes 2025-09-07T09:04:25.8436777Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:04:25.8437074Z Serial tests (0): 2025-09-07T09:04:25.8437283Z Parallel tests (1): 2025-09-07T09:04:25.8437561Z cpp/c10_CompileTimeFunctionPointer_test 1/1 2025-09-07T09:04:25.8437899Z Name: excluded (est. time: 0.0min) 2025-09-07T09:04:25.8438167Z Serial tests (0): 2025-09-07T09:04:25.8438366Z Parallel tests (0): 2025-09-07T09:04:25.8440091Z Running cpp/c10_CompileTimeFunctionPointer_test 1/1 ... [2025-09-07 09:04:25.842232] 2025-09-07T09:04:25.8440569Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:04:25.8449673Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_CompileTimeFunctionPointer_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5e2433b99fc5633e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:04:25.842232] 2025-09-07T09:04:25.8451474Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:04:27.3284543Z 2025-09-07T09:04:27.3285599Z cpp/c10_CompileTimeFunctionPointer_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_CompileTimeFunctionPointer_test_1.1_720b0fd42b446052_.log 2025-09-07T09:04:27.3286392Z 2025-09-07T09:04:31.0551063Z Running cpp/c10_CompileTimeFunctionPointer_test 1/1 ... [2025-09-07 09:04:31.043272] 2025-09-07T09:04:31.0551576Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:04:31.0560039Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_CompileTimeFunctionPointer_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0000b1336ae3c806.xml', '-x', '--reruns=2'] ... [2025-09-07 09:04:31.043272] 2025-09-07T09:04:32.5264480Z 2025-09-07T09:04:32.5265668Z cpp/c10_CompileTimeFunctionPointer_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_CompileTimeFunctionPointer_test_1.1_0ab31d5173905ada_.log 2025-09-07T09:04:32.5266471Z 2025-09-07T09:04:33.1358381Z Running test batch 'tests to run' cost 7.29 seconds 2025-09-07T09:04:33.1366484Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:04:33.1367080Z Uploading artifacts took 0.00 seconds 2025-09-07T09:04:33.6723794Z 2025-09-07T09:04:33.6724561Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:04:33.6725153Z echo "c10_CompileTimeFunctionPointer_test" failed with exit code 0 2025-09-07T09:04:33.6725574Z goto fail 2025-09-07T09:04:33.6725764Z ) 2025-09-07T09:04:33.6725863Z 2025-09-07T09:04:33.6726056Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:04:33.6726577Z echo "c10_CompileTimeFunctionPointer_test" failed with exit code 0 2025-09-07T09:04:33.6726963Z goto fail 2025-09-07T09:04:33.6727150Z ) 2025-09-07T09:04:33.6727248Z 2025-09-07T09:04:33.6727419Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:04:33.6734970Z 2025-09-07T09:04:33.6735475Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:04:33.6737224Z call :libtorch_check "c10_complex_math_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-09-07T09:04:33.6737890Z if errorlevel 1 goto fail 2025-09-07T09:04:33.6738126Z ) 2025-09-07T09:04:33.6746264Z 2025-09-07T09:04:33.6746640Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:04:33.6750518Z 2025-09-07T09:04:33.6751096Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:04:33.6753471Z 2025-09-07T09:04:33.6754727Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_math_test" == "verify_api_visibility" goto :eof 2025-09-07T09:04:33.6755254Z 2025-09-07T09:04:33.6755868Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-09-07T09:04:33.6756824Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-09-07T09:04:33.6757796Z 2025-09-07T09:04:33.6758192Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_math_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:04:33.6759576Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_math_test.exe" 2025-09-07T09:04:33.6760489Z goto :eof 2025-09-07T09:04:33.6760681Z ) 2025-09-07T09:04:33.6760781Z 2025-09-07T09:04:33.6761173Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_complex_math_test" 2025-09-07T09:04:39.2925258Z Found test times from artifacts 2025-09-07T09:04:39.3689821Z Found test times from artifacts 2025-09-07T09:04:39.3713631Z Running all tests 2025-09-07T09:04:39.3718948Z Running parallel tests on 3 processes 2025-09-07T09:04:39.3719274Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:04:39.3719568Z Serial tests (0): 2025-09-07T09:04:39.3719777Z Parallel tests (1): 2025-09-07T09:04:39.3720019Z cpp/c10_complex_math_test 1/1 2025-09-07T09:04:39.3720416Z Name: excluded (est. time: 0.0min) 2025-09-07T09:04:39.3720683Z Serial tests (0): 2025-09-07T09:04:39.3720889Z Parallel tests (0): 2025-09-07T09:04:39.3722585Z Running cpp/c10_complex_math_test 1/1 ... [2025-09-07 09:04:39.364586] 2025-09-07T09:04:39.3722996Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:04:39.3732629Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_complex_math_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-55addce438dd1c33.xml', '-x', '--reruns=2'] ... [2025-09-07 09:04:39.364586] 2025-09-07T09:04:39.3734418Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:04:40.8639183Z 2025-09-07T09:04:40.8640154Z cpp/c10_complex_math_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_complex_math_test_1.1_f08907a94bf8647e_.log 2025-09-07T09:04:40.8640803Z 2025-09-07T09:04:44.5741501Z Running cpp/c10_complex_math_test 1/1 ... [2025-09-07 09:04:44.571937] 2025-09-07T09:04:44.5741942Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:04:44.5750718Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_complex_math_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-af7e13dc52c66db8.xml', '-x', '--reruns=2'] ... [2025-09-07 09:04:44.571937] 2025-09-07T09:04:46.0905004Z 2025-09-07T09:04:46.0905987Z cpp/c10_complex_math_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_complex_math_test_1.1_85608dc175a7cf6f_.log 2025-09-07T09:04:46.0906925Z 2025-09-07T09:04:46.6949698Z Running test batch 'tests to run' cost 7.33 seconds 2025-09-07T09:04:46.6957579Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:04:46.6958059Z Uploading artifacts took 0.00 seconds 2025-09-07T09:04:47.1817759Z 2025-09-07T09:04:47.1818453Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:04:47.1818940Z echo "c10_complex_math_test" failed with exit code 0 2025-09-07T09:04:47.1819261Z goto fail 2025-09-07T09:04:47.1819510Z ) 2025-09-07T09:04:47.1819608Z 2025-09-07T09:04:47.1819836Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:04:47.1820308Z echo "c10_complex_math_test" failed with exit code 0 2025-09-07T09:04:47.1820647Z goto fail 2025-09-07T09:04:47.1820824Z ) 2025-09-07T09:04:47.1820943Z 2025-09-07T09:04:47.1821095Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:04:47.1827534Z 2025-09-07T09:04:47.1827745Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:04:47.1828414Z call :libtorch_check "c10_complex_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-09-07T09:04:47.1829052Z if errorlevel 1 goto fail 2025-09-07T09:04:47.1829277Z ) 2025-09-07T09:04:47.1838828Z 2025-09-07T09:04:47.1839193Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:04:47.1842928Z 2025-09-07T09:04:47.1843404Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:04:47.1846143Z 2025-09-07T09:04:47.1846562Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_test" == "verify_api_visibility" goto :eof 2025-09-07T09:04:47.1847622Z 2025-09-07T09:04:47.1848240Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-09-07T09:04:47.1849373Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-09-07T09:04:47.1850605Z 2025-09-07T09:04:47.1851038Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_complex_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:04:47.1851839Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_complex_test.exe" 2025-09-07T09:04:47.1852382Z goto :eof 2025-09-07T09:04:47.1852555Z ) 2025-09-07T09:04:47.1853111Z 2025-09-07T09:04:47.1853536Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_complex_test" 2025-09-07T09:04:52.8425624Z Found test times from artifacts 2025-09-07T09:04:52.9194535Z Found test times from artifacts 2025-09-07T09:04:52.9219099Z Running all tests 2025-09-07T09:04:52.9223841Z Running parallel tests on 3 processes 2025-09-07T09:04:52.9224169Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:04:52.9224445Z Serial tests (0): 2025-09-07T09:04:52.9224669Z Parallel tests (1): 2025-09-07T09:04:52.9224902Z cpp/c10_complex_test 1/1 2025-09-07T09:04:52.9225164Z Name: excluded (est. time: 0.0min) 2025-09-07T09:04:52.9225415Z Serial tests (0): 2025-09-07T09:04:52.9225632Z Parallel tests (0): 2025-09-07T09:04:52.9227259Z Running cpp/c10_complex_test 1/1 ... [2025-09-07 09:04:52.921695] 2025-09-07T09:04:52.9227656Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:04:52.9236900Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_complex_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-08b69565a6c82a0b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:04:52.923359] 2025-09-07T09:04:52.9238590Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:04:54.3890010Z 2025-09-07T09:04:54.3890988Z cpp/c10_complex_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_complex_test_1.1_e2a56921b8d3aaa7_.log 2025-09-07T09:04:54.3891763Z 2025-09-07T09:04:58.0822005Z Running cpp/c10_complex_test 1/1 ... [2025-09-07 09:04:58.074523] 2025-09-07T09:04:58.0830092Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:04:58.0831338Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_complex_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d63bfd1d71eed774.xml', '-x', '--reruns=2'] ... [2025-09-07 09:04:58.074523] 2025-09-07T09:04:59.5685330Z 2025-09-07T09:04:59.5686338Z cpp/c10_complex_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_complex_test_1.1_9775daa0e03efaf3_.log 2025-09-07T09:04:59.5687834Z 2025-09-07T09:05:00.2402785Z Running test batch 'tests to run' cost 7.31 seconds 2025-09-07T09:05:00.2409323Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:05:00.2409793Z Uploading artifacts took 0.00 seconds 2025-09-07T09:05:00.7282861Z 2025-09-07T09:05:00.7283647Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:05:00.7284116Z echo "c10_complex_test" failed with exit code 0 2025-09-07T09:05:00.7284428Z goto fail 2025-09-07T09:05:00.7284630Z ) 2025-09-07T09:05:00.7284726Z 2025-09-07T09:05:00.7284941Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:05:00.7285369Z echo "c10_complex_test" failed with exit code 0 2025-09-07T09:05:00.7285674Z goto fail 2025-09-07T09:05:00.7285849Z ) 2025-09-07T09:05:00.7286064Z 2025-09-07T09:05:00.7286256Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:05:00.7293380Z 2025-09-07T09:05:00.7293629Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:05:00.7294520Z call :libtorch_check "c10_ConstexprCrc_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-09-07T09:05:00.7295206Z if errorlevel 1 goto fail 2025-09-07T09:05:00.7295438Z ) 2025-09-07T09:05:00.7304131Z 2025-09-07T09:05:00.7304505Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:05:00.7308240Z 2025-09-07T09:05:00.7308934Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:05:00.7311190Z 2025-09-07T09:05:00.7311779Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ConstexprCrc_test" == "verify_api_visibility" goto :eof 2025-09-07T09:05:00.7312455Z 2025-09-07T09:05:00.7313001Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-09-07T09:05:00.7313960Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-09-07T09:05:00.7314938Z 2025-09-07T09:05:00.7315405Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ConstexprCrc_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:05:00.7316171Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ConstexprCrc_test.exe" 2025-09-07T09:05:00.7316691Z goto :eof 2025-09-07T09:05:00.7316868Z ) 2025-09-07T09:05:00.7316982Z 2025-09-07T09:05:00.7317363Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ConstexprCrc_test" 2025-09-07T09:05:06.2954381Z Found test times from artifacts 2025-09-07T09:05:06.3723827Z Found test times from artifacts 2025-09-07T09:05:06.3747330Z Running all tests 2025-09-07T09:05:06.3752354Z Running parallel tests on 3 processes 2025-09-07T09:05:06.3752676Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:05:06.3752956Z Serial tests (0): 2025-09-07T09:05:06.3753168Z Parallel tests (1): 2025-09-07T09:05:06.3753419Z cpp/c10_ConstexprCrc_test 1/1 2025-09-07T09:05:06.3753685Z Name: excluded (est. time: 0.0min) 2025-09-07T09:05:06.3753952Z Serial tests (0): 2025-09-07T09:05:06.3754169Z Parallel tests (0): 2025-09-07T09:05:06.3755898Z Running cpp/c10_ConstexprCrc_test 1/1 ... [2025-09-07 09:05:06.371530] 2025-09-07T09:05:06.3756318Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:05:06.3765386Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ConstexprCrc_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3276e4e29a346d76.xml', '-x', '--reruns=2'] ... [2025-09-07 09:05:06.371530] 2025-09-07T09:05:06.3767135Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:05:07.8647987Z 2025-09-07T09:05:07.8648865Z cpp/c10_ConstexprCrc_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ConstexprCrc_test_1.1_4a2803da754a164f_.log 2025-09-07T09:05:07.8649565Z 2025-09-07T09:05:11.4961268Z Running cpp/c10_ConstexprCrc_test 1/1 ... [2025-09-07 09:05:11.494563] 2025-09-07T09:05:11.4961742Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:05:11.4971286Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ConstexprCrc_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-855a0c01bc384b50.xml', '-x', '--reruns=2'] ... [2025-09-07 09:05:11.494563] 2025-09-07T09:05:12.9559795Z 2025-09-07T09:05:12.9560721Z cpp/c10_ConstexprCrc_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ConstexprCrc_test_1.1_8a08ec75b4007a39_.log 2025-09-07T09:05:12.9561382Z 2025-09-07T09:05:13.5759170Z Running test batch 'tests to run' cost 7.2 seconds 2025-09-07T09:05:13.5765927Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:05:13.5766420Z Uploading artifacts took 0.00 seconds 2025-09-07T09:05:14.0666606Z 2025-09-07T09:05:14.0667202Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:05:14.0667696Z echo "c10_ConstexprCrc_test" failed with exit code 0 2025-09-07T09:05:14.0668022Z goto fail 2025-09-07T09:05:14.0668375Z ) 2025-09-07T09:05:14.0668484Z 2025-09-07T09:05:14.0668752Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:05:14.0669203Z echo "c10_ConstexprCrc_test" failed with exit code 0 2025-09-07T09:05:14.0669516Z goto fail 2025-09-07T09:05:14.0669721Z ) 2025-09-07T09:05:14.0669814Z 2025-09-07T09:05:14.0669980Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:05:14.0676882Z 2025-09-07T09:05:14.0677403Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:05:14.0678101Z call :libtorch_check "c10_cow_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-09-07T09:05:14.0678696Z if errorlevel 1 goto fail 2025-09-07T09:05:14.0678931Z ) 2025-09-07T09:05:14.0686871Z 2025-09-07T09:05:14.0687254Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:05:14.0690935Z 2025-09-07T09:05:14.0691393Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:05:14.0693970Z 2025-09-07T09:05:14.0694498Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_cow_test" == "verify_api_visibility" goto :eof 2025-09-07T09:05:14.0696159Z 2025-09-07T09:05:14.0696941Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-09-07T09:05:14.0697877Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-09-07T09:05:14.0698978Z 2025-09-07T09:05:14.0699459Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_cow_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:05:14.0700139Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_cow_test.exe" 2025-09-07T09:05:14.0700615Z goto :eof 2025-09-07T09:05:14.0700783Z ) 2025-09-07T09:05:14.0700895Z 2025-09-07T09:05:14.0701242Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_cow_test" 2025-09-07T09:05:19.7518600Z Found test times from artifacts 2025-09-07T09:05:19.8278231Z Found test times from artifacts 2025-09-07T09:05:19.8302597Z Running all tests 2025-09-07T09:05:19.8307867Z Running parallel tests on 3 processes 2025-09-07T09:05:19.8308233Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:05:19.8308523Z Serial tests (0): 2025-09-07T09:05:19.8308751Z Parallel tests (1): 2025-09-07T09:05:19.8308995Z cpp/c10_cow_test 1/1 2025-09-07T09:05:19.8309232Z Name: excluded (est. time: 0.0min) 2025-09-07T09:05:19.8309504Z Serial tests (0): 2025-09-07T09:05:19.8309709Z Parallel tests (0): 2025-09-07T09:05:19.8311633Z Running cpp/c10_cow_test 1/1 ... [2025-09-07 09:05:19.831098] 2025-09-07T09:05:19.8312022Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:05:19.8321380Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_cow_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-50534a349e8a4dac.xml', '-x', '--reruns=2'] ... [2025-09-07 09:05:19.831668] 2025-09-07T09:05:19.8323153Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:05:21.2919131Z 2025-09-07T09:05:21.2920336Z cpp/c10_cow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_cow_test_1.1_9e9c75925d220c2e_.log 2025-09-07T09:05:21.2920930Z 2025-09-07T09:05:25.0322233Z Running cpp/c10_cow_test 1/1 ... [2025-09-07 09:05:25.028948] 2025-09-07T09:05:25.0322664Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:05:25.0331460Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_cow_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-49c6ca7d2ab84399.xml', '-x', '--reruns=2'] ... [2025-09-07 09:05:25.028948] 2025-09-07T09:05:26.5264537Z 2025-09-07T09:05:26.5265600Z cpp/c10_cow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_cow_test_1.1_4d706e44a21c0d77_.log 2025-09-07T09:05:26.5266238Z 2025-09-07T09:05:27.1303036Z Running test batch 'tests to run' cost 7.3 seconds 2025-09-07T09:05:27.1308262Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:05:27.1308723Z Uploading artifacts took 0.00 seconds 2025-09-07T09:05:27.6220795Z 2025-09-07T09:05:27.6221375Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:05:27.6221828Z echo "c10_cow_test" failed with exit code 0 2025-09-07T09:05:27.6222120Z goto fail 2025-09-07T09:05:27.6222317Z ) 2025-09-07T09:05:27.6222417Z 2025-09-07T09:05:27.6222623Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:05:27.6223108Z echo "c10_cow_test" failed with exit code 0 2025-09-07T09:05:27.6223435Z goto fail 2025-09-07T09:05:27.6223612Z ) 2025-09-07T09:05:27.6224284Z 2025-09-07T09:05:27.6224497Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:05:27.6231047Z 2025-09-07T09:05:27.6231278Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:05:27.6232026Z call :libtorch_check "c10_DeadlockDetection_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-09-07T09:05:27.6232742Z if errorlevel 1 goto fail 2025-09-07T09:05:27.6232966Z ) 2025-09-07T09:05:27.6241682Z 2025-09-07T09:05:27.6242051Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:05:27.6245729Z 2025-09-07T09:05:27.6246256Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:05:27.6249536Z 2025-09-07T09:05:27.6250019Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeadlockDetection_test" == "verify_api_visibility" goto :eof 2025-09-07T09:05:27.6251199Z 2025-09-07T09:05:27.6251803Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-09-07T09:05:27.6252869Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-09-07T09:05:27.6254026Z 2025-09-07T09:05:27.6254507Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeadlockDetection_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:05:27.6255325Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeadlockDetection_test.exe" 2025-09-07T09:05:27.6255897Z goto :eof 2025-09-07T09:05:27.6256093Z ) 2025-09-07T09:05:27.6256221Z 2025-09-07T09:05:27.6256629Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_DeadlockDetection_test" 2025-09-07T09:05:33.2644142Z Found test times from artifacts 2025-09-07T09:05:33.3407263Z Found test times from artifacts 2025-09-07T09:05:33.3431134Z Running all tests 2025-09-07T09:05:33.3436101Z Running parallel tests on 3 processes 2025-09-07T09:05:33.3436442Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:05:33.3436765Z Serial tests (0): 2025-09-07T09:05:33.3437162Z Parallel tests (1): 2025-09-07T09:05:33.3437422Z cpp/c10_DeadlockDetection_test 1/1 2025-09-07T09:05:33.3437758Z Name: excluded (est. time: 0.0min) 2025-09-07T09:05:33.3438036Z Serial tests (0): 2025-09-07T09:05:33.3438285Z Parallel tests (0): 2025-09-07T09:05:33.3439671Z Running cpp/c10_DeadlockDetection_test 1/1 ... [2025-09-07 09:05:33.338022] 2025-09-07T09:05:33.3440148Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:05:33.3449581Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DeadlockDetection_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-528626da2e23db21.xml', '-x', '--reruns=2'] ... [2025-09-07 09:05:33.338022] 2025-09-07T09:05:33.3451417Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:05:34.8378567Z 2025-09-07T09:05:34.8379864Z cpp/c10_DeadlockDetection_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DeadlockDetection_test_1.1_676b1744c97ddb4e_.log 2025-09-07T09:05:34.8381740Z 2025-09-07T09:05:38.5784809Z Running cpp/c10_DeadlockDetection_test 1/1 ... [2025-09-07 09:05:38.577175] 2025-09-07T09:05:38.5785338Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:05:38.5794080Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DeadlockDetection_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-877a144bb6785b7d.xml', '-x', '--reruns=2'] ... [2025-09-07 09:05:38.577175] 2025-09-07T09:05:40.0478589Z 2025-09-07T09:05:40.0479560Z cpp/c10_DeadlockDetection_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DeadlockDetection_test_1.1_3bae54ccd90c9bb1_.log 2025-09-07T09:05:40.0480423Z 2025-09-07T09:05:40.6840112Z Running test batch 'tests to run' cost 7.34 seconds 2025-09-07T09:05:40.6846648Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:05:40.6847147Z Uploading artifacts took 0.00 seconds 2025-09-07T09:05:41.1738343Z 2025-09-07T09:05:41.1738881Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:05:41.1739425Z echo "c10_DeadlockDetection_test" failed with exit code 0 2025-09-07T09:05:41.1739815Z goto fail 2025-09-07T09:05:41.1740054Z ) 2025-09-07T09:05:41.1740161Z 2025-09-07T09:05:41.1740397Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:05:41.1740870Z echo "c10_DeadlockDetection_test" failed with exit code 0 2025-09-07T09:05:41.1741286Z goto fail 2025-09-07T09:05:41.1741516Z ) 2025-09-07T09:05:41.1741646Z 2025-09-07T09:05:41.1741847Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:05:41.1752245Z 2025-09-07T09:05:41.1752610Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:05:41.1753372Z call :libtorch_check "c10_DeviceGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-09-07T09:05:41.1754062Z if errorlevel 1 goto fail 2025-09-07T09:05:41.1754296Z ) 2025-09-07T09:05:41.1760219Z 2025-09-07T09:05:41.1760776Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:05:41.1764249Z 2025-09-07T09:05:41.1764773Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:05:41.1767246Z 2025-09-07T09:05:41.1767691Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeviceGuard_test" == "verify_api_visibility" goto :eof 2025-09-07T09:05:41.1770229Z 2025-09-07T09:05:41.1771000Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-09-07T09:05:41.1772010Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-09-07T09:05:41.1772459Z 2025-09-07T09:05:41.1772790Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DeviceGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:05:41.1773580Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DeviceGuard_test.exe" 2025-09-07T09:05:41.1774191Z goto :eof 2025-09-07T09:05:41.1774393Z ) 2025-09-07T09:05:41.1774502Z 2025-09-07T09:05:41.1776431Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_DeviceGuard_test" 2025-09-07T09:05:46.8822978Z Found test times from artifacts 2025-09-07T09:05:46.9585928Z Found test times from artifacts 2025-09-07T09:05:46.9609714Z Running all tests 2025-09-07T09:05:46.9614813Z Running parallel tests on 3 processes 2025-09-07T09:05:46.9615258Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:05:46.9615601Z Serial tests (0): 2025-09-07T09:05:46.9615837Z Parallel tests (1): 2025-09-07T09:05:46.9616122Z cpp/c10_DeviceGuard_test 1/1 2025-09-07T09:05:46.9616443Z Name: excluded (est. time: 0.0min) 2025-09-07T09:05:46.9616742Z Serial tests (0): 2025-09-07T09:05:46.9616968Z Parallel tests (0): 2025-09-07T09:05:46.9618814Z Running cpp/c10_DeviceGuard_test 1/1 ... [2025-09-07 09:05:46.961815] 2025-09-07T09:05:46.9619285Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:05:46.9629594Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DeviceGuard_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5c0c6e4358e89ee7.xml', '-x', '--reruns=2'] ... [2025-09-07 09:05:46.962787] 2025-09-07T09:05:46.9631431Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:05:48.4224320Z 2025-09-07T09:05:48.4225190Z cpp/c10_DeviceGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DeviceGuard_test_1.1_07ac0e7f01516426_.log 2025-09-07T09:05:48.4225857Z 2025-09-07T09:05:52.1711085Z Running cpp/c10_DeviceGuard_test 1/1 ... [2025-09-07 09:05:52.161896] 2025-09-07T09:05:52.1711524Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:05:52.1720049Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DeviceGuard_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-cec70146fa41921e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:05:52.161896] 2025-09-07T09:05:53.6484563Z 2025-09-07T09:05:53.6485545Z cpp/c10_DeviceGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DeviceGuard_test_1.1_0946f5b3a74c89f9_.log 2025-09-07T09:05:53.6486232Z 2025-09-07T09:05:54.3027152Z Running test batch 'tests to run' cost 7.34 seconds 2025-09-07T09:05:54.3032988Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:05:54.3033488Z Uploading artifacts took 0.00 seconds 2025-09-07T09:05:54.7854035Z 2025-09-07T09:05:54.7854689Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:05:54.7855201Z echo "c10_DeviceGuard_test" failed with exit code 0 2025-09-07T09:05:54.7855562Z goto fail 2025-09-07T09:05:54.7855760Z ) 2025-09-07T09:05:54.7855887Z 2025-09-07T09:05:54.7856080Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:05:54.7856534Z echo "c10_DeviceGuard_test" failed with exit code 0 2025-09-07T09:05:54.7856888Z goto fail 2025-09-07T09:05:54.7857100Z ) 2025-09-07T09:05:54.7857208Z 2025-09-07T09:05:54.7857508Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:05:54.7864205Z 2025-09-07T09:05:54.7864761Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:05:54.7865477Z call :libtorch_check "c10_Device_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-09-07T09:05:54.7866195Z if errorlevel 1 goto fail 2025-09-07T09:05:54.7866439Z ) 2025-09-07T09:05:54.7874706Z 2025-09-07T09:05:54.7875079Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:05:54.7878788Z 2025-09-07T09:05:54.7879468Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:05:54.7881867Z 2025-09-07T09:05:54.7882310Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Device_test" == "verify_api_visibility" goto :eof 2025-09-07T09:05:54.7883470Z 2025-09-07T09:05:54.7884049Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-09-07T09:05:54.7884999Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-09-07T09:05:54.7886039Z 2025-09-07T09:05:54.7886460Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Device_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:05:54.7887185Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Device_test.exe" 2025-09-07T09:05:54.7887717Z goto :eof 2025-09-07T09:05:54.7887914Z ) 2025-09-07T09:05:54.7888047Z 2025-09-07T09:05:54.7888415Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Device_test" 2025-09-07T09:06:00.4993594Z Found test times from artifacts 2025-09-07T09:06:00.5756874Z Found test times from artifacts 2025-09-07T09:06:00.5780473Z Running all tests 2025-09-07T09:06:00.5785543Z Running parallel tests on 3 processes 2025-09-07T09:06:00.5785912Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:06:00.5786202Z Serial tests (0): 2025-09-07T09:06:00.5786453Z Parallel tests (1): 2025-09-07T09:06:00.5786704Z cpp/c10_Device_test 1/1 2025-09-07T09:06:00.5786989Z Name: excluded (est. time: 0.0min) 2025-09-07T09:06:00.5787337Z Serial tests (0): 2025-09-07T09:06:00.5787583Z Parallel tests (0): 2025-09-07T09:06:00.5789240Z Running cpp/c10_Device_test 1/1 ... [2025-09-07 09:06:00.578719] 2025-09-07T09:06:00.5789652Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:06:00.5798973Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Device_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f22edddef072008d.xml', '-x', '--reruns=2'] ... [2025-09-07 09:06:00.578719] 2025-09-07T09:06:00.5800714Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:06:02.0648364Z 2025-09-07T09:06:02.0649224Z cpp/c10_Device_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Device_test_1.1_035a57d296194cb7_.log 2025-09-07T09:06:02.0650010Z 2025-09-07T09:06:05.7788600Z Running cpp/c10_Device_test 1/1 ... [2025-09-07 09:06:05.778471] 2025-09-07T09:06:05.7789069Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:06:05.7797681Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Device_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5ddcaacef3003001.xml', '-x', '--reruns=2'] ... [2025-09-07 09:06:05.779069] 2025-09-07T09:06:07.2780948Z 2025-09-07T09:06:07.2782203Z cpp/c10_Device_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Device_test_1.1_eb10bb8876000996_.log 2025-09-07T09:06:07.2782875Z 2025-09-07T09:06:07.8840261Z Running test batch 'tests to run' cost 7.32 seconds 2025-09-07T09:06:07.8847011Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:06:07.8847534Z Uploading artifacts took 0.00 seconds 2025-09-07T09:06:08.3725828Z 2025-09-07T09:06:08.3726518Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:06:08.3726984Z echo "c10_Device_test" failed with exit code 0 2025-09-07T09:06:08.3727926Z goto fail 2025-09-07T09:06:08.3728130Z ) 2025-09-07T09:06:08.3728597Z 2025-09-07T09:06:08.3728808Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:06:08.3729252Z echo "c10_Device_test" failed with exit code 0 2025-09-07T09:06:08.3729593Z goto fail 2025-09-07T09:06:08.3729782Z ) 2025-09-07T09:06:08.3729912Z 2025-09-07T09:06:08.3730075Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:06:08.3736270Z 2025-09-07T09:06:08.3736797Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:06:08.3737566Z call :libtorch_check "c10_DispatchKeySet_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-09-07T09:06:08.3738265Z if errorlevel 1 goto fail 2025-09-07T09:06:08.3738503Z ) 2025-09-07T09:06:08.3746763Z 2025-09-07T09:06:08.3747269Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:06:08.3750895Z 2025-09-07T09:06:08.3751494Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:06:08.3754132Z 2025-09-07T09:06:08.3754629Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DispatchKeySet_test" == "verify_api_visibility" goto :eof 2025-09-07T09:06:08.3756146Z 2025-09-07T09:06:08.3756828Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-09-07T09:06:08.3757808Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-09-07T09:06:08.3758289Z 2025-09-07T09:06:08.3758627Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_DispatchKeySet_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:06:08.3759426Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_DispatchKeySet_test.exe" 2025-09-07T09:06:08.3759955Z goto :eof 2025-09-07T09:06:08.3760161Z ) 2025-09-07T09:06:08.3760264Z 2025-09-07T09:06:08.3760642Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_DispatchKeySet_test" 2025-09-07T09:06:14.0164484Z Found test times from artifacts 2025-09-07T09:06:14.0938734Z Found test times from artifacts 2025-09-07T09:06:14.0962900Z Running all tests 2025-09-07T09:06:14.0967999Z Running parallel tests on 3 processes 2025-09-07T09:06:14.0968357Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:06:14.0968670Z Serial tests (0): 2025-09-07T09:06:14.0968950Z Parallel tests (1): 2025-09-07T09:06:14.0969247Z cpp/c10_DispatchKeySet_test 1/1 2025-09-07T09:06:14.0969578Z Name: excluded (est. time: 0.0min) 2025-09-07T09:06:14.0969867Z Serial tests (0): 2025-09-07T09:06:14.0970097Z Parallel tests (0): 2025-09-07T09:06:14.0971771Z Running cpp/c10_DispatchKeySet_test 1/1 ... [2025-09-07 09:06:14.096922] 2025-09-07T09:06:14.0972212Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:06:14.0981598Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DispatchKeySet_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9d477d24761db587.xml', '-x', '--reruns=2'] ... [2025-09-07 09:06:14.096922] 2025-09-07T09:06:14.0984154Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:06:15.5562868Z 2025-09-07T09:06:15.5563911Z cpp/c10_DispatchKeySet_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DispatchKeySet_test_1.1_1d7a2ee7ec317605_.log 2025-09-07T09:06:15.5564586Z 2025-09-07T09:06:19.3209075Z Running cpp/c10_DispatchKeySet_test 1/1 ... [2025-09-07 09:06:19.320601] 2025-09-07T09:06:19.3209686Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:06:19.3217987Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_DispatchKeySet_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ac399d1613007e83.xml', '-x', '--reruns=2'] ... [2025-09-07 09:06:19.320601] 2025-09-07T09:06:20.8675568Z 2025-09-07T09:06:20.8676609Z cpp/c10_DispatchKeySet_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_DispatchKeySet_test_1.1_4f483949235a2d65_.log 2025-09-07T09:06:20.8677300Z 2025-09-07T09:06:21.4761813Z Running test batch 'tests to run' cost 7.38 seconds 2025-09-07T09:06:21.4768668Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:06:21.4769138Z Uploading artifacts took 0.00 seconds 2025-09-07T09:06:21.9672024Z 2025-09-07T09:06:21.9672822Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:06:21.9673324Z echo "c10_DispatchKeySet_test" failed with exit code 0 2025-09-07T09:06:21.9673658Z goto fail 2025-09-07T09:06:21.9673826Z ) 2025-09-07T09:06:21.9673923Z 2025-09-07T09:06:21.9674266Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:06:21.9674696Z echo "c10_DispatchKeySet_test" failed with exit code 0 2025-09-07T09:06:21.9675019Z goto fail 2025-09-07T09:06:21.9675183Z ) 2025-09-07T09:06:21.9675297Z 2025-09-07T09:06:21.9675723Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:06:21.9681868Z 2025-09-07T09:06:21.9682108Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:06:21.9682783Z call :libtorch_check "c10_Enumerate_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-09-07T09:06:21.9692738Z if errorlevel 1 goto fail 2025-09-07T09:06:21.9692989Z ) 2025-09-07T09:06:21.9693100Z 2025-09-07T09:06:21.9693376Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:06:21.9696645Z 2025-09-07T09:06:21.9697089Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:06:21.9699645Z 2025-09-07T09:06:21.9700260Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Enumerate_test" == "verify_api_visibility" goto :eof 2025-09-07T09:06:21.9701474Z 2025-09-07T09:06:21.9702001Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-09-07T09:06:21.9702980Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-09-07T09:06:21.9703845Z 2025-09-07T09:06:21.9704263Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Enumerate_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:06:21.9704988Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Enumerate_test.exe" 2025-09-07T09:06:21.9705467Z goto :eof 2025-09-07T09:06:21.9705635Z ) 2025-09-07T09:06:21.9705733Z 2025-09-07T09:06:21.9706139Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Enumerate_test" 2025-09-07T09:06:27.6092801Z Found test times from artifacts 2025-09-07T09:06:27.6864305Z Found test times from artifacts 2025-09-07T09:06:27.6888216Z Running all tests 2025-09-07T09:06:27.6893183Z Running parallel tests on 3 processes 2025-09-07T09:06:27.6893535Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:06:27.6893808Z Serial tests (0): 2025-09-07T09:06:27.6894008Z Parallel tests (1): 2025-09-07T09:06:27.6894233Z cpp/c10_Enumerate_test 1/1 2025-09-07T09:06:27.6894487Z Name: excluded (est. time: 0.0min) 2025-09-07T09:06:27.6894731Z Serial tests (0): 2025-09-07T09:06:27.6894930Z Parallel tests (0): 2025-09-07T09:06:27.6896722Z Running cpp/c10_Enumerate_test 1/1 ... [2025-09-07 09:06:27.689129] 2025-09-07T09:06:27.6897198Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:06:27.6906339Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Enumerate_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c73cc6d403ed90ae.xml', '-x', '--reruns=2'] ... [2025-09-07 09:06:27.689129] 2025-09-07T09:06:27.6908031Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:06:29.1680528Z 2025-09-07T09:06:29.1681478Z cpp/c10_Enumerate_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Enumerate_test_1.1_ed8a9a1339c1cdeb_.log 2025-09-07T09:06:29.1683638Z 2025-09-07T09:06:32.9796148Z Running cpp/c10_Enumerate_test 1/1 ... [2025-09-07 09:06:32.977005] 2025-09-07T09:06:32.9796606Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:06:32.9805391Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Enumerate_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-41fdab6fee921385.xml', '-x', '--reruns=2'] ... [2025-09-07 09:06:32.980105] 2025-09-07T09:06:34.5149109Z 2025-09-07T09:06:34.5149989Z cpp/c10_Enumerate_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Enumerate_test_1.1_2f136a557d59e1d5_.log 2025-09-07T09:06:34.5151080Z 2025-09-07T09:06:35.1197878Z Running test batch 'tests to run' cost 7.43 seconds 2025-09-07T09:06:35.1204356Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:06:35.1204831Z Uploading artifacts took 0.00 seconds 2025-09-07T09:06:35.6095890Z 2025-09-07T09:06:35.6096670Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:06:35.6097143Z echo "c10_Enumerate_test" failed with exit code 0 2025-09-07T09:06:35.6097449Z goto fail 2025-09-07T09:06:35.6097626Z ) 2025-09-07T09:06:35.6097743Z 2025-09-07T09:06:35.6097928Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:06:35.6098344Z echo "c10_Enumerate_test" failed with exit code 0 2025-09-07T09:06:35.6098636Z goto fail 2025-09-07T09:06:35.6098805Z ) 2025-09-07T09:06:35.6099274Z 2025-09-07T09:06:35.6099665Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:06:35.6106081Z 2025-09-07T09:06:35.6106303Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:06:35.6106936Z call :libtorch_check "c10_error_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-09-07T09:06:35.6107549Z if errorlevel 1 goto fail 2025-09-07T09:06:35.6107772Z ) 2025-09-07T09:06:35.6116052Z 2025-09-07T09:06:35.6116396Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:06:35.6119971Z 2025-09-07T09:06:35.6120412Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:06:35.6122992Z 2025-09-07T09:06:35.6123489Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_error_test" == "verify_api_visibility" goto :eof 2025-09-07T09:06:35.6124731Z 2025-09-07T09:06:35.6125386Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-09-07T09:06:35.6126288Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-09-07T09:06:35.6126905Z 2025-09-07T09:06:35.6127346Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_error_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:06:35.6128104Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_error_test.exe" 2025-09-07T09:06:35.6128653Z goto :eof 2025-09-07T09:06:35.6128818Z ) 2025-09-07T09:06:35.6128914Z 2025-09-07T09:06:35.6129265Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_error_test" 2025-09-07T09:06:41.2868156Z Found test times from artifacts 2025-09-07T09:06:41.3641688Z Found test times from artifacts 2025-09-07T09:06:41.3667546Z Running all tests 2025-09-07T09:06:41.3672801Z Running parallel tests on 3 processes 2025-09-07T09:06:41.3673178Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:06:41.3673448Z Serial tests (0): 2025-09-07T09:06:41.3673669Z Parallel tests (1): 2025-09-07T09:06:41.3673890Z cpp/c10_error_test 1/1 2025-09-07T09:06:41.3674137Z Name: excluded (est. time: 0.0min) 2025-09-07T09:06:41.3674385Z Serial tests (0): 2025-09-07T09:06:41.3674584Z Parallel tests (0): 2025-09-07T09:06:41.3676416Z Running cpp/c10_error_test 1/1 ... [2025-09-07 09:06:41.367190] 2025-09-07T09:06:41.3676787Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:06:41.3686500Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_error_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6001194668b804e1.xml', '-x', '--reruns=2'] ... [2025-09-07 09:06:41.368398] 2025-09-07T09:06:41.3688304Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:06:42.8479123Z 2025-09-07T09:06:42.8479909Z cpp/c10_error_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_error_test_1.1_eac0d9a27dd05858_.log 2025-09-07T09:06:42.8480677Z 2025-09-07T09:06:46.5170439Z Running cpp/c10_error_test 1/1 ... [2025-09-07 09:06:46.512484] 2025-09-07T09:06:46.5170874Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:06:46.5179548Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_error_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-57ad3a1793d8e854.xml', '-x', '--reruns=2'] ... [2025-09-07 09:06:46.512484] 2025-09-07T09:06:48.0065642Z 2025-09-07T09:06:48.0066465Z cpp/c10_error_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_error_test_1.1_9aa1e452175c8851_.log 2025-09-07T09:06:48.0067151Z 2025-09-07T09:06:48.6166514Z Running test batch 'tests to run' cost 7.25 seconds 2025-09-07T09:06:48.6172881Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:06:48.6173331Z Uploading artifacts took 0.00 seconds 2025-09-07T09:06:49.1032937Z 2025-09-07T09:06:49.1033450Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:06:49.1033913Z echo "c10_error_test" failed with exit code 0 2025-09-07T09:06:49.1034211Z goto fail 2025-09-07T09:06:49.1034387Z ) 2025-09-07T09:06:49.1034490Z 2025-09-07T09:06:49.1034674Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:06:49.1035084Z echo "c10_error_test" failed with exit code 0 2025-09-07T09:06:49.1035363Z goto fail 2025-09-07T09:06:49.1035533Z ) 2025-09-07T09:06:49.1035832Z 2025-09-07T09:06:49.1036219Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:06:49.1042531Z 2025-09-07T09:06:49.1042981Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:06:49.1043693Z call :libtorch_check "c10_exception_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-09-07T09:06:49.1044335Z if errorlevel 1 goto fail 2025-09-07T09:06:49.1044558Z ) 2025-09-07T09:06:49.1052831Z 2025-09-07T09:06:49.1053316Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:06:49.1056923Z 2025-09-07T09:06:49.1057361Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:06:49.1060019Z 2025-09-07T09:06:49.1060394Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_exception_test" == "verify_api_visibility" goto :eof 2025-09-07T09:06:49.1061683Z 2025-09-07T09:06:49.1062209Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-09-07T09:06:49.1063139Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-09-07T09:06:49.1063918Z 2025-09-07T09:06:49.1064323Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_exception_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:06:49.1065077Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_exception_test.exe" 2025-09-07T09:06:49.1065620Z goto :eof 2025-09-07T09:06:49.1065799Z ) 2025-09-07T09:06:49.1065893Z 2025-09-07T09:06:49.1066254Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_exception_test" 2025-09-07T09:06:54.9595398Z Found test times from artifacts 2025-09-07T09:06:55.0355969Z Found test times from artifacts 2025-09-07T09:06:55.0379915Z Running all tests 2025-09-07T09:06:55.0385116Z Running parallel tests on 3 processes 2025-09-07T09:06:55.0385437Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:06:55.0385705Z Serial tests (0): 2025-09-07T09:06:55.0385922Z Parallel tests (1): 2025-09-07T09:06:55.0386153Z cpp/c10_exception_test 1/1 2025-09-07T09:06:55.0386393Z Name: excluded (est. time: 0.0min) 2025-09-07T09:06:55.0386644Z Serial tests (0): 2025-09-07T09:06:55.0386843Z Parallel tests (0): 2025-09-07T09:06:55.0389686Z Running cpp/c10_exception_test 1/1 ... [2025-09-07 09:06:55.038324] 2025-09-07T09:06:55.0390100Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:06:55.0398422Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_exception_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-851488a5d4b49900.xml', '-x', '--reruns=2'] ... [2025-09-07 09:06:55.039479] 2025-09-07T09:06:55.0401110Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:06:56.5157354Z 2025-09-07T09:06:56.5158446Z cpp/c10_exception_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_exception_test_1.1_7c736d9c671c067a_.log 2025-09-07T09:06:56.5159072Z 2025-09-07T09:07:00.2886183Z Running cpp/c10_exception_test 1/1 ... [2025-09-07 09:07:00.285438] 2025-09-07T09:07:00.2886633Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:07:00.2895282Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_exception_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f8a8e8e799d80f2b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:07:00.285438] 2025-09-07T09:07:01.7681817Z 2025-09-07T09:07:01.7683090Z cpp/c10_exception_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_exception_test_1.1_6c33cf943399d829_.log 2025-09-07T09:07:01.7683734Z 2025-09-07T09:07:02.3725856Z Running test batch 'tests to run' cost 7.33 seconds 2025-09-07T09:07:02.3731487Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:07:02.3731970Z Uploading artifacts took 0.00 seconds 2025-09-07T09:07:02.8775482Z 2025-09-07T09:07:02.8776016Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:07:02.8776776Z echo "c10_exception_test" failed with exit code 0 2025-09-07T09:07:02.8777084Z goto fail 2025-09-07T09:07:02.8777269Z ) 2025-09-07T09:07:02.8777376Z 2025-09-07T09:07:02.8777574Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:07:02.8778082Z echo "c10_exception_test" failed with exit code 0 2025-09-07T09:07:02.8778383Z goto fail 2025-09-07T09:07:02.8778557Z ) 2025-09-07T09:07:02.8778705Z 2025-09-07T09:07:02.8778902Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:07:02.8785820Z 2025-09-07T09:07:02.8786064Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:07:02.8786739Z call :libtorch_check "c10_flags_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-09-07T09:07:02.8787332Z if errorlevel 1 goto fail 2025-09-07T09:07:02.8787551Z ) 2025-09-07T09:07:02.8796290Z 2025-09-07T09:07:02.8796657Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:07:02.8800547Z 2025-09-07T09:07:02.8800993Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:07:02.8803588Z 2025-09-07T09:07:02.8803969Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_flags_test" == "verify_api_visibility" goto :eof 2025-09-07T09:07:02.8805270Z 2025-09-07T09:07:02.8805845Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-09-07T09:07:02.8806850Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-09-07T09:07:02.8808129Z 2025-09-07T09:07:02.8808992Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_flags_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:07:02.8809993Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_flags_test.exe" 2025-09-07T09:07:02.8810709Z goto :eof 2025-09-07T09:07:02.8810976Z ) 2025-09-07T09:07:02.8811130Z 2025-09-07T09:07:02.8811675Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_flags_test" 2025-09-07T09:07:08.6808942Z Found test times from artifacts 2025-09-07T09:07:08.7566205Z Found test times from artifacts 2025-09-07T09:07:08.7590872Z Running all tests 2025-09-07T09:07:08.7595961Z Running parallel tests on 3 processes 2025-09-07T09:07:08.7596317Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:07:08.7596619Z Serial tests (0): 2025-09-07T09:07:08.7596825Z Parallel tests (1): 2025-09-07T09:07:08.7597052Z cpp/c10_flags_test 1/1 2025-09-07T09:07:08.7597337Z Name: excluded (est. time: 0.0min) 2025-09-07T09:07:08.7597578Z Serial tests (0): 2025-09-07T09:07:08.7597774Z Parallel tests (0): 2025-09-07T09:07:08.7600082Z Running cpp/c10_flags_test 1/1 ... [2025-09-07 09:07:08.759708] 2025-09-07T09:07:08.7600519Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:07:08.7609399Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_flags_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1ec991d19ad310db.xml', '-x', '--reruns=2'] ... [2025-09-07 09:07:08.760308] 2025-09-07T09:07:08.7611344Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:07:10.2177678Z 2025-09-07T09:07:10.2178551Z cpp/c10_flags_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_flags_test_1.1_473473405c81e9fa_.log 2025-09-07T09:07:10.2179148Z 2025-09-07T09:07:13.9735754Z Running cpp/c10_flags_test 1/1 ... [2025-09-07 09:07:13.969402] 2025-09-07T09:07:13.9736317Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:07:13.9745080Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_flags_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e983d5007790d2df.xml', '-x', '--reruns=2'] ... [2025-09-07 09:07:13.969402] 2025-09-07T09:07:15.4538191Z 2025-09-07T09:07:15.4539030Z cpp/c10_flags_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_flags_test_1.1_460a6c052a6fd88e_.log 2025-09-07T09:07:15.4539763Z 2025-09-07T09:07:16.0784622Z Running test batch 'tests to run' cost 7.32 seconds 2025-09-07T09:07:16.0791178Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:07:16.0791624Z Uploading artifacts took 0.00 seconds 2025-09-07T09:07:16.5707734Z 2025-09-07T09:07:16.5708311Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:07:16.5708779Z echo "c10_flags_test" failed with exit code 0 2025-09-07T09:07:16.5709077Z goto fail 2025-09-07T09:07:16.5709240Z ) 2025-09-07T09:07:16.5709341Z 2025-09-07T09:07:16.5709544Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:07:16.5710077Z echo "c10_flags_test" failed with exit code 0 2025-09-07T09:07:16.5710362Z goto fail 2025-09-07T09:07:16.5710520Z ) 2025-09-07T09:07:16.5711000Z 2025-09-07T09:07:16.5712537Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:07:16.5718055Z 2025-09-07T09:07:16.5718294Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:07:16.5718974Z call :libtorch_check "c10_generic_math_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-09-07T09:07:16.5719638Z if errorlevel 1 goto fail 2025-09-07T09:07:16.5719852Z ) 2025-09-07T09:07:16.5728432Z 2025-09-07T09:07:16.5728814Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:07:16.5733042Z 2025-09-07T09:07:16.5733543Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:07:16.5736199Z 2025-09-07T09:07:16.5736749Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_generic_math_test" == "verify_api_visibility" goto :eof 2025-09-07T09:07:16.5737975Z 2025-09-07T09:07:16.5738504Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-09-07T09:07:16.5739440Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-09-07T09:07:16.5740473Z 2025-09-07T09:07:16.5741010Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_generic_math_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:07:16.5741767Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_generic_math_test.exe" 2025-09-07T09:07:16.5742284Z goto :eof 2025-09-07T09:07:16.5742462Z ) 2025-09-07T09:07:16.5742560Z 2025-09-07T09:07:16.5742929Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_generic_math_test" 2025-09-07T09:07:22.3209564Z Found test times from artifacts 2025-09-07T09:07:22.3969288Z Found test times from artifacts 2025-09-07T09:07:22.3993485Z Running all tests 2025-09-07T09:07:22.3998573Z Running parallel tests on 3 processes 2025-09-07T09:07:22.3998869Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:07:22.3999134Z Serial tests (0): 2025-09-07T09:07:22.3999337Z Parallel tests (1): 2025-09-07T09:07:22.3999564Z cpp/c10_generic_math_test 1/1 2025-09-07T09:07:22.3999818Z Name: excluded (est. time: 0.0min) 2025-09-07T09:07:22.4000064Z Serial tests (0): 2025-09-07T09:07:22.4000261Z Parallel tests (0): 2025-09-07T09:07:22.4001987Z Running cpp/c10_generic_math_test 1/1 ... [2025-09-07 09:07:22.391964] 2025-09-07T09:07:22.4002480Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:07:22.4012244Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_generic_math_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-087a6517c6b54f71.xml', '-x', '--reruns=2'] ... [2025-09-07 09:07:22.391964] 2025-09-07T09:07:22.4013951Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:07:23.8745756Z 2025-09-07T09:07:23.8747023Z cpp/c10_generic_math_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_generic_math_test_1.1_d6eef077cb116770_.log 2025-09-07T09:07:23.8747759Z 2025-09-07T09:07:27.6263151Z Running cpp/c10_generic_math_test 1/1 ... [2025-09-07 09:07:27.626018] 2025-09-07T09:07:27.6263606Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:07:27.6272662Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_generic_math_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8ea78ec60e6d0099.xml', '-x', '--reruns=2'] ... [2025-09-07 09:07:27.626613] 2025-09-07T09:07:29.0984559Z 2025-09-07T09:07:29.0985509Z cpp/c10_generic_math_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_generic_math_test_1.1_2b31c4a69ed54f04_.log 2025-09-07T09:07:29.0986294Z 2025-09-07T09:07:29.7519183Z Running test batch 'tests to run' cost 7.36 seconds 2025-09-07T09:07:29.7525756Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:07:29.7526256Z Uploading artifacts took 0.00 seconds 2025-09-07T09:07:30.2480460Z 2025-09-07T09:07:30.2481082Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:07:30.2481649Z echo "c10_generic_math_test" failed with exit code 0 2025-09-07T09:07:30.2481989Z goto fail 2025-09-07T09:07:30.2482217Z ) 2025-09-07T09:07:30.2482335Z 2025-09-07T09:07:30.2482577Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:07:30.2483027Z echo "c10_generic_math_test" failed with exit code 0 2025-09-07T09:07:30.2483386Z goto fail 2025-09-07T09:07:30.2483582Z ) 2025-09-07T09:07:30.2483723Z 2025-09-07T09:07:30.2483896Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:07:30.2490552Z 2025-09-07T09:07:30.2491083Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:07:30.2491813Z call :libtorch_check "c10_Half_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-09-07T09:07:30.2492501Z if errorlevel 1 goto fail 2025-09-07T09:07:30.2492782Z ) 2025-09-07T09:07:30.2501046Z 2025-09-07T09:07:30.2501431Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:07:30.2505075Z 2025-09-07T09:07:30.2505583Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:07:30.2508107Z 2025-09-07T09:07:30.2508511Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Half_test" == "verify_api_visibility" goto :eof 2025-09-07T09:07:30.2509911Z 2025-09-07T09:07:30.2510832Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-09-07T09:07:30.2511763Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-09-07T09:07:30.2512638Z 2025-09-07T09:07:30.2513079Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Half_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:07:30.2513931Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Half_test.exe" 2025-09-07T09:07:30.2514522Z goto :eof 2025-09-07T09:07:30.2514759Z ) 2025-09-07T09:07:30.2514867Z 2025-09-07T09:07:30.2515270Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Half_test" 2025-09-07T09:07:35.8911384Z Found test times from artifacts 2025-09-07T09:07:35.9678987Z Found test times from artifacts 2025-09-07T09:07:35.9703245Z Running all tests 2025-09-07T09:07:35.9708013Z Running parallel tests on 3 processes 2025-09-07T09:07:35.9708372Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:07:35.9708729Z Serial tests (0): 2025-09-07T09:07:35.9708979Z Parallel tests (1): 2025-09-07T09:07:35.9709226Z cpp/c10_Half_test 1/1 2025-09-07T09:07:35.9709511Z Name: excluded (est. time: 0.0min) 2025-09-07T09:07:35.9709783Z Serial tests (0): 2025-09-07T09:07:35.9710032Z Parallel tests (0): 2025-09-07T09:07:35.9711311Z Running cpp/c10_Half_test 1/1 ... [2025-09-07 09:07:35.961143] 2025-09-07T09:07:35.9711740Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:07:35.9720829Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Half_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e6655f38623c8e96.xml', '-x', '--reruns=2'] ... [2025-09-07 09:07:35.961143] 2025-09-07T09:07:35.9722646Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:07:37.4532840Z 2025-09-07T09:07:37.4533731Z cpp/c10_Half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Half_test_1.1_a1c4f7029ea42209_.log 2025-09-07T09:07:37.4534701Z 2025-09-07T09:07:41.2430303Z Running cpp/c10_Half_test 1/1 ... [2025-09-07 09:07:41.242085] 2025-09-07T09:07:41.2430767Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:07:41.2439680Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Half_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1ef2e912373894f5.xml', '-x', '--reruns=2'] ... [2025-09-07 09:07:41.242085] 2025-09-07T09:07:42.7099188Z 2025-09-07T09:07:42.7100169Z cpp/c10_Half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Half_test_1.1_6e797744c5fd1b1d_.log 2025-09-07T09:07:42.7100825Z 2025-09-07T09:07:43.3244039Z Running test batch 'tests to run' cost 7.36 seconds 2025-09-07T09:07:43.3250616Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:07:43.3251094Z Uploading artifacts took 0.00 seconds 2025-09-07T09:07:43.8135681Z 2025-09-07T09:07:43.8136344Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:07:43.8136871Z echo "c10_Half_test" failed with exit code 0 2025-09-07T09:07:43.8137198Z goto fail 2025-09-07T09:07:43.8137435Z ) 2025-09-07T09:07:43.8137872Z 2025-09-07T09:07:43.8138210Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:07:43.8138664Z echo "c10_Half_test" failed with exit code 0 2025-09-07T09:07:43.8139017Z goto fail 2025-09-07T09:07:43.8139218Z ) 2025-09-07T09:07:43.8139951Z 2025-09-07T09:07:43.8140368Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:07:43.8147269Z 2025-09-07T09:07:43.8147536Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:07:43.8148380Z call :libtorch_check "c10_InlineDeviceGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-09-07T09:07:43.8149146Z if errorlevel 1 goto fail 2025-09-07T09:07:43.8149394Z ) 2025-09-07T09:07:43.8166199Z 2025-09-07T09:07:43.8166896Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:07:43.8171629Z 2025-09-07T09:07:43.8172571Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:07:43.8174688Z 2025-09-07T09:07:43.8175333Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineDeviceGuard_test" == "verify_api_visibility" goto :eof 2025-09-07T09:07:43.8176399Z 2025-09-07T09:07:43.8177175Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-09-07T09:07:43.8178212Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-09-07T09:07:43.8178726Z 2025-09-07T09:07:43.8179189Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineDeviceGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:07:43.8180037Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineDeviceGuard_test.exe" 2025-09-07T09:07:43.8180585Z goto :eof 2025-09-07T09:07:43.8180811Z ) 2025-09-07T09:07:43.8180920Z 2025-09-07T09:07:43.8181328Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_InlineDeviceGuard_test" 2025-09-07T09:07:49.3827855Z Found test times from artifacts 2025-09-07T09:07:49.4604430Z Found test times from artifacts 2025-09-07T09:07:49.4628704Z Running all tests 2025-09-07T09:07:49.4633541Z Running parallel tests on 3 processes 2025-09-07T09:07:49.4633904Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:07:49.4634181Z Serial tests (0): 2025-09-07T09:07:49.4634398Z Parallel tests (1): 2025-09-07T09:07:49.4634635Z cpp/c10_InlineDeviceGuard_test 1/1 2025-09-07T09:07:49.4634911Z Name: excluded (est. time: 0.0min) 2025-09-07T09:07:49.4635157Z Serial tests (0): 2025-09-07T09:07:49.4635346Z Parallel tests (0): 2025-09-07T09:07:49.4637103Z Running cpp/c10_InlineDeviceGuard_test 1/1 ... [2025-09-07 09:07:49.462412] 2025-09-07T09:07:49.4637525Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:07:49.4646840Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_InlineDeviceGuard_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-109dca2f9a8505cc.xml', '-x', '--reruns=2'] ... [2025-09-07 09:07:49.463984] 2025-09-07T09:07:49.4648577Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:07:50.9488806Z 2025-09-07T09:07:50.9489795Z cpp/c10_InlineDeviceGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_InlineDeviceGuard_test_1.1_91429926791a49ea_.log 2025-09-07T09:07:50.9490483Z 2025-09-07T09:07:54.6232040Z Running cpp/c10_InlineDeviceGuard_test 1/1 ... [2025-09-07 09:07:54.621757] 2025-09-07T09:07:54.6232527Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:07:54.6241127Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_InlineDeviceGuard_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7ba3c46635dfcb07.xml', '-x', '--reruns=2'] ... [2025-09-07 09:07:54.621757] 2025-09-07T09:07:56.1224695Z 2025-09-07T09:07:56.1225669Z cpp/c10_InlineDeviceGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_InlineDeviceGuard_test_1.1_60bc973cdcf9d7bf_.log 2025-09-07T09:07:56.1226573Z 2025-09-07T09:07:56.7397781Z Running test batch 'tests to run' cost 7.27 seconds 2025-09-07T09:07:56.7403994Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:07:56.7404455Z Uploading artifacts took 0.00 seconds 2025-09-07T09:07:57.2226598Z 2025-09-07T09:07:57.2227308Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:07:57.2227780Z echo "c10_InlineDeviceGuard_test" failed with exit code 0 2025-09-07T09:07:57.2228134Z goto fail 2025-09-07T09:07:57.2228300Z ) 2025-09-07T09:07:57.2228406Z 2025-09-07T09:07:57.2228669Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:07:57.2229119Z echo "c10_InlineDeviceGuard_test" failed with exit code 0 2025-09-07T09:07:57.2229472Z goto fail 2025-09-07T09:07:57.2229648Z ) 2025-09-07T09:07:57.2230136Z 2025-09-07T09:07:57.2230367Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:07:57.2237498Z 2025-09-07T09:07:57.2237722Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:07:57.2238516Z call :libtorch_check "c10_InlineStreamGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-09-07T09:07:57.2239281Z if errorlevel 1 goto fail 2025-09-07T09:07:57.2239515Z ) 2025-09-07T09:07:57.2248201Z 2025-09-07T09:07:57.2248521Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:07:57.2252814Z 2025-09-07T09:07:57.2253438Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:07:57.2256833Z 2025-09-07T09:07:57.2257528Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineStreamGuard_test" == "verify_api_visibility" goto :eof 2025-09-07T09:07:57.2258697Z 2025-09-07T09:07:57.2259257Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-09-07T09:07:57.2260229Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-09-07T09:07:57.2260989Z 2025-09-07T09:07:57.2261456Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_InlineStreamGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:07:57.2262300Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_InlineStreamGuard_test.exe" 2025-09-07T09:07:57.2262862Z goto :eof 2025-09-07T09:07:57.2263036Z ) 2025-09-07T09:07:57.2263127Z 2025-09-07T09:07:57.2263518Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_InlineStreamGuard_test" 2025-09-07T09:08:02.9053626Z Found test times from artifacts 2025-09-07T09:08:02.9824667Z Found test times from artifacts 2025-09-07T09:08:02.9849001Z Running all tests 2025-09-07T09:08:02.9853998Z Running parallel tests on 3 processes 2025-09-07T09:08:02.9854325Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:08:02.9854580Z Serial tests (0): 2025-09-07T09:08:02.9854791Z Parallel tests (1): 2025-09-07T09:08:02.9855021Z cpp/c10_InlineStreamGuard_test 1/1 2025-09-07T09:08:02.9855319Z Name: excluded (est. time: 0.0min) 2025-09-07T09:08:02.9855566Z Serial tests (0): 2025-09-07T09:08:02.9855762Z Parallel tests (0): 2025-09-07T09:08:02.9857746Z Running cpp/c10_InlineStreamGuard_test 1/1 ... [2025-09-07 09:08:02.985668] 2025-09-07T09:08:02.9858171Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:08:02.9867479Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_InlineStreamGuard_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-757072ac485fc027.xml', '-x', '--reruns=2'] ... [2025-09-07 09:08:02.985718] 2025-09-07T09:08:02.9869220Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:08:04.4614313Z 2025-09-07T09:08:04.4615241Z cpp/c10_InlineStreamGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_InlineStreamGuard_test_1.1_ff2571810e5190f5_.log 2025-09-07T09:08:04.4616181Z 2025-09-07T09:08:08.2314871Z Running cpp/c10_InlineStreamGuard_test 1/1 ... [2025-09-07 09:08:08.231125] 2025-09-07T09:08:08.2315364Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:08:08.2325318Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_InlineStreamGuard_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-23085e6801ebe388.xml', '-x', '--reruns=2'] ... [2025-09-07 09:08:08.232272] 2025-09-07T09:08:09.7391901Z 2025-09-07T09:08:09.7392819Z cpp/c10_InlineStreamGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_InlineStreamGuard_test_1.1_77984626e53d89ee_.log 2025-09-07T09:08:09.7393702Z 2025-09-07T09:08:10.3408809Z Running test batch 'tests to run' cost 7.36 seconds 2025-09-07T09:08:10.3417595Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:08:10.3418047Z Uploading artifacts took 0.00 seconds 2025-09-07T09:08:10.8986241Z 2025-09-07T09:08:10.8986832Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:08:10.8987483Z echo "c10_InlineStreamGuard_test" failed with exit code 0 2025-09-07T09:08:10.8987828Z goto fail 2025-09-07T09:08:10.8988004Z ) 2025-09-07T09:08:10.8988095Z 2025-09-07T09:08:10.8988355Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:08:10.8988850Z echo "c10_InlineStreamGuard_test" failed with exit code 0 2025-09-07T09:08:10.8989189Z goto fail 2025-09-07T09:08:10.8989356Z ) 2025-09-07T09:08:10.8989457Z 2025-09-07T09:08:10.8990136Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:08:10.8996918Z 2025-09-07T09:08:10.8997137Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:08:10.8997870Z call :libtorch_check "c10_IntrusiveList_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-09-07T09:08:10.8998531Z if errorlevel 1 goto fail 2025-09-07T09:08:10.8998761Z ) 2025-09-07T09:08:10.9007680Z 2025-09-07T09:08:10.9008076Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:08:10.9011936Z 2025-09-07T09:08:10.9012562Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:08:10.9015125Z 2025-09-07T09:08:10.9015637Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_IntrusiveList_test" == "verify_api_visibility" goto :eof 2025-09-07T09:08:10.9016956Z 2025-09-07T09:08:10.9017643Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-09-07T09:08:10.9018604Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-09-07T09:08:10.9019964Z 2025-09-07T09:08:10.9020412Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_IntrusiveList_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:08:10.9021168Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_IntrusiveList_test.exe" 2025-09-07T09:08:10.9021673Z goto :eof 2025-09-07T09:08:10.9021847Z ) 2025-09-07T09:08:10.9021940Z 2025-09-07T09:08:10.9022438Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_IntrusiveList_test" 2025-09-07T09:08:16.4616339Z Found test times from artifacts 2025-09-07T09:08:16.5380248Z Found test times from artifacts 2025-09-07T09:08:16.5404442Z Running all tests 2025-09-07T09:08:16.5410252Z Running parallel tests on 3 processes 2025-09-07T09:08:16.5410815Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:08:16.5411245Z Serial tests (0): 2025-09-07T09:08:16.5411451Z Parallel tests (1): 2025-09-07T09:08:16.5411768Z cpp/c10_IntrusiveList_test 1/1 2025-09-07T09:08:16.5412026Z Name: excluded (est. time: 0.0min) 2025-09-07T09:08:16.5412281Z Serial tests (0): 2025-09-07T09:08:16.5412491Z Parallel tests (0): 2025-09-07T09:08:16.5414118Z Running cpp/c10_IntrusiveList_test 1/1 ... [2025-09-07 09:08:16.541333] 2025-09-07T09:08:16.5414526Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:08:16.5424068Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_IntrusiveList_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-61dc67d0f4543e8f.xml', '-x', '--reruns=2'] ... [2025-09-07 09:08:16.542006] 2025-09-07T09:08:16.5425922Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:08:18.0233215Z 2025-09-07T09:08:18.0234257Z cpp/c10_IntrusiveList_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_IntrusiveList_test_1.1_956ff39ed0470118_.log 2025-09-07T09:08:18.0234917Z 2025-09-07T09:08:21.7520241Z Running cpp/c10_IntrusiveList_test 1/1 ... [2025-09-07 09:08:21.748649] 2025-09-07T09:08:21.7520701Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:08:21.7529369Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_IntrusiveList_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c5167b52f9606525.xml', '-x', '--reruns=2'] ... [2025-09-07 09:08:21.748649] 2025-09-07T09:08:23.2487179Z 2025-09-07T09:08:23.2488063Z cpp/c10_IntrusiveList_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_IntrusiveList_test_1.1_0b3dd21bdde0647d_.log 2025-09-07T09:08:23.2488877Z 2025-09-07T09:08:23.8830925Z Running test batch 'tests to run' cost 7.33 seconds 2025-09-07T09:08:23.8837992Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:08:23.8838460Z Uploading artifacts took 0.00 seconds 2025-09-07T09:08:24.3765955Z 2025-09-07T09:08:24.3766518Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:08:24.3766974Z echo "c10_IntrusiveList_test" failed with exit code 0 2025-09-07T09:08:24.3767311Z goto fail 2025-09-07T09:08:24.3767483Z ) 2025-09-07T09:08:24.3767591Z 2025-09-07T09:08:24.3767778Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:08:24.3768242Z echo "c10_IntrusiveList_test" failed with exit code 0 2025-09-07T09:08:24.3768556Z goto fail 2025-09-07T09:08:24.3768738Z ) 2025-09-07T09:08:24.3769162Z 2025-09-07T09:08:24.3769391Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:08:24.3775845Z 2025-09-07T09:08:24.3776090Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:08:24.3776930Z call :libtorch_check "c10_intrusive_ptr_benchmark" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-09-07T09:08:24.3777646Z if errorlevel 1 goto fail 2025-09-07T09:08:24.3777867Z ) 2025-09-07T09:08:24.3786637Z 2025-09-07T09:08:24.3786995Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:08:24.3790831Z 2025-09-07T09:08:24.3791275Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:08:24.3793878Z 2025-09-07T09:08:24.3794418Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_benchmark" == "verify_api_visibility" goto :eof 2025-09-07T09:08:24.3795690Z 2025-09-07T09:08:24.3796280Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-09-07T09:08:24.3797433Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-09-07T09:08:24.3797998Z 2025-09-07T09:08:24.3798530Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_benchmark" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:08:24.3799443Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe" 2025-09-07T09:08:24.3799967Z goto :eof 2025-09-07T09:08:24.3800156Z ) 2025-09-07T09:08:24.3990600Z 2025-09-07T09:08:24+00:00 2025-09-07T09:08:24.3991183Z Running C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_benchmark.exe 2025-09-07T09:08:24.3991722Z Run on (16 X 3000 MHz CPU s) 2025-09-07T09:08:24.3991961Z CPU Caches: 2025-09-07T09:08:24.3992136Z L1 Data 32 KiB (x8) 2025-09-07T09:08:24.3992357Z L1 Instruction 32 KiB (x8) 2025-09-07T09:08:24.3992611Z L2 Unified 1024 KiB (x8) 2025-09-07T09:08:24.3992834Z L3 Unified 36608 KiB (x1) 2025-09-07T09:08:25.2087258Z ---------------------------------------------------------------------------- 2025-09-07T09:08:25.2087904Z Benchmark Time CPU Iterations 2025-09-07T09:08:25.2088348Z ---------------------------------------------------------------------------- 2025-09-07T09:08:25.2088790Z BM_IntrusivePtrCtorDtor 12.1 ns 12.3 ns 56000000 2025-09-07T09:08:26.0171761Z BM_SharedPtrCtorDtor 12.0 ns 12.0 ns 56000000 2025-09-07T09:08:26.9431549Z BM_IntrusivePtrArray/16 224 ns 220 ns 2986667 2025-09-07T09:08:28.2209246Z BM_IntrusivePtrArray/32 448 ns 454 ns 1618581 2025-09-07T09:08:28.9904621Z BM_IntrusivePtrArray/64 897 ns 879 ns 746667 2025-09-07T09:08:29.9221118Z BM_IntrusivePtrArray/128 1793 ns 1803 ns 407273 2025-09-07T09:08:30.9973181Z BM_IntrusivePtrArray/256 3611 ns 3599 ns 186667 2025-09-07T09:08:31.7238569Z BM_IntrusivePtrArray/512 7214 ns 7150 ns 89600 2025-09-07T09:08:32.6007046Z BM_IntrusivePtrArray/1024 14402 ns 13811 ns 49778 2025-09-07T09:08:33.5980168Z BM_IntrusivePtrArray/2048 28747 ns 28495 ns 23579 2025-09-07T09:08:34.3066577Z BM_IntrusivePtrArray/4096 57561 ns 57199 ns 11200 2025-09-07T09:08:35.2325841Z BM_SharedPtrArray/16 225 ns 225 ns 2986667 2025-09-07T09:08:36.4466373Z BM_SharedPtrArray/32 463 ns 455 ns 1544828 2025-09-07T09:08:37.1333041Z BM_SharedPtrArray/64 899 ns 903 ns 640000 2025-09-07T09:08:38.0644169Z BM_SharedPtrArray/128 1798 ns 1803 ns 407273 2025-09-07T09:08:39.1655946Z BM_SharedPtrArray/256 3599 ns 3610 ns 194783 2025-09-07T09:08:39.8903969Z BM_SharedPtrArray/512 7194 ns 7150 ns 89600 2025-09-07T09:08:40.7654379Z BM_SharedPtrArray/1024 14369 ns 14439 ns 49778 2025-09-07T09:08:41.8021276Z BM_SharedPtrArray/2048 28781 ns 29506 ns 24889 2025-09-07T09:08:42.4432206Z BM_SharedPtrArray/4096 57658 ns 57813 ns 10000 2025-09-07T09:08:43.1914347Z BM_IntrusivePtrExclusiveOwnership 60.7 ns 60.0 ns 11200000 2025-09-07T09:08:43.8611197Z BM_SharedPtrExclusiveOwnership 66.5 ns 66.3 ns 8960000 2025-09-07T09:08:43.8638854Z 2025-09-07T09:08:43.8639285Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:08:43.8640021Z call :libtorch_check "c10_intrusive_ptr_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-09-07T09:08:43.8640850Z if errorlevel 1 goto fail 2025-09-07T09:08:43.8641077Z ) 2025-09-07T09:08:43.8650219Z 2025-09-07T09:08:43.8650563Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:08:43.8654623Z 2025-09-07T09:08:43.8655365Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:08:43.8657764Z 2025-09-07T09:08:43.8658208Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_test" == "verify_api_visibility" goto :eof 2025-09-07T09:08:43.8659550Z 2025-09-07T09:08:43.8660124Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-09-07T09:08:43.8661072Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-09-07T09:08:43.8661678Z 2025-09-07T09:08:43.8662082Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_intrusive_ptr_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:08:43.8662817Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_intrusive_ptr_test.exe" 2025-09-07T09:08:43.8663443Z goto :eof 2025-09-07T09:08:43.8663619Z ) 2025-09-07T09:08:43.8663722Z 2025-09-07T09:08:43.8664096Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_intrusive_ptr_test" 2025-09-07T09:08:49.6130472Z Found test times from artifacts 2025-09-07T09:08:49.6894821Z Found test times from artifacts 2025-09-07T09:08:49.6919153Z Running all tests 2025-09-07T09:08:49.6924421Z Running parallel tests on 3 processes 2025-09-07T09:08:49.6924810Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:08:49.6925074Z Serial tests (0): 2025-09-07T09:08:49.6925340Z Parallel tests (1): 2025-09-07T09:08:49.6925560Z cpp/c10_intrusive_ptr_test 1/1 2025-09-07T09:08:49.6925846Z Name: excluded (est. time: 0.0min) 2025-09-07T09:08:49.6926085Z Serial tests (0): 2025-09-07T09:08:49.6926291Z Parallel tests (0): 2025-09-07T09:08:49.6928155Z Running cpp/c10_intrusive_ptr_test 1/1 ... [2025-09-07 09:08:49.692250] 2025-09-07T09:08:49.6929073Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:08:49.6938111Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_intrusive_ptr_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-06ac2cd2aee56ecd.xml', '-x', '--reruns=2'] ... [2025-09-07 09:08:49.693402] 2025-09-07T09:08:49.6939940Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:08:51.1607755Z 2025-09-07T09:08:51.1608838Z cpp/c10_intrusive_ptr_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_intrusive_ptr_test_1.1_b100263f547757a0_.log 2025-09-07T09:08:51.1609506Z 2025-09-07T09:08:54.8726345Z Running cpp/c10_intrusive_ptr_test 1/1 ... [2025-09-07 09:08:54.859817] 2025-09-07T09:08:54.8726790Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:08:54.8735651Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_intrusive_ptr_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3b373f93ad8c2e90.xml', '-x', '--reruns=2'] ... [2025-09-07 09:08:54.859817] 2025-09-07T09:08:57.7219069Z 2025-09-07T09:08:57.7220005Z cpp/c10_intrusive_ptr_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_intrusive_ptr_test_1.1_ed176f730e3dfdfa_.log 2025-09-07T09:08:57.7226634Z 2025-09-07T09:08:58.3391555Z Running test batch 'tests to run' cost 8.64 seconds 2025-09-07T09:08:58.3397844Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:08:58.3398383Z Uploading artifacts took 0.00 seconds 2025-09-07T09:08:58.8306652Z 2025-09-07T09:08:58.8307180Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:08:58.8307684Z echo "c10_intrusive_ptr_test" failed with exit code 0 2025-09-07T09:08:58.8307993Z goto fail 2025-09-07T09:08:58.8308181Z ) 2025-09-07T09:08:58.8308282Z 2025-09-07T09:08:58.8308474Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:08:58.8308901Z echo "c10_intrusive_ptr_test" failed with exit code 0 2025-09-07T09:08:58.8309214Z goto fail 2025-09-07T09:08:58.8309372Z ) 2025-09-07T09:08:58.8309586Z 2025-09-07T09:08:58.8309942Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:08:58.8316295Z 2025-09-07T09:08:58.8316502Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:08:58.8317148Z call :libtorch_check "c10_irange_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-09-07T09:08:58.8317776Z if errorlevel 1 goto fail 2025-09-07T09:08:58.8318006Z ) 2025-09-07T09:08:58.8326665Z 2025-09-07T09:08:58.8327018Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:08:58.8330571Z 2025-09-07T09:08:58.8331174Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:08:58.8333521Z 2025-09-07T09:08:58.8333941Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_irange_test" == "verify_api_visibility" goto :eof 2025-09-07T09:08:58.8335174Z 2025-09-07T09:08:58.8335710Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-09-07T09:08:58.8336619Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-09-07T09:08:58.8337404Z 2025-09-07T09:08:58.8337785Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_irange_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:08:58.8338487Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_irange_test.exe" 2025-09-07T09:08:58.8338977Z goto :eof 2025-09-07T09:08:58.8339142Z ) 2025-09-07T09:08:58.8339244Z 2025-09-07T09:08:58.8339597Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_irange_test" 2025-09-07T09:09:04.5323279Z Found test times from artifacts 2025-09-07T09:09:04.6089678Z Found test times from artifacts 2025-09-07T09:09:04.6114612Z Running all tests 2025-09-07T09:09:04.6120646Z Running parallel tests on 3 processes 2025-09-07T09:09:04.6120998Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:09:04.6121276Z Serial tests (0): 2025-09-07T09:09:04.6121494Z Parallel tests (1): 2025-09-07T09:09:04.6121722Z cpp/c10_irange_test 1/1 2025-09-07T09:09:04.6121965Z Name: excluded (est. time: 0.0min) 2025-09-07T09:09:04.6122913Z Serial tests (0): 2025-09-07T09:09:04.6123123Z Parallel tests (0): 2025-09-07T09:09:04.6124132Z Running cpp/c10_irange_test 1/1 ... [2025-09-07 09:09:04.611672] 2025-09-07T09:09:04.6124512Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:09:04.6147074Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_irange_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0b53437296d69c82.xml', '-x', '--reruns=2'] ... [2025-09-07 09:09:04.613326] 2025-09-07T09:09:04.6148738Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:09:06.1079933Z 2025-09-07T09:09:06.1080887Z cpp/c10_irange_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_irange_test_1.1_1d826b904f485b24_.log 2025-09-07T09:09:06.1082448Z 2025-09-07T09:09:09.9694691Z Running cpp/c10_irange_test 1/1 ... [2025-09-07 09:09:09.954057] 2025-09-07T09:09:09.9695119Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:09:09.9707696Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_irange_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f8e2aa56901b3889.xml', '-x', '--reruns=2'] ... [2025-09-07 09:09:09.969784] 2025-09-07T09:09:11.4574946Z 2025-09-07T09:09:11.4575752Z cpp/c10_irange_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_irange_test_1.1_e52faeef6ee24444_.log 2025-09-07T09:09:11.4576514Z 2025-09-07T09:09:12.1110056Z Running test batch 'tests to run' cost 7.5 seconds 2025-09-07T09:09:12.1116328Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:09:12.1116814Z Uploading artifacts took 0.00 seconds 2025-09-07T09:09:12.6142621Z 2025-09-07T09:09:12.6143251Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:09:12.6143857Z echo "c10_irange_test" failed with exit code 0 2025-09-07T09:09:12.6144145Z goto fail 2025-09-07T09:09:12.6144315Z ) 2025-09-07T09:09:12.6144419Z 2025-09-07T09:09:12.6144612Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:09:12.6145019Z echo "c10_irange_test" failed with exit code 0 2025-09-07T09:09:12.6145298Z goto fail 2025-09-07T09:09:12.6145473Z ) 2025-09-07T09:09:12.6145567Z 2025-09-07T09:09:12.6145726Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:09:12.6152254Z 2025-09-07T09:09:12.6152644Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:09:12.6153323Z call :libtorch_check "c10_lazy_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-09-07T09:09:12.6153940Z if errorlevel 1 goto fail 2025-09-07T09:09:12.6154161Z ) 2025-09-07T09:09:12.6163011Z 2025-09-07T09:09:12.6163373Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:09:12.6167166Z 2025-09-07T09:09:12.6167632Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:09:12.6170273Z 2025-09-07T09:09:12.6170841Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_lazy_test" == "verify_api_visibility" goto :eof 2025-09-07T09:09:12.6172002Z 2025-09-07T09:09:12.6172513Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-09-07T09:09:12.6173397Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-09-07T09:09:12.6174223Z 2025-09-07T09:09:12.6174595Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_lazy_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:09:12.6175286Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_lazy_test.exe" 2025-09-07T09:09:12.6175760Z goto :eof 2025-09-07T09:09:12.6175921Z ) 2025-09-07T09:09:12.6176018Z 2025-09-07T09:09:12.6176365Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_lazy_test" 2025-09-07T09:09:18.3553732Z Found test times from artifacts 2025-09-07T09:09:18.4471464Z Found test times from artifacts 2025-09-07T09:09:18.4497403Z Running all tests 2025-09-07T09:09:18.4502864Z Running parallel tests on 3 processes 2025-09-07T09:09:18.4503218Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:09:18.4503485Z Serial tests (0): 2025-09-07T09:09:18.4503689Z Parallel tests (1): 2025-09-07T09:09:18.4503912Z cpp/c10_lazy_test 1/1 2025-09-07T09:09:18.4504295Z Name: excluded (est. time: 0.0min) 2025-09-07T09:09:18.4504548Z Serial tests (0): 2025-09-07T09:09:18.4504821Z Parallel tests (0): 2025-09-07T09:09:18.4506351Z Running cpp/c10_lazy_test 1/1 ... [2025-09-07 09:09:18.447749] 2025-09-07T09:09:18.4506738Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:09:18.4517398Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_lazy_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-927b3539e8d089d6.xml', '-x', '--reruns=2'] ... [2025-09-07 09:09:18.450878] 2025-09-07T09:09:18.4519053Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:09:19.9652272Z 2025-09-07T09:09:19.9653092Z cpp/c10_lazy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_lazy_test_1.1_e9783e64788b0695_.log 2025-09-07T09:09:19.9653727Z 2025-09-07T09:09:23.7197406Z Running cpp/c10_lazy_test 1/1 ... [2025-09-07 09:09:23.719390] 2025-09-07T09:09:23.7197818Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:09:23.7209683Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_lazy_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-41dd2828df764f8c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:09:23.720604] 2025-09-07T09:09:25.2119092Z 2025-09-07T09:09:25.2119956Z cpp/c10_lazy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_lazy_test_1.1_480d75f84d696a46_.log 2025-09-07T09:09:25.2120766Z 2025-09-07T09:09:25.8482844Z Running test batch 'tests to run' cost 7.4 seconds 2025-09-07T09:09:25.8489277Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:09:25.8489747Z Uploading artifacts took 0.00 seconds 2025-09-07T09:09:26.3363284Z 2025-09-07T09:09:26.3363935Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:09:26.3364372Z echo "c10_lazy_test" failed with exit code 0 2025-09-07T09:09:26.3364693Z goto fail 2025-09-07T09:09:26.3364861Z ) 2025-09-07T09:09:26.3364981Z 2025-09-07T09:09:26.3365168Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:09:26.3365589Z echo "c10_lazy_test" failed with exit code 0 2025-09-07T09:09:26.3365864Z goto fail 2025-09-07T09:09:26.3366038Z ) 2025-09-07T09:09:26.3366212Z 2025-09-07T09:09:26.3366578Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:09:26.3372749Z 2025-09-07T09:09:26.3372916Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:09:26.3373676Z call :libtorch_check "c10_LeftRight_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-09-07T09:09:26.3374346Z if errorlevel 1 goto fail 2025-09-07T09:09:26.3374582Z ) 2025-09-07T09:09:26.3383336Z 2025-09-07T09:09:26.3383681Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:09:26.3387710Z 2025-09-07T09:09:26.3388223Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:09:26.3390900Z 2025-09-07T09:09:26.3391602Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_LeftRight_test" == "verify_api_visibility" goto :eof 2025-09-07T09:09:26.3392801Z 2025-09-07T09:09:26.3393365Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-09-07T09:09:26.3394298Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-09-07T09:09:26.3395046Z 2025-09-07T09:09:26.3395453Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_LeftRight_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:09:26.3396252Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_LeftRight_test.exe" 2025-09-07T09:09:26.3396732Z goto :eof 2025-09-07T09:09:26.3396958Z ) 2025-09-07T09:09:26.3397052Z 2025-09-07T09:09:26.3397459Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_LeftRight_test" 2025-09-07T09:09:32.0134659Z Found test times from artifacts 2025-09-07T09:09:32.0904511Z Found test times from artifacts 2025-09-07T09:09:32.0928442Z Running all tests 2025-09-07T09:09:32.0933757Z Running parallel tests on 3 processes 2025-09-07T09:09:32.0934092Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:09:32.0934366Z Serial tests (0): 2025-09-07T09:09:32.0934563Z Parallel tests (1): 2025-09-07T09:09:32.0934792Z cpp/c10_LeftRight_test 1/1 2025-09-07T09:09:32.0935044Z Name: excluded (est. time: 0.0min) 2025-09-07T09:09:32.0935318Z Serial tests (0): 2025-09-07T09:09:32.0935527Z Parallel tests (0): 2025-09-07T09:09:32.0937071Z Running cpp/c10_LeftRight_test 1/1 ... [2025-09-07 09:09:32.090774] 2025-09-07T09:09:32.0937454Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:09:32.0946851Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_LeftRight_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2dfb08af4dd58d1c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:09:32.090774] 2025-09-07T09:09:32.0948551Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:09:33.5757578Z 2025-09-07T09:09:33.5758617Z cpp/c10_LeftRight_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_LeftRight_test_1.1_56cfe1fe30ec6966_.log 2025-09-07T09:09:33.5759269Z 2025-09-07T09:09:37.3157962Z Running cpp/c10_LeftRight_test 1/1 ... [2025-09-07 09:09:37.315643] 2025-09-07T09:09:37.3158457Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:09:37.3168029Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_LeftRight_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-eb9dfe7947dd4191.xml', '-x', '--reruns=2'] ... [2025-09-07 09:09:37.316148] 2025-09-07T09:09:38.9307144Z 2025-09-07T09:09:38.9308168Z cpp/c10_LeftRight_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_LeftRight_test_1.1_ddbf4e1a65f6153d_.log 2025-09-07T09:09:38.9308830Z 2025-09-07T09:09:39.5793302Z Running test batch 'tests to run' cost 7.49 seconds 2025-09-07T09:09:39.5800198Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:09:39.5800720Z Uploading artifacts took 0.00 seconds 2025-09-07T09:09:40.0687856Z 2025-09-07T09:09:40.0688485Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:09:40.0688923Z echo "c10_LeftRight_test" failed with exit code 0 2025-09-07T09:09:40.0689239Z goto fail 2025-09-07T09:09:40.0689403Z ) 2025-09-07T09:09:40.0689517Z 2025-09-07T09:09:40.0689702Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:09:40.0690293Z echo "c10_LeftRight_test" failed with exit code 0 2025-09-07T09:09:40.0690648Z goto fail 2025-09-07T09:09:40.0690819Z ) 2025-09-07T09:09:40.0691016Z 2025-09-07T09:09:40.0691219Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:09:40.0699099Z 2025-09-07T09:09:40.0699317Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:09:40.0699984Z call :libtorch_check "c10_logging_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-09-07T09:09:40.0700679Z if errorlevel 1 goto fail 2025-09-07T09:09:40.0700911Z ) 2025-09-07T09:09:40.0710500Z 2025-09-07T09:09:40.0711161Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:09:40.0715344Z 2025-09-07T09:09:40.0715845Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:09:40.0718417Z 2025-09-07T09:09:40.0718840Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_logging_test" == "verify_api_visibility" goto :eof 2025-09-07T09:09:40.0720174Z 2025-09-07T09:09:40.0720705Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-09-07T09:09:40.0721617Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-09-07T09:09:40.0722875Z 2025-09-07T09:09:40.0723262Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_logging_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:09:40.0723967Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_logging_test.exe" 2025-09-07T09:09:40.0724612Z goto :eof 2025-09-07T09:09:40.0724776Z ) 2025-09-07T09:09:40.0724879Z 2025-09-07T09:09:40.0725270Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_logging_test" 2025-09-07T09:09:45.7264534Z Found test times from artifacts 2025-09-07T09:09:45.8024858Z Found test times from artifacts 2025-09-07T09:09:45.8049041Z Running all tests 2025-09-07T09:09:45.8054014Z Running parallel tests on 3 processes 2025-09-07T09:09:45.8054386Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:09:45.8054697Z Serial tests (0): 2025-09-07T09:09:45.8054901Z Parallel tests (1): 2025-09-07T09:09:45.8055124Z cpp/c10_logging_test 1/1 2025-09-07T09:09:45.8055409Z Name: excluded (est. time: 0.0min) 2025-09-07T09:09:45.8055663Z Serial tests (0): 2025-09-07T09:09:45.8055867Z Parallel tests (0): 2025-09-07T09:09:45.8057741Z Running cpp/c10_logging_test 1/1 ... [2025-09-07 09:09:45.805510] 2025-09-07T09:09:45.8058128Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:09:45.8067533Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_logging_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b0c0c32f75a34c1d.xml', '-x', '--reruns=2'] ... [2025-09-07 09:09:45.806080] 2025-09-07T09:09:45.8069218Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:09:47.2628785Z 2025-09-07T09:09:47.2629739Z cpp/c10_logging_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_logging_test_1.1_2f4dbc304a98d4bf_.log 2025-09-07T09:09:47.2630395Z 2025-09-07T09:09:51.0202845Z Running cpp/c10_logging_test 1/1 ... [2025-09-07 09:09:51.013533] 2025-09-07T09:09:51.0203266Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:09:51.0212128Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_logging_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-bcf1f142cf3e1b92.xml', '-x', '--reruns=2'] ... [2025-09-07 09:09:51.013533] 2025-09-07T09:09:52.5435128Z 2025-09-07T09:09:52.5435959Z cpp/c10_logging_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_logging_test_1.1_5c7affc8aabcbdba_.log 2025-09-07T09:09:52.5436882Z 2025-09-07T09:09:53.1471208Z Running test batch 'tests to run' cost 7.33 seconds 2025-09-07T09:09:53.1477982Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:09:53.1478602Z Uploading artifacts took 0.00 seconds 2025-09-07T09:09:53.6533753Z 2025-09-07T09:09:53.6534549Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:09:53.6534997Z echo "c10_logging_test" failed with exit code 0 2025-09-07T09:09:53.6535308Z goto fail 2025-09-07T09:09:53.6542024Z ) 2025-09-07T09:09:53.6542149Z 2025-09-07T09:09:53.6542359Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:09:53.6542802Z echo "c10_logging_test" failed with exit code 0 2025-09-07T09:09:53.6543096Z goto fail 2025-09-07T09:09:53.6543266Z ) 2025-09-07T09:09:53.6543358Z 2025-09-07T09:09:53.6543509Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:09:53.6545064Z 2025-09-07T09:09:53.6545251Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:09:53.6545972Z call :libtorch_check "c10_Metaprogramming_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-09-07T09:09:53.6546665Z if errorlevel 1 goto fail 2025-09-07T09:09:53.6546888Z ) 2025-09-07T09:09:53.6557500Z 2025-09-07T09:09:53.6557926Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:09:53.6561823Z 2025-09-07T09:09:53.6562356Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:09:53.6564823Z 2025-09-07T09:09:53.6565228Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Metaprogramming_test" == "verify_api_visibility" goto :eof 2025-09-07T09:09:53.6566358Z 2025-09-07T09:09:53.6566913Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-09-07T09:09:53.6567965Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-09-07T09:09:53.6569104Z 2025-09-07T09:09:53.6569524Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Metaprogramming_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:09:53.6570298Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Metaprogramming_test.exe" 2025-09-07T09:09:53.6570803Z goto :eof 2025-09-07T09:09:53.6570976Z ) 2025-09-07T09:09:53.6571068Z 2025-09-07T09:09:53.6571451Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Metaprogramming_test" 2025-09-07T09:09:59.3679252Z Found test times from artifacts 2025-09-07T09:09:59.4502737Z Found test times from artifacts 2025-09-07T09:09:59.4526864Z Running all tests 2025-09-07T09:09:59.4532651Z Running parallel tests on 3 processes 2025-09-07T09:09:59.4532984Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:09:59.4533245Z Serial tests (0): 2025-09-07T09:09:59.4533455Z Parallel tests (1): 2025-09-07T09:09:59.4533695Z cpp/c10_Metaprogramming_test 1/1 2025-09-07T09:09:59.4533979Z Name: excluded (est. time: 0.0min) 2025-09-07T09:09:59.4534218Z Serial tests (0): 2025-09-07T09:09:59.4534433Z Parallel tests (0): 2025-09-07T09:09:59.4536003Z Running cpp/c10_Metaprogramming_test 1/1 ... [2025-09-07 09:09:59.447348] 2025-09-07T09:09:59.4536428Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:09:59.4545825Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Metaprogramming_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b2acf70c070240e9.xml', '-x', '--reruns=2'] ... [2025-09-07 09:09:59.447348] 2025-09-07T09:09:59.4547539Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:10:00.9288745Z 2025-09-07T09:10:00.9289653Z cpp/c10_Metaprogramming_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Metaprogramming_test_1.1_eceda42ee9f9374a_.log 2025-09-07T09:10:00.9290553Z 2025-09-07T09:10:04.6408680Z Running cpp/c10_Metaprogramming_test 1/1 ... [2025-09-07 09:10:04.640555] 2025-09-07T09:10:04.6409134Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:10:04.6417837Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Metaprogramming_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-cf7fc4607f8f2fde.xml', '-x', '--reruns=2'] ... [2025-09-07 09:10:04.640555] 2025-09-07T09:10:06.1845499Z 2025-09-07T09:10:06.1846614Z cpp/c10_Metaprogramming_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Metaprogramming_test_1.1_0c3daabb416bcf90_.log 2025-09-07T09:10:06.1847389Z 2025-09-07T09:10:06.8174943Z Running test batch 'tests to run' cost 7.37 seconds 2025-09-07T09:10:06.8181101Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:10:06.8181550Z Uploading artifacts took 0.00 seconds 2025-09-07T09:10:07.3082460Z 2025-09-07T09:10:07.3083132Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:10:07.3083807Z echo "c10_Metaprogramming_test" failed with exit code 0 2025-09-07T09:10:07.3084129Z goto fail 2025-09-07T09:10:07.3084298Z ) 2025-09-07T09:10:07.3084401Z 2025-09-07T09:10:07.3084596Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:10:07.3085035Z echo "c10_Metaprogramming_test" failed with exit code 0 2025-09-07T09:10:07.3085356Z goto fail 2025-09-07T09:10:07.3085532Z ) 2025-09-07T09:10:07.3085626Z 2025-09-07T09:10:07.3085771Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:10:07.3093906Z 2025-09-07T09:10:07.3094150Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:10:07.3094865Z call :libtorch_check "c10_NetworkFlow_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-09-07T09:10:07.3095513Z if errorlevel 1 goto fail 2025-09-07T09:10:07.3095738Z ) 2025-09-07T09:10:07.3104583Z 2025-09-07T09:10:07.3104952Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:10:07.3108731Z 2025-09-07T09:10:07.3109191Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:10:07.3111659Z 2025-09-07T09:10:07.3112149Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_NetworkFlow_test" == "verify_api_visibility" goto :eof 2025-09-07T09:10:07.3113147Z 2025-09-07T09:10:07.3113709Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-09-07T09:10:07.3114631Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-09-07T09:10:07.3115788Z 2025-09-07T09:10:07.3116274Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_NetworkFlow_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:10:07.3117022Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_NetworkFlow_test.exe" 2025-09-07T09:10:07.3117509Z goto :eof 2025-09-07T09:10:07.3117697Z ) 2025-09-07T09:10:07.3117786Z 2025-09-07T09:10:07.3118280Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_NetworkFlow_test" 2025-09-07T09:10:12.9685632Z Found test times from artifacts 2025-09-07T09:10:13.0450288Z Found test times from artifacts 2025-09-07T09:10:13.0475428Z Running all tests 2025-09-07T09:10:13.0480645Z Running parallel tests on 3 processes 2025-09-07T09:10:13.0481026Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:10:13.0481303Z Serial tests (0): 2025-09-07T09:10:13.0481614Z Parallel tests (1): 2025-09-07T09:10:13.0481845Z cpp/c10_NetworkFlow_test 1/1 2025-09-07T09:10:13.0482172Z Name: excluded (est. time: 0.0min) 2025-09-07T09:10:13.0482425Z Serial tests (0): 2025-09-07T09:10:13.0482639Z Parallel tests (0): 2025-09-07T09:10:13.0484308Z Running cpp/c10_NetworkFlow_test 1/1 ... [2025-09-07 09:10:13.039286] 2025-09-07T09:10:13.0484701Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:10:13.0493965Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_NetworkFlow_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4965841355fc1ba2.xml', '-x', '--reruns=2'] ... [2025-09-07 09:10:13.039286] 2025-09-07T09:10:13.0495648Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:10:14.5354171Z 2025-09-07T09:10:14.5355097Z cpp/c10_NetworkFlow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_NetworkFlow_test_1.1_364b94b15c4f74fa_.log 2025-09-07T09:10:14.5355771Z 2025-09-07T09:10:18.2111540Z Running cpp/c10_NetworkFlow_test 1/1 ... [2025-09-07 09:10:18.210616] 2025-09-07T09:10:18.2112142Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:10:18.2121198Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_NetworkFlow_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2672502eb9a8936e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:10:18.211815] 2025-09-07T09:10:19.7181966Z 2025-09-07T09:10:19.7182893Z cpp/c10_NetworkFlow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_NetworkFlow_test_1.1_a949d94b778ff496_.log 2025-09-07T09:10:19.7183594Z 2025-09-07T09:10:20.3537689Z Running test batch 'tests to run' cost 7.31 seconds 2025-09-07T09:10:20.3544123Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:10:20.3544569Z Uploading artifacts took 0.00 seconds 2025-09-07T09:10:20.8401262Z 2025-09-07T09:10:20.8401829Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:10:20.8402277Z echo "c10_NetworkFlow_test" failed with exit code 0 2025-09-07T09:10:20.8402595Z goto fail 2025-09-07T09:10:20.8402759Z ) 2025-09-07T09:10:20.8402882Z 2025-09-07T09:10:20.8403071Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:10:20.8403490Z echo "c10_NetworkFlow_test" failed with exit code 0 2025-09-07T09:10:20.8403805Z goto fail 2025-09-07T09:10:20.8403979Z ) 2025-09-07T09:10:20.8404074Z 2025-09-07T09:10:20.8404267Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:10:20.8412048Z 2025-09-07T09:10:20.8412295Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:10:20.8412981Z call :libtorch_check "c10_optional_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-09-07T09:10:20.8413614Z if errorlevel 1 goto fail 2025-09-07T09:10:20.8413843Z ) 2025-09-07T09:10:20.8423085Z 2025-09-07T09:10:20.8423468Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:10:20.8427261Z 2025-09-07T09:10:20.8428195Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:10:20.8430119Z 2025-09-07T09:10:20.8430576Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_optional_test" == "verify_api_visibility" goto :eof 2025-09-07T09:10:20.8431507Z 2025-09-07T09:10:20.8432114Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-09-07T09:10:20.8433202Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-09-07T09:10:20.8434429Z 2025-09-07T09:10:20.8434853Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_optional_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:10:20.8435563Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_optional_test.exe" 2025-09-07T09:10:20.8436090Z goto :eof 2025-09-07T09:10:20.8436306Z ) 2025-09-07T09:10:20.8436405Z 2025-09-07T09:10:20.8436765Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_optional_test" 2025-09-07T09:10:26.5634365Z Found test times from artifacts 2025-09-07T09:10:26.6404517Z Found test times from artifacts 2025-09-07T09:10:26.6429154Z Running all tests 2025-09-07T09:10:26.6434820Z Running parallel tests on 3 processes 2025-09-07T09:10:26.6435131Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:10:26.6435404Z Serial tests (0): 2025-09-07T09:10:26.6435672Z Parallel tests (1): 2025-09-07T09:10:26.6435891Z cpp/c10_optional_test 1/1 2025-09-07T09:10:26.6436186Z Name: excluded (est. time: 0.0min) 2025-09-07T09:10:26.6436431Z Serial tests (0): 2025-09-07T09:10:26.6436771Z Parallel tests (0): 2025-09-07T09:10:26.6438569Z Running cpp/c10_optional_test 1/1 ... [2025-09-07 09:10:26.643594] 2025-09-07T09:10:26.6438959Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:10:26.6448369Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_optional_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-41fdd2259ff7ebe0.xml', '-x', '--reruns=2'] ... [2025-09-07 09:10:26.644165] 2025-09-07T09:10:26.6450063Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:10:28.1053990Z 2025-09-07T09:10:28.1055107Z cpp/c10_optional_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_optional_test_1.1_b8ef78e7c162f0db_.log 2025-09-07T09:10:28.1055729Z 2025-09-07T09:10:31.7692496Z Running cpp/c10_optional_test 1/1 ... [2025-09-07 09:10:31.769075] 2025-09-07T09:10:31.7692953Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:10:31.7701542Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_optional_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-509670d5f2cce8da.xml', '-x', '--reruns=2'] ... [2025-09-07 09:10:31.769075] 2025-09-07T09:10:33.2939783Z 2025-09-07T09:10:33.2940649Z cpp/c10_optional_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_optional_test_1.1_7f865d5c9f6af234_.log 2025-09-07T09:10:33.2941620Z 2025-09-07T09:10:33.8970272Z Running test batch 'tests to run' cost 7.25 seconds 2025-09-07T09:10:33.8976901Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:10:33.8977397Z Uploading artifacts took 0.00 seconds 2025-09-07T09:10:34.3952889Z 2025-09-07T09:10:34.3953401Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:10:34.3953849Z echo "c10_optional_test" failed with exit code 0 2025-09-07T09:10:34.3954159Z goto fail 2025-09-07T09:10:34.3954323Z ) 2025-09-07T09:10:34.3954589Z 2025-09-07T09:10:34.3954778Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:10:34.3955191Z echo "c10_optional_test" failed with exit code 0 2025-09-07T09:10:34.3955499Z goto fail 2025-09-07T09:10:34.3955668Z ) 2025-09-07T09:10:34.3955765Z 2025-09-07T09:10:34.3955918Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:10:34.3963735Z 2025-09-07T09:10:34.3963993Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:10:34.3964930Z call :libtorch_check "c10_ordered_preserving_dict_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-09-07T09:10:34.3965661Z if errorlevel 1 goto fail 2025-09-07T09:10:34.3965898Z ) 2025-09-07T09:10:34.3973982Z 2025-09-07T09:10:34.3974345Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:10:34.3978135Z 2025-09-07T09:10:34.3978658Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:10:34.3980971Z 2025-09-07T09:10:34.3981527Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ordered_preserving_dict_test" == "verify_api_visibility" goto :eof 2025-09-07T09:10:34.3982497Z 2025-09-07T09:10:34.3983065Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-09-07T09:10:34.3984093Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-09-07T09:10:34.3985128Z 2025-09-07T09:10:34.3985550Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ordered_preserving_dict_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:10:34.3986449Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ordered_preserving_dict_test.exe" 2025-09-07T09:10:34.3986993Z goto :eof 2025-09-07T09:10:34.3987172Z ) 2025-09-07T09:10:34.3987267Z 2025-09-07T09:10:34.3987670Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ordered_preserving_dict_test" 2025-09-07T09:10:40.0128928Z Found test times from artifacts 2025-09-07T09:10:40.0894468Z Found test times from artifacts 2025-09-07T09:10:40.0919529Z Running all tests 2025-09-07T09:10:40.0923920Z Running parallel tests on 3 processes 2025-09-07T09:10:40.0924326Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:10:40.0924609Z Serial tests (0): 2025-09-07T09:10:40.0924842Z Parallel tests (1): 2025-09-07T09:10:40.0925083Z cpp/c10_ordered_preserving_dict_test 1/1 2025-09-07T09:10:40.0925377Z Name: excluded (est. time: 0.0min) 2025-09-07T09:10:40.0925632Z Serial tests (0): 2025-09-07T09:10:40.0925831Z Parallel tests (0): 2025-09-07T09:10:40.0927292Z Running cpp/c10_ordered_preserving_dict_test 1/1 ... [2025-09-07 09:10:40.092465] 2025-09-07T09:10:40.0927744Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:10:40.0937322Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ordered_preserving_dict_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-31b014026a5b026a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:10:40.093561] 2025-09-07T09:10:40.0939073Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:10:41.5700188Z 2025-09-07T09:10:41.5701141Z cpp/c10_ordered_preserving_dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ordered_preserving_dict_test_1.1_1364cb2599a40f29_.log 2025-09-07T09:10:41.5701893Z 2025-09-07T09:10:45.3546300Z Running cpp/c10_ordered_preserving_dict_test 1/1 ... [2025-09-07 09:10:45.353591] 2025-09-07T09:10:45.3546791Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:10:45.3555531Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ordered_preserving_dict_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4cc03ea7c533ba04.xml', '-x', '--reruns=2'] ... [2025-09-07 09:10:45.353591] 2025-09-07T09:10:46.9303344Z 2025-09-07T09:10:46.9304579Z cpp/c10_ordered_preserving_dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ordered_preserving_dict_test_1.1_937593b443151a1e_.log 2025-09-07T09:10:46.9305315Z 2025-09-07T09:10:47.5880304Z Running test batch 'tests to run' cost 7.49 seconds 2025-09-07T09:10:47.5881167Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:10:47.5881634Z Uploading artifacts took 0.00 seconds 2025-09-07T09:10:48.0696344Z 2025-09-07T09:10:48.0696982Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:10:48.0697494Z echo "c10_ordered_preserving_dict_test" failed with exit code 0 2025-09-07T09:10:48.0697855Z goto fail 2025-09-07T09:10:48.0698028Z ) 2025-09-07T09:10:48.0698131Z 2025-09-07T09:10:48.0698328Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:10:48.0698783Z echo "c10_ordered_preserving_dict_test" failed with exit code 0 2025-09-07T09:10:48.0699152Z goto fail 2025-09-07T09:10:48.0699316Z ) 2025-09-07T09:10:48.0699418Z 2025-09-07T09:10:48.0699573Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:10:48.0706357Z 2025-09-07T09:10:48.0706557Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:10:48.0707364Z call :libtorch_check "c10_registry_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-09-07T09:10:48.0707991Z if errorlevel 1 goto fail 2025-09-07T09:10:48.0708216Z ) 2025-09-07T09:10:48.0717532Z 2025-09-07T09:10:48.0717887Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:10:48.0721811Z 2025-09-07T09:10:48.0722478Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:10:48.0724684Z 2025-09-07T09:10:48.0725115Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_registry_test" == "verify_api_visibility" goto :eof 2025-09-07T09:10:48.0726181Z 2025-09-07T09:10:48.0726735Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-09-07T09:10:48.0727719Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-09-07T09:10:48.0728820Z 2025-09-07T09:10:48.0729234Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_registry_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:10:48.0729949Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_registry_test.exe" 2025-09-07T09:10:48.0730429Z goto :eof 2025-09-07T09:10:48.0730596Z ) 2025-09-07T09:10:48.0730698Z 2025-09-07T09:10:48.0731054Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_registry_test" 2025-09-07T09:10:53.8057836Z Found test times from artifacts 2025-09-07T09:10:53.8949263Z Found test times from artifacts 2025-09-07T09:10:53.8976115Z Running all tests 2025-09-07T09:10:53.8981828Z Running parallel tests on 3 processes 2025-09-07T09:10:53.8982256Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:10:53.8982520Z Serial tests (0): 2025-09-07T09:10:53.8982779Z Parallel tests (1): 2025-09-07T09:10:53.8983018Z cpp/c10_registry_test 1/1 2025-09-07T09:10:53.8983302Z Name: excluded (est. time: 0.0min) 2025-09-07T09:10:53.8983553Z Serial tests (0): 2025-09-07T09:10:53.8983919Z Parallel tests (0): 2025-09-07T09:10:53.8985832Z Running cpp/c10_registry_test 1/1 ... [2025-09-07 09:10:53.898511] 2025-09-07T09:10:53.8986252Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:10:53.8995769Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_registry_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-904b5f9edb281a7a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:10:53.899414] 2025-09-07T09:10:53.8997610Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:10:55.3694333Z 2025-09-07T09:10:55.3695180Z cpp/c10_registry_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_registry_test_1.1_f0695bf16c80b3ec_.log 2025-09-07T09:10:55.3696206Z 2025-09-07T09:10:59.0937811Z Running cpp/c10_registry_test 1/1 ... [2025-09-07 09:10:59.089805] 2025-09-07T09:10:59.0938237Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:10:59.0946904Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_registry_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1723a4003c0f5971.xml', '-x', '--reruns=2'] ... [2025-09-07 09:10:59.089805] 2025-09-07T09:11:00.5754813Z 2025-09-07T09:11:00.5755652Z cpp/c10_registry_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_registry_test_1.1_05098f14d15aa24d_.log 2025-09-07T09:11:00.5756462Z 2025-09-07T09:11:01.2302382Z Running test batch 'tests to run' cost 7.33 seconds 2025-09-07T09:11:01.2308641Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:11:01.2309148Z Uploading artifacts took 0.00 seconds 2025-09-07T09:11:01.7206156Z 2025-09-07T09:11:01.7206804Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:11:01.7207252Z echo "c10_registry_test" failed with exit code 0 2025-09-07T09:11:01.7207553Z goto fail 2025-09-07T09:11:01.7207735Z ) 2025-09-07T09:11:01.7207834Z 2025-09-07T09:11:01.7208022Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:11:01.7208438Z echo "c10_registry_test" failed with exit code 0 2025-09-07T09:11:01.7208757Z goto fail 2025-09-07T09:11:01.7208920Z ) 2025-09-07T09:11:01.7209016Z 2025-09-07T09:11:01.7209183Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:11:01.7216343Z 2025-09-07T09:11:01.7216598Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:11:01.7217263Z call :libtorch_check "c10_Scalar_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-09-07T09:11:01.7217876Z if errorlevel 1 goto fail 2025-09-07T09:11:01.7218100Z ) 2025-09-07T09:11:01.7227059Z 2025-09-07T09:11:01.7227395Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:11:01.7231397Z 2025-09-07T09:11:01.7231870Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:11:01.7234281Z 2025-09-07T09:11:01.7234759Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Scalar_test" == "verify_api_visibility" goto :eof 2025-09-07T09:11:01.7235813Z 2025-09-07T09:11:01.7236328Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-09-07T09:11:01.7237231Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-09-07T09:11:01.7238462Z 2025-09-07T09:11:01.7239014Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Scalar_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:11:01.7239721Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Scalar_test.exe" 2025-09-07T09:11:01.7240193Z goto :eof 2025-09-07T09:11:01.7240357Z ) 2025-09-07T09:11:01.7240454Z 2025-09-07T09:11:01.7240811Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Scalar_test" 2025-09-07T09:11:07.3417841Z Found test times from artifacts 2025-09-07T09:11:07.4182134Z Found test times from artifacts 2025-09-07T09:11:07.4206771Z Running all tests 2025-09-07T09:11:07.4212287Z Running parallel tests on 3 processes 2025-09-07T09:11:07.4212608Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:11:07.4212878Z Serial tests (0): 2025-09-07T09:11:07.4213099Z Parallel tests (1): 2025-09-07T09:11:07.4213309Z cpp/c10_Scalar_test 1/1 2025-09-07T09:11:07.4213550Z Name: excluded (est. time: 0.0min) 2025-09-07T09:11:07.4213831Z Serial tests (0): 2025-09-07T09:11:07.4214039Z Parallel tests (0): 2025-09-07T09:11:07.4215796Z Running cpp/c10_Scalar_test 1/1 ... [2025-09-07 09:11:07.421403] 2025-09-07T09:11:07.4216168Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:11:07.4226295Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Scalar_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-66788795b0de90f9.xml', '-x', '--reruns=2'] ... [2025-09-07 09:11:07.421974] 2025-09-07T09:11:07.4227959Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:11:08.8842041Z 2025-09-07T09:11:08.8843093Z cpp/c10_Scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Scalar_test_1.1_6a4ebbed2579ad5e_.log 2025-09-07T09:11:08.8843700Z 2025-09-07T09:11:12.6319553Z Running cpp/c10_Scalar_test 1/1 ... [2025-09-07 09:11:12.630422] 2025-09-07T09:11:12.6319979Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:11:12.6328934Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Scalar_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-922de6a9f320ea68.xml', '-x', '--reruns=2'] ... [2025-09-07 09:11:12.630422] 2025-09-07T09:11:14.1137818Z 2025-09-07T09:11:14.1138603Z cpp/c10_Scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Scalar_test_1.1_b555541da131bea1_.log 2025-09-07T09:11:14.1139521Z 2025-09-07T09:11:14.7940206Z Running test batch 'tests to run' cost 7.37 seconds 2025-09-07T09:11:14.7946534Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:11:14.7946990Z Uploading artifacts took 0.00 seconds 2025-09-07T09:11:15.2803877Z 2025-09-07T09:11:15.2804553Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:11:15.2804991Z echo "c10_Scalar_test" failed with exit code 0 2025-09-07T09:11:15.2805286Z goto fail 2025-09-07T09:11:15.2805449Z ) 2025-09-07T09:11:15.2805559Z 2025-09-07T09:11:15.2805744Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:11:15.2806142Z echo "c10_Scalar_test" failed with exit code 0 2025-09-07T09:11:15.2806436Z goto fail 2025-09-07T09:11:15.2806594Z ) 2025-09-07T09:11:15.2806721Z 2025-09-07T09:11:15.2807199Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:11:15.2814091Z 2025-09-07T09:11:15.2814321Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:11:15.2815054Z call :libtorch_check "c10_Semaphore_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-09-07T09:11:15.2815691Z if errorlevel 1 goto fail 2025-09-07T09:11:15.2815919Z ) 2025-09-07T09:11:15.2824616Z 2025-09-07T09:11:15.2824939Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:11:15.2828966Z 2025-09-07T09:11:15.2829571Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:11:15.2832077Z 2025-09-07T09:11:15.2832483Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Semaphore_test" == "verify_api_visibility" goto :eof 2025-09-07T09:11:15.2833511Z 2025-09-07T09:11:15.2834150Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-09-07T09:11:15.2835181Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-09-07T09:11:15.2873572Z 2025-09-07T09:11:15.2874123Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Semaphore_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:11:15.2874860Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Semaphore_test.exe" 2025-09-07T09:11:15.2875339Z goto :eof 2025-09-07T09:11:15.2875519Z ) 2025-09-07T09:11:15.2875616Z 2025-09-07T09:11:15.2875981Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Semaphore_test" 2025-09-07T09:11:20.9082861Z Found test times from artifacts 2025-09-07T09:11:20.9844713Z Found test times from artifacts 2025-09-07T09:11:20.9869456Z Running all tests 2025-09-07T09:11:20.9874612Z Running parallel tests on 3 processes 2025-09-07T09:11:20.9874953Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:11:20.9875222Z Serial tests (0): 2025-09-07T09:11:20.9875563Z Parallel tests (1): 2025-09-07T09:11:20.9875784Z cpp/c10_Semaphore_test 1/1 2025-09-07T09:11:20.9876112Z Name: excluded (est. time: 0.0min) 2025-09-07T09:11:20.9876406Z Serial tests (0): 2025-09-07T09:11:20.9876605Z Parallel tests (0): 2025-09-07T09:11:20.9878354Z Running cpp/c10_Semaphore_test 1/1 ... [2025-09-07 09:11:20.987629] 2025-09-07T09:11:20.9878730Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:11:20.9888116Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Semaphore_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b43e604ca72d7b21.xml', '-x', '--reruns=2'] ... [2025-09-07 09:11:20.988201] 2025-09-07T09:11:20.9889806Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:11:22.4717206Z 2025-09-07T09:11:22.4718050Z cpp/c10_Semaphore_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Semaphore_test_1.1_87ee6ea77833c2a3_.log 2025-09-07T09:11:22.4719064Z 2025-09-07T09:11:26.2380448Z Running cpp/c10_Semaphore_test 1/1 ... [2025-09-07 09:11:26.236116] 2025-09-07T09:11:26.2380885Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:11:26.2389347Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Semaphore_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c9e5ccb498dccd81.xml', '-x', '--reruns=2'] ... [2025-09-07 09:11:26.236116] 2025-09-07T09:11:27.7661910Z 2025-09-07T09:11:27.7662781Z cpp/c10_Semaphore_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Semaphore_test_1.1_2f23550c23fbc3c6_.log 2025-09-07T09:11:27.7663473Z 2025-09-07T09:11:28.4344332Z Running test batch 'tests to run' cost 7.44 seconds 2025-09-07T09:11:28.4351200Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:11:28.4351639Z Uploading artifacts took 0.00 seconds 2025-09-07T09:11:28.9226479Z 2025-09-07T09:11:28.9226984Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:11:28.9227422Z echo "c10_Semaphore_test" failed with exit code 0 2025-09-07T09:11:28.9227731Z goto fail 2025-09-07T09:11:28.9227897Z ) 2025-09-07T09:11:28.9228135Z 2025-09-07T09:11:28.9228360Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:11:28.9228779Z echo "c10_Semaphore_test" failed with exit code 0 2025-09-07T09:11:28.9229173Z goto fail 2025-09-07T09:11:28.9229347Z ) 2025-09-07T09:11:28.9229575Z 2025-09-07T09:11:28.9229853Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:11:28.9237256Z 2025-09-07T09:11:28.9237460Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:11:28.9238203Z call :libtorch_check "c10_SizesAndStrides_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-09-07T09:11:28.9238879Z if errorlevel 1 goto fail 2025-09-07T09:11:28.9239109Z ) 2025-09-07T09:11:28.9247563Z 2025-09-07T09:11:28.9247895Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:11:28.9251744Z 2025-09-07T09:11:28.9252234Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:11:28.9254635Z 2025-09-07T09:11:28.9255055Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SizesAndStrides_test" == "verify_api_visibility" goto :eof 2025-09-07T09:11:28.9256059Z 2025-09-07T09:11:28.9256634Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-09-07T09:11:28.9257687Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-09-07T09:11:28.9258663Z 2025-09-07T09:11:28.9259080Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SizesAndStrides_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:11:28.9259854Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SizesAndStrides_test.exe" 2025-09-07T09:11:28.9260358Z goto :eof 2025-09-07T09:11:28.9260535Z ) 2025-09-07T09:11:28.9260628Z 2025-09-07T09:11:28.9261013Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_SizesAndStrides_test" 2025-09-07T09:11:34.5443910Z Found test times from artifacts 2025-09-07T09:11:34.6208661Z Found test times from artifacts 2025-09-07T09:11:34.6232723Z Running all tests 2025-09-07T09:11:34.6237829Z Running parallel tests on 3 processes 2025-09-07T09:11:34.6238179Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:11:34.6238474Z Serial tests (0): 2025-09-07T09:11:34.6238679Z Parallel tests (1): 2025-09-07T09:11:34.6238916Z cpp/c10_SizesAndStrides_test 1/1 2025-09-07T09:11:34.6239181Z Name: excluded (est. time: 0.0min) 2025-09-07T09:11:34.6239439Z Serial tests (0): 2025-09-07T09:11:34.6239632Z Parallel tests (0): 2025-09-07T09:11:34.6241459Z Running cpp/c10_SizesAndStrides_test 1/1 ... [2025-09-07 09:11:34.619525] 2025-09-07T09:11:34.6241874Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:11:34.6251045Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_SizesAndStrides_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-becc55da78432467.xml', '-x', '--reruns=2'] ... [2025-09-07 09:11:34.619525] 2025-09-07T09:11:34.6252850Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:11:36.1226190Z 2025-09-07T09:11:36.1227279Z cpp/c10_SizesAndStrides_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_SizesAndStrides_test_1.1_df4cd1264324b71c_.log 2025-09-07T09:11:36.1227955Z 2025-09-07T09:11:39.8738006Z Running cpp/c10_SizesAndStrides_test 1/1 ... [2025-09-07 09:11:39.859298] 2025-09-07T09:11:39.8738473Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:11:39.8746951Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_SizesAndStrides_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8e82468feab06db7.xml', '-x', '--reruns=2'] ... [2025-09-07 09:11:39.859298] 2025-09-07T09:11:41.4179098Z 2025-09-07T09:11:41.4179982Z cpp/c10_SizesAndStrides_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_SizesAndStrides_test_1.1_0f4ebd9d4ad047a2_.log 2025-09-07T09:11:41.4180874Z 2025-09-07T09:11:42.0514998Z Running test batch 'tests to run' cost 7.43 seconds 2025-09-07T09:11:42.0522447Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:11:42.0522915Z Uploading artifacts took 0.00 seconds 2025-09-07T09:11:42.5350607Z 2025-09-07T09:11:42.5351183Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:11:42.5351651Z echo "c10_SizesAndStrides_test" failed with exit code 0 2025-09-07T09:11:42.5351989Z goto fail 2025-09-07T09:11:42.5352175Z ) 2025-09-07T09:11:42.5352266Z 2025-09-07T09:11:42.5352451Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:11:42.5352920Z echo "c10_SizesAndStrides_test" failed with exit code 0 2025-09-07T09:11:42.5353228Z goto fail 2025-09-07T09:11:42.5353397Z ) 2025-09-07T09:11:42.5353489Z 2025-09-07T09:11:42.5353640Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:11:42.5360634Z 2025-09-07T09:11:42.5361129Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:11:42.5361886Z call :libtorch_check "c10_small_vector_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-09-07T09:11:42.5362540Z if errorlevel 1 goto fail 2025-09-07T09:11:42.5362760Z ) 2025-09-07T09:11:42.5371168Z 2025-09-07T09:11:42.5371521Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:11:42.5375216Z 2025-09-07T09:11:42.5375676Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:11:42.5377996Z 2025-09-07T09:11:42.5378514Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_small_vector_test" == "verify_api_visibility" goto :eof 2025-09-07T09:11:42.5379504Z 2025-09-07T09:11:42.5380034Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-09-07T09:11:42.5380988Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-09-07T09:11:42.5382121Z 2025-09-07T09:11:42.5382522Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_small_vector_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:11:42.5383256Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_small_vector_test.exe" 2025-09-07T09:11:42.5383820Z goto :eof 2025-09-07T09:11:42.5384050Z ) 2025-09-07T09:11:42.5384276Z 2025-09-07T09:11:42.5384655Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_small_vector_test" 2025-09-07T09:11:48.2490991Z Found test times from artifacts 2025-09-07T09:11:48.3252648Z Found test times from artifacts 2025-09-07T09:11:48.3276174Z Running all tests 2025-09-07T09:11:48.3281724Z Running parallel tests on 3 processes 2025-09-07T09:11:48.3282073Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:11:48.3282337Z Serial tests (0): 2025-09-07T09:11:48.3282560Z Parallel tests (1): 2025-09-07T09:11:48.3282929Z cpp/c10_small_vector_test 1/1 2025-09-07T09:11:48.3283200Z Name: excluded (est. time: 0.0min) 2025-09-07T09:11:48.3283449Z Serial tests (0): 2025-09-07T09:11:48.3283658Z Parallel tests (0): 2025-09-07T09:11:48.3284949Z Running cpp/c10_small_vector_test 1/1 ... [2025-09-07 09:11:48.328072] 2025-09-07T09:11:48.3285347Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:11:48.3294888Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_small_vector_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5f94e41a4c430f6a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:11:48.329214] 2025-09-07T09:11:48.3296652Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:11:49.8247983Z 2025-09-07T09:11:49.8248865Z cpp/c10_small_vector_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_small_vector_test_1.1_b9981362f151625d_.log 2025-09-07T09:11:49.8249666Z 2025-09-07T09:11:53.5629945Z Running cpp/c10_small_vector_test 1/1 ... [2025-09-07 09:11:53.562762] 2025-09-07T09:11:53.5630372Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:11:53.5639950Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_small_vector_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3a05c911af0ca36a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:11:53.563335] 2025-09-07T09:11:55.9852697Z 2025-09-07T09:11:55.9854075Z cpp/c10_small_vector_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_small_vector_test_1.1_9dd79d59adfa9a19_.log 2025-09-07T09:11:55.9859454Z 2025-09-07T09:11:56.6024950Z Running test batch 'tests to run' cost 8.27 seconds 2025-09-07T09:11:56.6031603Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:11:56.6032051Z Uploading artifacts took 0.00 seconds 2025-09-07T09:11:57.0926671Z 2025-09-07T09:11:57.0927253Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:11:57.0927715Z echo "c10_small_vector_test" failed with exit code 0 2025-09-07T09:11:57.0928035Z goto fail 2025-09-07T09:11:57.0928249Z ) 2025-09-07T09:11:57.0928366Z 2025-09-07T09:11:57.0928559Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:11:57.0929039Z echo "c10_small_vector_test" failed with exit code 0 2025-09-07T09:11:57.0929350Z goto fail 2025-09-07T09:11:57.0929515Z ) 2025-09-07T09:11:57.0929617Z 2025-09-07T09:11:57.0929764Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:11:57.0937195Z 2025-09-07T09:11:57.0937422Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:11:57.0938065Z call :libtorch_check "c10_ssize_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-09-07T09:11:57.0938671Z if errorlevel 1 goto fail 2025-09-07T09:11:57.0938881Z ) 2025-09-07T09:11:57.0947947Z 2025-09-07T09:11:57.0948327Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:11:57.0952170Z 2025-09-07T09:11:57.0952664Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:11:57.0955176Z 2025-09-07T09:11:57.0955661Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ssize_test" == "verify_api_visibility" goto :eof 2025-09-07T09:11:57.0956906Z 2025-09-07T09:11:57.0957535Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-09-07T09:11:57.0958669Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-09-07T09:11:57.0959632Z 2025-09-07T09:11:57.0960023Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ssize_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:11:57.0960711Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ssize_test.exe" 2025-09-07T09:11:57.0961188Z goto :eof 2025-09-07T09:11:57.0961352Z ) 2025-09-07T09:11:57.0961452Z 2025-09-07T09:11:57.0962304Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ssize_test" 2025-09-07T09:12:02.6861286Z Found test times from artifacts 2025-09-07T09:12:02.7628956Z Found test times from artifacts 2025-09-07T09:12:02.7653637Z Running all tests 2025-09-07T09:12:02.7658683Z Running parallel tests on 3 processes 2025-09-07T09:12:02.7659106Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:12:02.7659374Z Serial tests (0): 2025-09-07T09:12:02.7659584Z Parallel tests (1): 2025-09-07T09:12:02.7659806Z cpp/c10_ssize_test 1/1 2025-09-07T09:12:02.7660046Z Name: excluded (est. time: 0.0min) 2025-09-07T09:12:02.7660288Z Serial tests (0): 2025-09-07T09:12:02.7660484Z Parallel tests (0): 2025-09-07T09:12:02.7662354Z Running cpp/c10_ssize_test 1/1 ... [2025-09-07 09:12:02.765875] 2025-09-07T09:12:02.7662710Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:12:02.7672448Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ssize_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-664d262991f5fce9.xml', '-x', '--reruns=2'] ... [2025-09-07 09:12:02.767044] 2025-09-07T09:12:02.7674224Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:12:04.2450859Z 2025-09-07T09:12:04.2451765Z cpp/c10_ssize_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ssize_test_1.1_15b6e9ebc9b96a70_.log 2025-09-07T09:12:04.2453010Z 2025-09-07T09:12:07.9116720Z Running cpp/c10_ssize_test 1/1 ... [2025-09-07 09:12:07.906168] 2025-09-07T09:12:07.9117132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:12:07.9125783Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ssize_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-23fdaeaa73413d17.xml', '-x', '--reruns=2'] ... [2025-09-07 09:12:07.906168] 2025-09-07T09:12:09.4081553Z 2025-09-07T09:12:09.4082684Z cpp/c10_ssize_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ssize_test_1.1_ed566397430e8088_.log 2025-09-07T09:12:09.4083301Z 2025-09-07T09:12:10.0609301Z Running test batch 'tests to run' cost 7.29 seconds 2025-09-07T09:12:10.0617029Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:12:10.0617501Z Uploading artifacts took 0.00 seconds 2025-09-07T09:12:10.5510801Z 2025-09-07T09:12:10.5511493Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:12:10.5511943Z echo "c10_ssize_test" failed with exit code 0 2025-09-07T09:12:10.5512233Z goto fail 2025-09-07T09:12:10.5512402Z ) 2025-09-07T09:12:10.5512503Z 2025-09-07T09:12:10.5512715Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:12:10.5513136Z echo "c10_ssize_test" failed with exit code 0 2025-09-07T09:12:10.5513413Z goto fail 2025-09-07T09:12:10.5513584Z ) 2025-09-07T09:12:10.5513683Z 2025-09-07T09:12:10.5513840Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:12:10.5520815Z 2025-09-07T09:12:10.5521245Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:12:10.5522806Z call :libtorch_check "c10_StreamGuard_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-09-07T09:12:10.5523461Z if errorlevel 1 goto fail 2025-09-07T09:12:10.5523692Z ) 2025-09-07T09:12:10.5531258Z 2025-09-07T09:12:10.5531845Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:12:10.5535330Z 2025-09-07T09:12:10.5535783Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:12:10.5538235Z 2025-09-07T09:12:10.5538819Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_StreamGuard_test" == "verify_api_visibility" goto :eof 2025-09-07T09:12:10.5539757Z 2025-09-07T09:12:10.5540325Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-09-07T09:12:10.5541259Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-09-07T09:12:10.5542339Z 2025-09-07T09:12:10.5542734Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_StreamGuard_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:12:10.5543475Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_StreamGuard_test.exe" 2025-09-07T09:12:10.5543964Z goto :eof 2025-09-07T09:12:10.5544162Z ) 2025-09-07T09:12:10.5544260Z 2025-09-07T09:12:10.5544636Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_StreamGuard_test" 2025-09-07T09:12:16.2666998Z Found test times from artifacts 2025-09-07T09:12:16.3428047Z Found test times from artifacts 2025-09-07T09:12:16.3453053Z Running all tests 2025-09-07T09:12:16.3458165Z Running parallel tests on 3 processes 2025-09-07T09:12:16.3458567Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:12:16.3458883Z Serial tests (0): 2025-09-07T09:12:16.3459082Z Parallel tests (1): 2025-09-07T09:12:16.3459323Z cpp/c10_StreamGuard_test 1/1 2025-09-07T09:12:16.3459574Z Name: excluded (est. time: 0.0min) 2025-09-07T09:12:16.3459825Z Serial tests (0): 2025-09-07T09:12:16.3460025Z Parallel tests (0): 2025-09-07T09:12:16.3461750Z Running cpp/c10_StreamGuard_test 1/1 ... [2025-09-07 09:12:16.345850] 2025-09-07T09:12:16.3462147Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:12:16.3471450Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_StreamGuard_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f04d2becd50e7a78.xml', '-x', '--reruns=2'] ... [2025-09-07 09:12:16.346993] 2025-09-07T09:12:16.3473153Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:12:17.8088709Z 2025-09-07T09:12:17.8089719Z cpp/c10_StreamGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_StreamGuard_test_1.1_0435816c8bc3e8e8_.log 2025-09-07T09:12:17.8090446Z 2025-09-07T09:12:21.6190940Z Running cpp/c10_StreamGuard_test 1/1 ... [2025-09-07 09:12:21.617257] 2025-09-07T09:12:21.6191383Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:12:21.6199960Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_StreamGuard_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1d525961d66f2778.xml', '-x', '--reruns=2'] ... [2025-09-07 09:12:21.617257] 2025-09-07T09:12:23.0777289Z 2025-09-07T09:12:23.0778279Z cpp/c10_StreamGuard_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_StreamGuard_test_1.1_31786270a0ac1146_.log 2025-09-07T09:12:23.0778978Z 2025-09-07T09:12:23.6830192Z Running test batch 'tests to run' cost 7.33 seconds 2025-09-07T09:12:23.6836514Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:12:23.6836966Z Uploading artifacts took 0.00 seconds 2025-09-07T09:12:24.1757715Z 2025-09-07T09:12:24.1758295Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:12:24.1758752Z echo "c10_StreamGuard_test" failed with exit code 0 2025-09-07T09:12:24.1759058Z goto fail 2025-09-07T09:12:24.1759244Z ) 2025-09-07T09:12:24.1759498Z 2025-09-07T09:12:24.1759692Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:12:24.1760198Z echo "c10_StreamGuard_test" failed with exit code 0 2025-09-07T09:12:24.1760495Z goto fail 2025-09-07T09:12:24.1760674Z ) 2025-09-07T09:12:24.1760852Z 2025-09-07T09:12:24.1761094Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:12:24.1768417Z 2025-09-07T09:12:24.1768643Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:12:24.1769325Z call :libtorch_check "c10_string_util_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-09-07T09:12:24.1769967Z if errorlevel 1 goto fail 2025-09-07T09:12:24.1770195Z ) 2025-09-07T09:12:24.1779115Z 2025-09-07T09:12:24.1779493Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:12:24.1783222Z 2025-09-07T09:12:24.1783686Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:12:24.1786148Z 2025-09-07T09:12:24.1786628Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_util_test" == "verify_api_visibility" goto :eof 2025-09-07T09:12:24.1787699Z 2025-09-07T09:12:24.1788215Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-09-07T09:12:24.1789148Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-09-07T09:12:24.1790348Z 2025-09-07T09:12:24.1790748Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_util_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:12:24.1791483Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_util_test.exe" 2025-09-07T09:12:24.1791970Z goto :eof 2025-09-07T09:12:24.1792148Z ) 2025-09-07T09:12:24.1792241Z 2025-09-07T09:12:24.1792609Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_string_util_test" 2025-09-07T09:12:29.8659648Z Found test times from artifacts 2025-09-07T09:12:29.9434574Z Found test times from artifacts 2025-09-07T09:12:29.9459432Z Running all tests 2025-09-07T09:12:29.9464993Z Running parallel tests on 3 processes 2025-09-07T09:12:29.9465299Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:12:29.9465623Z Serial tests (0): 2025-09-07T09:12:29.9465834Z Parallel tests (1): 2025-09-07T09:12:29.9466105Z cpp/c10_string_util_test 1/1 2025-09-07T09:12:29.9466365Z Name: excluded (est. time: 0.0min) 2025-09-07T09:12:29.9466605Z Serial tests (0): 2025-09-07T09:12:29.9466806Z Parallel tests (0): 2025-09-07T09:12:29.9468638Z Running cpp/c10_string_util_test 1/1 ... [2025-09-07 09:12:29.946586] 2025-09-07T09:12:29.9469032Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:12:29.9478789Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_string_util_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2f0ea8b64c08beef.xml', '-x', '--reruns=2'] ... [2025-09-07 09:12:29.947705] 2025-09-07T09:12:29.9480502Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:12:31.4151054Z 2025-09-07T09:12:31.4152327Z cpp/c10_string_util_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_string_util_test_1.1_f22debdf7b5f5b21_.log 2025-09-07T09:12:31.4153102Z 2025-09-07T09:12:35.1687525Z Running cpp/c10_string_util_test 1/1 ... [2025-09-07 09:12:35.164939] 2025-09-07T09:12:35.1687946Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:12:35.1696729Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_string_util_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ff7fa817914e25e5.xml', '-x', '--reruns=2'] ... [2025-09-07 09:12:35.164939] 2025-09-07T09:12:36.7134899Z 2025-09-07T09:12:36.7135760Z cpp/c10_string_util_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_string_util_test_1.1_777fcf20908d745b_.log 2025-09-07T09:12:36.7136691Z 2025-09-07T09:12:37.3682350Z Running test batch 'tests to run' cost 7.42 seconds 2025-09-07T09:12:37.3688944Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:12:37.3689401Z Uploading artifacts took 0.00 seconds 2025-09-07T09:12:37.8510929Z 2025-09-07T09:12:37.8511923Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:12:37.8512688Z echo "c10_string_util_test" failed with exit code 0 2025-09-07T09:12:37.8513205Z goto fail 2025-09-07T09:12:37.8513375Z ) 2025-09-07T09:12:37.8513487Z 2025-09-07T09:12:37.8513690Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:12:37.8514121Z echo "c10_string_util_test" failed with exit code 0 2025-09-07T09:12:37.8514556Z goto fail 2025-09-07T09:12:37.8514729Z ) 2025-09-07T09:12:37.8515043Z 2025-09-07T09:12:37.8515484Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:12:37.8522977Z 2025-09-07T09:12:37.8523251Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:12:37.8523936Z call :libtorch_check "c10_string_view_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-09-07T09:12:37.8524587Z if errorlevel 1 goto fail 2025-09-07T09:12:37.8524807Z ) 2025-09-07T09:12:37.8533413Z 2025-09-07T09:12:37.8533783Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:12:37.8537646Z 2025-09-07T09:12:37.8538363Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:12:37.8540428Z 2025-09-07T09:12:37.8541019Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_view_test" == "verify_api_visibility" goto :eof 2025-09-07T09:12:37.8541932Z 2025-09-07T09:12:37.8542582Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-09-07T09:12:37.8543516Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-09-07T09:12:37.8544901Z 2025-09-07T09:12:37.8545515Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_string_view_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:12:37.8546281Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_string_view_test.exe" 2025-09-07T09:12:37.8547591Z goto :eof 2025-09-07T09:12:37.8547796Z ) 2025-09-07T09:12:37.8547895Z 2025-09-07T09:12:37.8548291Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_string_view_test" 2025-09-07T09:12:43.4619512Z Found test times from artifacts 2025-09-07T09:12:43.5376915Z Found test times from artifacts 2025-09-07T09:12:43.5400958Z Running all tests 2025-09-07T09:12:43.5406025Z Running parallel tests on 3 processes 2025-09-07T09:12:43.5406460Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:12:43.5406845Z Serial tests (0): 2025-09-07T09:12:43.5407044Z Parallel tests (1): 2025-09-07T09:12:43.5407286Z cpp/c10_string_view_test 1/1 2025-09-07T09:12:43.5407541Z Name: excluded (est. time: 0.0min) 2025-09-07T09:12:43.5407797Z Serial tests (0): 2025-09-07T09:12:43.5408008Z Parallel tests (0): 2025-09-07T09:12:43.5409744Z Running cpp/c10_string_view_test 1/1 ... [2025-09-07 09:12:43.533473] 2025-09-07T09:12:43.5410142Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:12:43.5419439Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_string_view_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-be7f08ee7a889e5c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:12:43.533473] 2025-09-07T09:12:43.5421133Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:12:44.9864117Z 2025-09-07T09:12:44.9865012Z cpp/c10_string_view_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_string_view_test_1.1_df0910be02f25342_.log 2025-09-07T09:12:44.9865854Z 2025-09-07T09:12:48.7139886Z Running cpp/c10_string_view_test 1/1 ... [2025-09-07 09:12:48.704813] 2025-09-07T09:12:48.7140317Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:12:48.7148905Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_string_view_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-080dbbfbac3599bc.xml', '-x', '--reruns=2'] ... [2025-09-07 09:12:48.704813] 2025-09-07T09:12:50.1701919Z 2025-09-07T09:12:50.1702907Z cpp/c10_string_view_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_string_view_test_1.1_28ab4d1dc15ac9cd_.log 2025-09-07T09:12:50.1703734Z 2025-09-07T09:12:50.7742987Z Running test batch 'tests to run' cost 7.24 seconds 2025-09-07T09:12:50.7749551Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:12:50.7749990Z Uploading artifacts took 0.00 seconds 2025-09-07T09:12:51.2686714Z 2025-09-07T09:12:51.2687353Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:12:51.2687818Z echo "c10_string_view_test" failed with exit code 0 2025-09-07T09:12:51.2688155Z goto fail 2025-09-07T09:12:51.2688319Z ) 2025-09-07T09:12:51.2688433Z 2025-09-07T09:12:51.2688621Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:12:51.2689038Z echo "c10_string_view_test" failed with exit code 0 2025-09-07T09:12:51.2689348Z goto fail 2025-09-07T09:12:51.2689521Z ) 2025-09-07T09:12:51.2689966Z 2025-09-07T09:12:51.2690486Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:12:51.2697141Z 2025-09-07T09:12:51.2697382Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:12:51.2698061Z call :libtorch_check "c10_SymInt_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-09-07T09:12:51.2698672Z if errorlevel 1 goto fail 2025-09-07T09:12:51.2698896Z ) 2025-09-07T09:12:51.2707338Z 2025-09-07T09:12:51.2707700Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:12:51.2711487Z 2025-09-07T09:12:51.2711946Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:12:51.2714352Z 2025-09-07T09:12:51.2714816Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SymInt_test" == "verify_api_visibility" goto :eof 2025-09-07T09:12:51.2715804Z 2025-09-07T09:12:51.2716472Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-09-07T09:12:51.2717376Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-09-07T09:12:51.2718402Z 2025-09-07T09:12:51.2718778Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_SymInt_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:12:51.2719481Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_SymInt_test.exe" 2025-09-07T09:12:51.2720033Z goto :eof 2025-09-07T09:12:51.2720213Z ) 2025-09-07T09:12:51.2720315Z 2025-09-07T09:12:51.2720740Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_SymInt_test" 2025-09-07T09:12:56.8352235Z Found test times from artifacts 2025-09-07T09:12:56.9123483Z Found test times from artifacts 2025-09-07T09:12:56.9148589Z Running all tests 2025-09-07T09:12:56.9168925Z Running parallel tests on 3 processes 2025-09-07T09:12:56.9169345Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:12:56.9169618Z Serial tests (0): 2025-09-07T09:12:56.9169818Z Parallel tests (1): 2025-09-07T09:12:56.9170049Z cpp/c10_SymInt_test 1/1 2025-09-07T09:12:56.9170292Z Name: excluded (est. time: 0.0min) 2025-09-07T09:12:56.9170542Z Serial tests (0): 2025-09-07T09:12:56.9170743Z Parallel tests (0): 2025-09-07T09:12:56.9172693Z Running cpp/c10_SymInt_test 1/1 ... [2025-09-07 09:12:56.916668] 2025-09-07T09:12:56.9173125Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:12:56.9182412Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_SymInt_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-bd82dc1993d56bc0.xml', '-x', '--reruns=2'] ... [2025-09-07 09:12:56.917271] 2025-09-07T09:12:56.9184330Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:12:58.4059393Z 2025-09-07T09:12:58.4060181Z cpp/c10_SymInt_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_SymInt_test_1.1_b4ce56dc9717c400_.log 2025-09-07T09:12:58.4061094Z 2025-09-07T09:13:02.0955592Z Running cpp/c10_SymInt_test 1/1 ... [2025-09-07 09:13:02.091408] 2025-09-07T09:13:02.0956040Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:13:02.0965283Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_SymInt_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-54e0b641f8a1f96d.xml', '-x', '--reruns=2'] ... [2025-09-07 09:13:02.091408] 2025-09-07T09:13:03.6098578Z 2025-09-07T09:13:03.6099374Z cpp/c10_SymInt_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_SymInt_test_1.1_33bf53044b115137_.log 2025-09-07T09:13:03.6100200Z 2025-09-07T09:13:04.2367433Z Running test batch 'tests to run' cost 7.32 seconds 2025-09-07T09:13:04.2374576Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:13:04.2375053Z Uploading artifacts took 0.00 seconds 2025-09-07T09:13:04.7454067Z 2025-09-07T09:13:04.7454717Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:13:04.7455161Z echo "c10_SymInt_test" failed with exit code 0 2025-09-07T09:13:04.7455493Z goto fail 2025-09-07T09:13:04.7455664Z ) 2025-09-07T09:13:04.7455762Z 2025-09-07T09:13:04.7455957Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:13:04.7456359Z echo "c10_SymInt_test" failed with exit code 0 2025-09-07T09:13:04.7456639Z goto fail 2025-09-07T09:13:04.7456799Z ) 2025-09-07T09:13:04.7456888Z 2025-09-07T09:13:04.7457040Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:13:04.7464088Z 2025-09-07T09:13:04.7464754Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:13:04.7465495Z call :libtorch_check "c10_Synchronized_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-09-07T09:13:04.7466157Z if errorlevel 1 goto fail 2025-09-07T09:13:04.7466375Z ) 2025-09-07T09:13:04.7474312Z 2025-09-07T09:13:04.7474677Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:13:04.7478434Z 2025-09-07T09:13:04.7478998Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:13:04.7481254Z 2025-09-07T09:13:04.7481771Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Synchronized_test" == "verify_api_visibility" goto :eof 2025-09-07T09:13:04.7482802Z 2025-09-07T09:13:04.7483405Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-09-07T09:13:04.7484353Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-09-07T09:13:04.7486016Z 2025-09-07T09:13:04.7486445Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_Synchronized_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:13:04.7487212Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_Synchronized_test.exe" 2025-09-07T09:13:04.7487715Z goto :eof 2025-09-07T09:13:04.7487890Z ) 2025-09-07T09:13:04.7487999Z 2025-09-07T09:13:04.7488372Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_Synchronized_test" 2025-09-07T09:13:10.4494256Z Found test times from artifacts 2025-09-07T09:13:10.5261204Z Found test times from artifacts 2025-09-07T09:13:10.5285235Z Running all tests 2025-09-07T09:13:10.5290708Z Running parallel tests on 3 processes 2025-09-07T09:13:10.5291075Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:13:10.5291356Z Serial tests (0): 2025-09-07T09:13:10.5291562Z Parallel tests (1): 2025-09-07T09:13:10.5291797Z cpp/c10_Synchronized_test 1/1 2025-09-07T09:13:10.5292061Z Name: excluded (est. time: 0.0min) 2025-09-07T09:13:10.5292314Z Serial tests (0): 2025-09-07T09:13:10.5292514Z Parallel tests (0): 2025-09-07T09:13:10.5294862Z Running cpp/c10_Synchronized_test 1/1 ... [2025-09-07 09:13:10.523827] 2025-09-07T09:13:10.5295275Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:13:10.5304170Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Synchronized_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4c92ed1f753f0676.xml', '-x', '--reruns=2'] ... [2025-09-07 09:13:10.529996] 2025-09-07T09:13:10.5306901Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:13:11.9999836Z 2025-09-07T09:13:12.0000814Z cpp/c10_Synchronized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Synchronized_test_1.1_10e273f25069d3dd_.log 2025-09-07T09:13:12.0001529Z 2025-09-07T09:13:15.7186160Z Running cpp/c10_Synchronized_test 1/1 ... [2025-09-07 09:13:15.713511] 2025-09-07T09:13:15.7186607Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:13:15.7195521Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_Synchronized_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0bc1c8ef568070e6.xml', '-x', '--reruns=2'] ... [2025-09-07 09:13:15.713511] 2025-09-07T09:13:17.1852781Z 2025-09-07T09:13:17.1853778Z cpp/c10_Synchronized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_Synchronized_test_1.1_1b1b0ad8794e4247_.log 2025-09-07T09:13:17.1854434Z 2025-09-07T09:13:17.8556259Z Running test batch 'tests to run' cost 7.33 seconds 2025-09-07T09:13:17.8562592Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:13:17.8563046Z Uploading artifacts took 0.00 seconds 2025-09-07T09:13:18.3434167Z 2025-09-07T09:13:18.3434544Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:13:18.3435116Z echo "c10_Synchronized_test" failed with exit code 0 2025-09-07T09:13:18.3435437Z goto fail 2025-09-07T09:13:18.3435665Z ) 2025-09-07T09:13:18.3435772Z 2025-09-07T09:13:18.3435958Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:13:18.3436403Z echo "c10_Synchronized_test" failed with exit code 0 2025-09-07T09:13:18.3436703Z goto fail 2025-09-07T09:13:18.3436877Z ) 2025-09-07T09:13:18.3437627Z 2025-09-07T09:13:18.3438078Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:13:18.3444968Z 2025-09-07T09:13:18.3445193Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:13:18.3445905Z call :libtorch_check "c10_tempfile_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-09-07T09:13:18.3446545Z if errorlevel 1 goto fail 2025-09-07T09:13:18.3446773Z ) 2025-09-07T09:13:18.3455929Z 2025-09-07T09:13:18.3456420Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:13:18.3460101Z 2025-09-07T09:13:18.3460613Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:13:18.3463079Z 2025-09-07T09:13:18.3463648Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_tempfile_test" == "verify_api_visibility" goto :eof 2025-09-07T09:13:18.3464578Z 2025-09-07T09:13:18.3465183Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-09-07T09:13:18.3466702Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-09-07T09:13:18.3467532Z 2025-09-07T09:13:18.3468063Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_tempfile_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:13:18.3468801Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_tempfile_test.exe" 2025-09-07T09:13:18.3469309Z goto :eof 2025-09-07T09:13:18.3469492Z ) 2025-09-07T09:13:18.3469595Z 2025-09-07T09:13:18.3469957Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_tempfile_test" 2025-09-07T09:13:23.9836694Z Found test times from artifacts 2025-09-07T09:13:24.0604369Z Found test times from artifacts 2025-09-07T09:13:24.0628481Z Running all tests 2025-09-07T09:13:24.0633670Z Running parallel tests on 3 processes 2025-09-07T09:13:24.0634087Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:13:24.0634352Z Serial tests (0): 2025-09-07T09:13:24.0640801Z Parallel tests (1): 2025-09-07T09:13:24.0641065Z cpp/c10_tempfile_test 1/1 2025-09-07T09:13:24.0641321Z Name: excluded (est. time: 0.0min) 2025-09-07T09:13:24.0641567Z Serial tests (0): 2025-09-07T09:13:24.0641772Z Parallel tests (0): 2025-09-07T09:13:24.0642076Z Running cpp/c10_tempfile_test 1/1 ... [2025-09-07 09:13:24.059870] 2025-09-07T09:13:24.0642471Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:13:24.0647083Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_tempfile_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4ca842bf9cdadd4c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:13:24.059870] 2025-09-07T09:13:24.0648888Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:13:25.5353180Z 2025-09-07T09:13:25.5354002Z cpp/c10_tempfile_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_tempfile_test_1.1_61b8c3547af5828d_.log 2025-09-07T09:13:25.5354816Z 2025-09-07T09:13:29.2872581Z Running cpp/c10_tempfile_test 1/1 ... [2025-09-07 09:13:29.277976] 2025-09-07T09:13:29.2873016Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:13:29.2882769Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_tempfile_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c95dad06616ff31b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:13:29.288070] 2025-09-07T09:13:30.7747939Z 2025-09-07T09:13:30.7748807Z cpp/c10_tempfile_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_tempfile_test_1.1_0ffea43695486d42_.log 2025-09-07T09:13:30.7749592Z 2025-09-07T09:13:31.3968503Z Running test batch 'tests to run' cost 7.34 seconds 2025-09-07T09:13:31.3975443Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:13:31.3975918Z Uploading artifacts took 0.00 seconds 2025-09-07T09:13:31.8834126Z 2025-09-07T09:13:31.8834674Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:13:31.8835146Z echo "c10_tempfile_test" failed with exit code 0 2025-09-07T09:13:31.8835455Z goto fail 2025-09-07T09:13:31.8835640Z ) 2025-09-07T09:13:31.8835742Z 2025-09-07T09:13:31.8835929Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:13:31.8836490Z echo "c10_tempfile_test" failed with exit code 0 2025-09-07T09:13:31.8836791Z goto fail 2025-09-07T09:13:31.8836955Z ) 2025-09-07T09:13:31.8837069Z 2025-09-07T09:13:31.8837515Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:13:31.8844348Z 2025-09-07T09:13:31.8844598Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:13:31.8845310Z call :libtorch_check "c10_ThreadLocal_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-09-07T09:13:31.8845967Z if errorlevel 1 goto fail 2025-09-07T09:13:31.8846182Z ) 2025-09-07T09:13:31.8854817Z 2025-09-07T09:13:31.8855148Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:13:31.8859000Z 2025-09-07T09:13:31.8859445Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:13:31.8861856Z 2025-09-07T09:13:31.8862305Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ThreadLocal_test" == "verify_api_visibility" goto :eof 2025-09-07T09:13:31.8863329Z 2025-09-07T09:13:31.8863882Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-09-07T09:13:31.8864810Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-09-07T09:13:31.8865929Z 2025-09-07T09:13:31.8866332Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_ThreadLocal_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:13:31.8867066Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_ThreadLocal_test.exe" 2025-09-07T09:13:31.8867566Z goto :eof 2025-09-07T09:13:31.8867740Z ) 2025-09-07T09:13:31.8867840Z 2025-09-07T09:13:31.8868208Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_ThreadLocal_test" 2025-09-07T09:13:37.4921589Z Found test times from artifacts 2025-09-07T09:13:37.5683656Z Found test times from artifacts 2025-09-07T09:13:37.5707987Z Running all tests 2025-09-07T09:13:37.5713781Z Running parallel tests on 3 processes 2025-09-07T09:13:37.5714359Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:13:37.5714671Z Serial tests (0): 2025-09-07T09:13:37.5714882Z Parallel tests (1): 2025-09-07T09:13:37.5715119Z cpp/c10_ThreadLocal_test 1/1 2025-09-07T09:13:37.5715369Z Name: excluded (est. time: 0.0min) 2025-09-07T09:13:37.5715623Z Serial tests (0): 2025-09-07T09:13:37.5715823Z Parallel tests (0): 2025-09-07T09:13:37.5717278Z Running cpp/c10_ThreadLocal_test 1/1 ... [2025-09-07 09:13:37.562821] 2025-09-07T09:13:37.5717807Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:13:37.5727219Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ThreadLocal_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-59bcd541bc8ac785.xml', '-x', '--reruns=2'] ... [2025-09-07 09:13:37.562821] 2025-09-07T09:13:37.5729028Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:13:39.0294321Z 2025-09-07T09:13:39.0295240Z cpp/c10_ThreadLocal_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ThreadLocal_test_1.1_ecb3a82c99317cd4_.log 2025-09-07T09:13:39.0295870Z 2025-09-07T09:13:42.7022648Z Running cpp/c10_ThreadLocal_test 1/1 ... [2025-09-07 09:13:42.701682] 2025-09-07T09:13:42.7030924Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:13:42.7032149Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_ThreadLocal_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8ba0a7b685025dbd.xml', '-x', '--reruns=2'] ... [2025-09-07 09:13:42.702874] 2025-09-07T09:13:44.1993159Z 2025-09-07T09:13:44.1994099Z cpp/c10_ThreadLocal_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_ThreadLocal_test_1.1_100b3523b1f59368_.log 2025-09-07T09:13:44.1994739Z 2025-09-07T09:13:44.8486138Z Running test batch 'tests to run' cost 7.28 seconds 2025-09-07T09:13:44.8492455Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:13:44.8492895Z Uploading artifacts took 0.00 seconds 2025-09-07T09:13:45.3315487Z 2025-09-07T09:13:45.3316135Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:13:45.3316647Z echo "c10_ThreadLocal_test" failed with exit code 0 2025-09-07T09:13:45.3317001Z goto fail 2025-09-07T09:13:45.3317179Z ) 2025-09-07T09:13:45.3317315Z 2025-09-07T09:13:45.3317505Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:13:45.3317993Z echo "c10_ThreadLocal_test" failed with exit code 0 2025-09-07T09:13:45.3318342Z goto fail 2025-09-07T09:13:45.3318508Z ) 2025-09-07T09:13:45.3318817Z 2025-09-07T09:13:45.3319057Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:13:45.3327626Z 2025-09-07T09:13:45.3327856Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:13:45.3328546Z call :libtorch_check "c10_typeid_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-09-07T09:13:45.3329167Z if errorlevel 1 goto fail 2025-09-07T09:13:45.3329385Z ) 2025-09-07T09:13:45.3338244Z 2025-09-07T09:13:45.3338894Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:13:45.3342640Z 2025-09-07T09:13:45.3343198Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:13:45.3345372Z 2025-09-07T09:13:45.3345801Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_typeid_test" == "verify_api_visibility" goto :eof 2025-09-07T09:13:45.3346928Z 2025-09-07T09:13:45.3347687Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-09-07T09:13:45.3348591Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-09-07T09:13:45.3349577Z 2025-09-07T09:13:45.3350025Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_typeid_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:13:45.3350729Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_typeid_test.exe" 2025-09-07T09:13:45.3351403Z goto :eof 2025-09-07T09:13:45.3351582Z ) 2025-09-07T09:13:45.3351677Z 2025-09-07T09:13:45.3352031Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_typeid_test" 2025-09-07T09:13:50.8909154Z Found test times from artifacts 2025-09-07T09:13:50.9672402Z Found test times from artifacts 2025-09-07T09:13:50.9699277Z Running all tests 2025-09-07T09:13:50.9704600Z Running parallel tests on 3 processes 2025-09-07T09:13:50.9704998Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:13:50.9705274Z Serial tests (0): 2025-09-07T09:13:50.9705520Z Parallel tests (1): 2025-09-07T09:13:50.9705793Z cpp/c10_typeid_test 1/1 2025-09-07T09:13:50.9706038Z Name: excluded (est. time: 0.0min) 2025-09-07T09:13:50.9706334Z Serial tests (0): 2025-09-07T09:13:50.9706588Z Parallel tests (0): 2025-09-07T09:13:50.9708592Z Running cpp/c10_typeid_test 1/1 ... [2025-09-07 09:13:50.970757] 2025-09-07T09:13:50.9709032Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:13:50.9719340Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_typeid_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d07fcf6af2452e8d.xml', '-x', '--reruns=2'] ... [2025-09-07 09:13:50.971531] 2025-09-07T09:13:50.9721261Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:13:52.4418934Z 2025-09-07T09:13:52.4419755Z cpp/c10_typeid_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_typeid_test_1.1_249b7e2cdc28f157_.log 2025-09-07T09:13:52.4420821Z 2025-09-07T09:13:56.1361776Z Running cpp/c10_typeid_test 1/1 ... [2025-09-07 09:13:56.132606] 2025-09-07T09:13:56.1362217Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:13:56.1371226Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_typeid_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-bcea041eab354ff6.xml', '-x', '--reruns=2'] ... [2025-09-07 09:13:56.132606] 2025-09-07T09:13:57.6222567Z 2025-09-07T09:13:57.6223439Z cpp/c10_typeid_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_typeid_test_1.1_dc5badba08e035f7_.log 2025-09-07T09:13:57.6224115Z 2025-09-07T09:13:58.3005988Z Running test batch 'tests to run' cost 7.33 seconds 2025-09-07T09:13:58.3012962Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:13:58.3013439Z Uploading artifacts took 0.00 seconds 2025-09-07T09:13:58.7855425Z 2025-09-07T09:13:58.7855963Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:13:58.7856413Z echo "c10_typeid_test" failed with exit code 0 2025-09-07T09:13:58.7856736Z goto fail 2025-09-07T09:13:58.7856903Z ) 2025-09-07T09:13:58.7857004Z 2025-09-07T09:13:58.7857556Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:13:58.7858027Z echo "c10_typeid_test" failed with exit code 0 2025-09-07T09:13:58.7858318Z goto fail 2025-09-07T09:13:58.7858499Z ) 2025-09-07T09:13:58.7858591Z 2025-09-07T09:13:58.7859228Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:13:58.7866966Z 2025-09-07T09:13:58.7867222Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:13:58.7867927Z call :libtorch_check "c10_TypeIndex_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-09-07T09:13:58.7868566Z if errorlevel 1 goto fail 2025-09-07T09:13:58.7868781Z ) 2025-09-07T09:13:58.7877404Z 2025-09-07T09:13:58.7877788Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:13:58.7881554Z 2025-09-07T09:13:58.7882251Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:13:58.7884375Z 2025-09-07T09:13:58.7884875Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeIndex_test" == "verify_api_visibility" goto :eof 2025-09-07T09:13:58.7885862Z 2025-09-07T09:13:58.7886398Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-09-07T09:13:58.7887321Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-09-07T09:13:58.7888972Z 2025-09-07T09:13:58.7889400Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeIndex_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:13:58.7890119Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeIndex_test.exe" 2025-09-07T09:13:58.7890619Z goto :eof 2025-09-07T09:13:58.7890790Z ) 2025-09-07T09:13:58.7890896Z 2025-09-07T09:13:58.7891252Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_TypeIndex_test" 2025-09-07T09:14:04.4238692Z Found test times from artifacts 2025-09-07T09:14:04.5035175Z Found test times from artifacts 2025-09-07T09:14:04.5065439Z Running all tests 2025-09-07T09:14:04.5071305Z Running parallel tests on 3 processes 2025-09-07T09:14:04.5071672Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:14:04.5071943Z Serial tests (0): 2025-09-07T09:14:04.5072168Z Parallel tests (1): 2025-09-07T09:14:04.5072391Z cpp/c10_TypeIndex_test 1/1 2025-09-07T09:14:04.5072648Z Name: excluded (est. time: 0.0min) 2025-09-07T09:14:04.5072888Z Serial tests (0): 2025-09-07T09:14:04.5073084Z Parallel tests (0): 2025-09-07T09:14:04.5074939Z Running cpp/c10_TypeIndex_test 1/1 ... [2025-09-07 09:14:04.506417] 2025-09-07T09:14:04.5075376Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:14:04.5085461Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeIndex_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-bacdb5069ac97687.xml', '-x', '--reruns=2'] ... [2025-09-07 09:14:04.507576] 2025-09-07T09:14:04.5087138Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:14:05.9892242Z 2025-09-07T09:14:05.9893074Z cpp/c10_TypeIndex_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeIndex_test_1.1_ce2c0fcbca2da5d8_.log 2025-09-07T09:14:05.9893845Z 2025-09-07T09:14:09.7055038Z Running cpp/c10_TypeIndex_test 1/1 ... [2025-09-07 09:14:09.697346] 2025-09-07T09:14:09.7055502Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:14:09.7064695Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeIndex_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-38976122f97e79dc.xml', '-x', '--reruns=2'] ... [2025-09-07 09:14:09.697346] 2025-09-07T09:14:11.2072859Z 2025-09-07T09:14:11.2073868Z cpp/c10_TypeIndex_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeIndex_test_1.1_c011a2bd1a7b0506_.log 2025-09-07T09:14:11.2074523Z 2025-09-07T09:14:11.8241770Z Running test batch 'tests to run' cost 7.3 seconds 2025-09-07T09:14:11.8248489Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:14:11.8248970Z Uploading artifacts took 0.00 seconds 2025-09-07T09:14:12.3103826Z 2025-09-07T09:14:12.3104407Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:14:12.3105034Z echo "c10_TypeIndex_test" failed with exit code 0 2025-09-07T09:14:12.3105420Z goto fail 2025-09-07T09:14:12.3105591Z ) 2025-09-07T09:14:12.3105688Z 2025-09-07T09:14:12.3105877Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:14:12.3106295Z echo "c10_TypeIndex_test" failed with exit code 0 2025-09-07T09:14:12.3106593Z goto fail 2025-09-07T09:14:12.3106756Z ) 2025-09-07T09:14:12.3106858Z 2025-09-07T09:14:12.3107012Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:14:12.3114624Z 2025-09-07T09:14:12.3114840Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:14:12.3115501Z call :libtorch_check "c10_TypeList_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-09-07T09:14:12.3116130Z if errorlevel 1 goto fail 2025-09-07T09:14:12.3116352Z ) 2025-09-07T09:14:12.3124940Z 2025-09-07T09:14:12.3125315Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:14:12.3129041Z 2025-09-07T09:14:12.3129494Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:14:12.3131884Z 2025-09-07T09:14:12.3132375Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeList_test" == "verify_api_visibility" goto :eof 2025-09-07T09:14:12.3133368Z 2025-09-07T09:14:12.3133900Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-09-07T09:14:12.3134809Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-09-07T09:14:12.3135948Z 2025-09-07T09:14:12.3136464Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeList_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:14:12.3137169Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeList_test.exe" 2025-09-07T09:14:12.3137662Z goto :eof 2025-09-07T09:14:12.3137830Z ) 2025-09-07T09:14:12.3137930Z 2025-09-07T09:14:12.3138287Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_TypeList_test" 2025-09-07T09:14:17.8675744Z Found test times from artifacts 2025-09-07T09:14:17.9447405Z Found test times from artifacts 2025-09-07T09:14:17.9471731Z Running all tests 2025-09-07T09:14:17.9477000Z Running parallel tests on 3 processes 2025-09-07T09:14:17.9477343Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:14:17.9477613Z Serial tests (0): 2025-09-07T09:14:17.9477815Z Parallel tests (1): 2025-09-07T09:14:17.9478043Z cpp/c10_TypeList_test 1/1 2025-09-07T09:14:17.9478290Z Name: excluded (est. time: 0.0min) 2025-09-07T09:14:17.9478534Z Serial tests (0): 2025-09-07T09:14:17.9478734Z Parallel tests (0): 2025-09-07T09:14:17.9480590Z Running cpp/c10_TypeList_test 1/1 ... [2025-09-07 09:14:17.947388] 2025-09-07T09:14:17.9480983Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:14:17.9490499Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeList_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3609368f01406f19.xml', '-x', '--reruns=2'] ... [2025-09-07 09:14:17.948428] 2025-09-07T09:14:17.9492333Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:14:19.4545779Z 2025-09-07T09:14:19.4546608Z cpp/c10_TypeList_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeList_test_1.1_de30584899cacfc0_.log 2025-09-07T09:14:19.4547524Z 2025-09-07T09:14:23.2041872Z Running cpp/c10_TypeList_test 1/1 ... [2025-09-07 09:14:23.203739] 2025-09-07T09:14:23.2042484Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:14:23.2051704Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeList_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-84f24a4312680555.xml', '-x', '--reruns=2'] ... [2025-09-07 09:14:23.204930] 2025-09-07T09:14:24.6831670Z 2025-09-07T09:14:24.6832558Z cpp/c10_TypeList_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeList_test_1.1_fb49b288f66c86cf_.log 2025-09-07T09:14:24.6833342Z 2025-09-07T09:14:25.3728618Z Running test batch 'tests to run' cost 7.42 seconds 2025-09-07T09:14:25.3735442Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:14:25.3735910Z Uploading artifacts took 0.00 seconds 2025-09-07T09:14:25.8523086Z 2025-09-07T09:14:25.8523663Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:14:25.8524119Z echo "c10_TypeList_test" failed with exit code 0 2025-09-07T09:14:25.8524437Z goto fail 2025-09-07T09:14:25.8524616Z ) 2025-09-07T09:14:25.8524708Z 2025-09-07T09:14:25.8524892Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:14:25.8525455Z echo "c10_TypeList_test" failed with exit code 0 2025-09-07T09:14:25.8525751Z goto fail 2025-09-07T09:14:25.8525961Z ) 2025-09-07T09:14:25.8526172Z 2025-09-07T09:14:25.8526366Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:14:25.8534489Z 2025-09-07T09:14:25.8534929Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:14:25.8535637Z call :libtorch_check "c10_TypeTraits_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-09-07T09:14:25.8536287Z if errorlevel 1 goto fail 2025-09-07T09:14:25.8536504Z ) 2025-09-07T09:14:25.8546088Z 2025-09-07T09:14:25.8546494Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:14:25.8549582Z 2025-09-07T09:14:25.8550075Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:14:25.8564412Z 2025-09-07T09:14:25.8565058Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeTraits_test" == "verify_api_visibility" goto :eof 2025-09-07T09:14:25.8565505Z 2025-09-07T09:14:25.8566016Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-09-07T09:14:25.8566954Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-09-07T09:14:25.8567377Z 2025-09-07T09:14:25.8567682Z (base) C:\actions-runner\_work\pytorch\pytorch>if "c10_TypeTraits_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:14:25.8568473Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\c10_TypeTraits_test.exe" 2025-09-07T09:14:25.8568974Z goto :eof 2025-09-07T09:14:25.8570148Z ) 2025-09-07T09:14:25.8570251Z 2025-09-07T09:14:25.8570632Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/c10_TypeTraits_test" 2025-09-07T09:14:31.5994439Z Found test times from artifacts 2025-09-07T09:14:31.6763894Z Found test times from artifacts 2025-09-07T09:14:31.6788574Z Running all tests 2025-09-07T09:14:31.6793673Z Running parallel tests on 3 processes 2025-09-07T09:14:31.6793986Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:14:31.6794253Z Serial tests (0): 2025-09-07T09:14:31.6794464Z Parallel tests (1): 2025-09-07T09:14:31.6794680Z cpp/c10_TypeTraits_test 1/1 2025-09-07T09:14:31.6794933Z Name: excluded (est. time: 0.0min) 2025-09-07T09:14:31.6795174Z Serial tests (0): 2025-09-07T09:14:31.6795416Z Parallel tests (0): 2025-09-07T09:14:31.6797287Z Running cpp/c10_TypeTraits_test 1/1 ... [2025-09-07 09:14:31.679633] 2025-09-07T09:14:31.6797749Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:14:31.6807037Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeTraits_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-18bba0eebdfed7b0.xml', '-x', '--reruns=2'] ... [2025-09-07 09:14:31.679633] 2025-09-07T09:14:31.6808743Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:14:33.1407582Z 2025-09-07T09:14:33.1408411Z cpp/c10_TypeTraits_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeTraits_test_1.1_134df75a50e3f55e_.log 2025-09-07T09:14:33.1409126Z 2025-09-07T09:14:36.9042830Z Running cpp/c10_TypeTraits_test 1/1 ... [2025-09-07 09:14:36.903885] 2025-09-07T09:14:36.9043295Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:14:36.9050486Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\c10_TypeTraits_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6a83c89f649d09d5.xml', '-x', '--reruns=2'] ... [2025-09-07 09:14:36.904158] 2025-09-07T09:14:38.3670808Z 2025-09-07T09:14:38.3671937Z cpp/c10_TypeTraits_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.c10_TypeTraits_test_1.1_3dca8c00084581ca_.log 2025-09-07T09:14:38.3674229Z 2025-09-07T09:14:38.9898353Z Running test batch 'tests to run' cost 7.31 seconds 2025-09-07T09:14:38.9904753Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:14:38.9905203Z Uploading artifacts took 0.00 seconds 2025-09-07T09:14:39.5212894Z 2025-09-07T09:14:39.5213685Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:14:39.5214171Z echo "c10_TypeTraits_test" failed with exit code 0 2025-09-07T09:14:39.5214498Z goto fail 2025-09-07T09:14:39.5214661Z ) 2025-09-07T09:14:39.5214758Z 2025-09-07T09:14:39.5214961Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:14:39.5215372Z echo "c10_TypeTraits_test" failed with exit code 0 2025-09-07T09:14:39.5215670Z goto fail 2025-09-07T09:14:39.5215829Z ) 2025-09-07T09:14:39.5215937Z 2025-09-07T09:14:39.5216087Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:14:39.5223562Z 2025-09-07T09:14:39.5223847Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:14:39.5224534Z call :libtorch_check "CppSignature_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-09-07T09:14:39.5225185Z if errorlevel 1 goto fail 2025-09-07T09:14:39.5225399Z ) 2025-09-07T09:14:39.5233887Z 2025-09-07T09:14:39.5234293Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:14:39.5238165Z 2025-09-07T09:14:39.5238682Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:14:39.5241171Z 2025-09-07T09:14:39.5241578Z (base) C:\actions-runner\_work\pytorch\pytorch>if "CppSignature_test" == "verify_api_visibility" goto :eof 2025-09-07T09:14:39.5242617Z 2025-09-07T09:14:39.5243281Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-09-07T09:14:39.5244218Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-09-07T09:14:39.5245194Z 2025-09-07T09:14:39.5245633Z (base) C:\actions-runner\_work\pytorch\pytorch>if "CppSignature_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:14:39.5246589Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\CppSignature_test.exe" 2025-09-07T09:14:39.5247143Z goto :eof 2025-09-07T09:14:39.5247322Z ) 2025-09-07T09:14:39.5247432Z 2025-09-07T09:14:39.5247827Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/CppSignature_test" 2025-09-07T09:14:45.1626002Z Found test times from artifacts 2025-09-07T09:14:45.2390829Z Found test times from artifacts 2025-09-07T09:14:45.2414855Z Running all tests 2025-09-07T09:14:45.2420155Z Running parallel tests on 3 processes 2025-09-07T09:14:45.2420462Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:14:45.2420729Z Serial tests (0): 2025-09-07T09:14:45.2420925Z Parallel tests (1): 2025-09-07T09:14:45.2421149Z cpp/CppSignature_test 1/1 2025-09-07T09:14:45.2421402Z Name: excluded (est. time: 0.0min) 2025-09-07T09:14:45.2421658Z Serial tests (0): 2025-09-07T09:14:45.2421852Z Parallel tests (0): 2025-09-07T09:14:45.2423721Z Running cpp/CppSignature_test 1/1 ... [2025-09-07 09:14:45.241837] 2025-09-07T09:14:45.2424157Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:14:45.2434282Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\CppSignature_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-000b95a24dabd644.xml', '-x', '--reruns=2'] ... [2025-09-07 09:14:45.243178] 2025-09-07T09:14:45.2436465Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:14:47.4238259Z 2025-09-07T09:14:47.4239334Z cpp/CppSignature_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.CppSignature_test_1.1_44537d50b3f5c43e_.log 2025-09-07T09:14:47.4239968Z 2025-09-07T09:14:51.1435785Z Running cpp/CppSignature_test 1/1 ... [2025-09-07 09:14:51.142907] 2025-09-07T09:14:51.1436247Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:14:51.1444968Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\CppSignature_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4ed88583709be8cd.xml', '-x', '--reruns=2'] ... [2025-09-07 09:14:51.144086] 2025-09-07T09:14:54.0671147Z 2025-09-07T09:14:54.0672169Z cpp/CppSignature_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.CppSignature_test_1.1_4205d38fedace4ed_.log 2025-09-07T09:14:54.0673043Z 2025-09-07T09:14:54.6669382Z Running test batch 'tests to run' cost 9.42 seconds 2025-09-07T09:14:54.6676636Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:14:54.6677114Z Uploading artifacts took 0.00 seconds 2025-09-07T09:14:55.1503430Z 2025-09-07T09:14:55.1504009Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:14:55.1504475Z echo "CppSignature_test" failed with exit code 0 2025-09-07T09:14:55.1504781Z goto fail 2025-09-07T09:14:55.1504955Z ) 2025-09-07T09:14:55.1505048Z 2025-09-07T09:14:55.1505624Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:14:55.1506092Z echo "CppSignature_test" failed with exit code 0 2025-09-07T09:14:55.1506393Z goto fail 2025-09-07T09:14:55.1506567Z ) 2025-09-07T09:14:55.1506818Z 2025-09-07T09:14:55.1506975Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:14:55.1513930Z 2025-09-07T09:14:55.1514167Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:14:55.1514919Z call :libtorch_check "cpu_allocator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-09-07T09:14:55.1515582Z if errorlevel 1 goto fail 2025-09-07T09:14:55.1515813Z ) 2025-09-07T09:14:55.1526932Z 2025-09-07T09:14:55.1527686Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:14:55.1531619Z 2025-09-07T09:14:55.1532128Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:14:55.1534592Z 2025-09-07T09:14:55.1535021Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_allocator_test" == "verify_api_visibility" goto :eof 2025-09-07T09:14:55.1536035Z 2025-09-07T09:14:55.1536632Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-09-07T09:14:55.1537569Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-09-07T09:14:55.1538832Z 2025-09-07T09:14:55.1539300Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_allocator_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:14:55.1540043Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_allocator_test.exe" 2025-09-07T09:14:55.1540518Z goto :eof 2025-09-07T09:14:55.1540697Z ) 2025-09-07T09:14:55.1540792Z 2025-09-07T09:14:55.1541157Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_allocator_test" 2025-09-07T09:15:00.8657310Z Found test times from artifacts 2025-09-07T09:15:00.9421201Z Found test times from artifacts 2025-09-07T09:15:00.9445324Z Running all tests 2025-09-07T09:15:00.9450314Z Running parallel tests on 3 processes 2025-09-07T09:15:00.9450711Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:15:00.9450978Z Serial tests (0): 2025-09-07T09:15:00.9451203Z Parallel tests (1): 2025-09-07T09:15:00.9451430Z cpp/cpu_allocator_test 1/1 2025-09-07T09:15:00.9451699Z Name: excluded (est. time: 0.0min) 2025-09-07T09:15:00.9451951Z Serial tests (0): 2025-09-07T09:15:00.9452169Z Parallel tests (0): 2025-09-07T09:15:00.9453964Z Running cpp/cpu_allocator_test 1/1 ... [2025-09-07 09:15:00.935817] 2025-09-07T09:15:00.9454357Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:15:00.9463765Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_allocator_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-749540ccc32c62a6.xml', '-x', '--reruns=2'] ... [2025-09-07 09:15:00.945892] 2025-09-07T09:15:00.9465555Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:15:03.2070019Z 2025-09-07T09:15:03.2070890Z cpp/cpu_allocator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_allocator_test_1.1_5ded73e90243e8ef_.log 2025-09-07T09:15:03.2071562Z 2025-09-07T09:15:06.8959233Z Running cpp/cpu_allocator_test 1/1 ... [2025-09-07 09:15:06.895757] 2025-09-07T09:15:06.8959696Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:15:06.8968520Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_allocator_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8e58d4a1b4e3d057.xml', '-x', '--reruns=2'] ... [2025-09-07 09:15:06.896386] 2025-09-07T09:15:09.4372187Z 2025-09-07T09:15:09.4374318Z cpp/cpu_allocator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_allocator_test_1.1_3552a9796e625be0_.log 2025-09-07T09:15:09.4375012Z 2025-09-07T09:15:10.0441774Z Running test batch 'tests to run' cost 9.1 seconds 2025-09-07T09:15:10.0446952Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:15:10.0447426Z Uploading artifacts took 0.00 seconds 2025-09-07T09:15:10.5360137Z 2025-09-07T09:15:10.5360474Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:15:10.5361474Z echo "cpu_allocator_test" failed with exit code 0 2025-09-07T09:15:10.5361813Z goto fail 2025-09-07T09:15:10.5362004Z ) 2025-09-07T09:15:10.5362125Z 2025-09-07T09:15:10.5362318Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:15:10.5362759Z echo "cpu_allocator_test" failed with exit code 0 2025-09-07T09:15:10.5363062Z goto fail 2025-09-07T09:15:10.5363248Z ) 2025-09-07T09:15:10.5363354Z 2025-09-07T09:15:10.5363514Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:15:10.5370936Z 2025-09-07T09:15:10.5371180Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:15:10.5371878Z call :libtorch_check "cpu_generator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-09-07T09:15:10.5372517Z if errorlevel 1 goto fail 2025-09-07T09:15:10.5372765Z ) 2025-09-07T09:15:10.5381791Z 2025-09-07T09:15:10.5382467Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:15:10.5385972Z 2025-09-07T09:15:10.5386464Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:15:10.5388909Z 2025-09-07T09:15:10.5389421Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_generator_test" == "verify_api_visibility" goto :eof 2025-09-07T09:15:10.5390451Z 2025-09-07T09:15:10.5391016Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-09-07T09:15:10.5391948Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-09-07T09:15:10.5393052Z 2025-09-07T09:15:10.5393479Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_generator_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:15:10.5394254Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_generator_test.exe" 2025-09-07T09:15:10.5394812Z goto :eof 2025-09-07T09:15:10.5395011Z ) 2025-09-07T09:15:10.5395106Z 2025-09-07T09:15:10.5395473Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_generator_test" 2025-09-07T09:15:16.1784500Z Found test times from artifacts 2025-09-07T09:15:16.2549921Z Found test times from artifacts 2025-09-07T09:15:16.2574134Z Running all tests 2025-09-07T09:15:16.2579336Z Running parallel tests on 3 processes 2025-09-07T09:15:16.2579728Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:15:16.2580045Z Serial tests (0): 2025-09-07T09:15:16.2580267Z Parallel tests (1): 2025-09-07T09:15:16.2580498Z cpp/cpu_generator_test 1/1 2025-09-07T09:15:16.2580764Z Name: excluded (est. time: 0.0min) 2025-09-07T09:15:16.2581017Z Serial tests (0): 2025-09-07T09:15:16.2581246Z Parallel tests (0): 2025-09-07T09:15:16.2583080Z Running cpp/cpu_generator_test 1/1 ... [2025-09-07 09:15:16.257908] 2025-09-07T09:15:16.2583474Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:15:16.2593219Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_generator_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d5d856498e06740a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:15:16.259053] 2025-09-07T09:15:16.2594940Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:15:18.6098226Z 2025-09-07T09:15:18.6099199Z cpp/cpu_generator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_generator_test_1.1_a82705b6b42e2fbf_.log 2025-09-07T09:15:18.6099840Z 2025-09-07T09:15:22.2981099Z Running cpp/cpu_generator_test 1/1 ... [2025-09-07 09:15:22.297405] 2025-09-07T09:15:22.2982446Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:15:22.2989535Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_generator_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1900e3007571c1c2.xml', '-x', '--reruns=2'] ... [2025-09-07 09:15:22.298755] 2025-09-07T09:15:26.8019508Z 2025-09-07T09:15:26.8020445Z cpp/cpu_generator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_generator_test_1.1_6a21371f9d399877_.log 2025-09-07T09:15:26.8021511Z 2025-09-07T09:15:27.4103372Z Running test batch 'tests to run' cost 11.14 seconds 2025-09-07T09:15:27.4109723Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:15:27.4110186Z Uploading artifacts took 0.00 seconds 2025-09-07T09:15:27.9015474Z 2025-09-07T09:15:27.9016098Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:15:27.9016628Z echo "cpu_generator_test" failed with exit code 0 2025-09-07T09:15:27.9016962Z goto fail 2025-09-07T09:15:27.9017192Z ) 2025-09-07T09:15:27.9017867Z 2025-09-07T09:15:27.9018084Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:15:27.9018515Z echo "cpu_generator_test" failed with exit code 0 2025-09-07T09:15:27.9018833Z goto fail 2025-09-07T09:15:27.9019009Z ) 2025-09-07T09:15:27.9019109Z 2025-09-07T09:15:27.9019284Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:15:27.9025394Z 2025-09-07T09:15:27.9025849Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:15:27.9026653Z call :libtorch_check "cpu_profiling_allocator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-09-07T09:15:27.9027377Z if errorlevel 1 goto fail 2025-09-07T09:15:27.9027634Z ) 2025-09-07T09:15:27.9035072Z 2025-09-07T09:15:27.9035491Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:15:27.9039186Z 2025-09-07T09:15:27.9039645Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:15:27.9041995Z 2025-09-07T09:15:27.9042470Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_profiling_allocator_test" == "verify_api_visibility" goto :eof 2025-09-07T09:15:27.9043440Z 2025-09-07T09:15:27.9044057Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-09-07T09:15:27.9045053Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-09-07T09:15:27.9046055Z 2025-09-07T09:15:27.9046491Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_profiling_allocator_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:15:27.9047306Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_profiling_allocator_test.exe" 2025-09-07T09:15:27.9047853Z goto :eof 2025-09-07T09:15:27.9048036Z ) 2025-09-07T09:15:27.9048133Z 2025-09-07T09:15:27.9048530Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_profiling_allocator_test" 2025-09-07T09:15:33.5363778Z Found test times from artifacts 2025-09-07T09:15:33.6134285Z Found test times from artifacts 2025-09-07T09:15:33.6159176Z Running all tests 2025-09-07T09:15:33.6164669Z Running parallel tests on 3 processes 2025-09-07T09:15:33.6165044Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:15:33.6165336Z Serial tests (0): 2025-09-07T09:15:33.6165566Z Parallel tests (1): 2025-09-07T09:15:33.6165811Z cpp/cpu_profiling_allocator_test 1/1 2025-09-07T09:15:33.6166141Z Name: excluded (est. time: 0.0min) 2025-09-07T09:15:33.6166936Z Serial tests (0): 2025-09-07T09:15:33.6167454Z Parallel tests (0): 2025-09-07T09:15:33.6168581Z Running cpp/cpu_profiling_allocator_test 1/1 ... [2025-09-07 09:15:33.616653] 2025-09-07T09:15:33.6169010Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:15:33.6178718Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_profiling_allocator_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-19665b0d0257c072.xml', '-x', '--reruns=2'] ... [2025-09-07 09:15:33.617225] 2025-09-07T09:15:33.6180465Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:15:35.8207887Z 2025-09-07T09:15:35.8208995Z cpp/cpu_profiling_allocator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_profiling_allocator_test_1.1_9638f1e0a0ae4c41_.log 2025-09-07T09:15:35.8209733Z 2025-09-07T09:15:39.5306597Z Running cpp/cpu_profiling_allocator_test 1/1 ... [2025-09-07 09:15:39.527476] 2025-09-07T09:15:39.5307073Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:15:39.5315612Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_profiling_allocator_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0350655f7adf052b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:15:39.527476] 2025-09-07T09:15:42.1476084Z 2025-09-07T09:15:42.1477129Z cpp/cpu_profiling_allocator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_profiling_allocator_test_1.1_c0128d9b4ec98d4d_.log 2025-09-07T09:15:42.1479021Z 2025-09-07T09:15:42.7581434Z Running test batch 'tests to run' cost 9.14 seconds 2025-09-07T09:15:42.7587781Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:15:42.7588249Z Uploading artifacts took 0.00 seconds 2025-09-07T09:15:43.2452416Z 2025-09-07T09:15:43.2453096Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:15:43.2453676Z echo "cpu_profiling_allocator_test" failed with exit code 0 2025-09-07T09:15:43.2454024Z goto fail 2025-09-07T09:15:43.2454216Z ) 2025-09-07T09:15:43.2454318Z 2025-09-07T09:15:43.2454534Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:15:43.2454987Z echo "cpu_profiling_allocator_test" failed with exit code 0 2025-09-07T09:15:43.2455334Z goto fail 2025-09-07T09:15:43.2455502Z ) 2025-09-07T09:15:43.2455609Z 2025-09-07T09:15:43.2455759Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:15:43.2462611Z 2025-09-07T09:15:43.2462869Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:15:43.2463550Z call :libtorch_check "cpu_rng_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-09-07T09:15:43.2464156Z if errorlevel 1 goto fail 2025-09-07T09:15:43.2464383Z ) 2025-09-07T09:15:43.2472954Z 2025-09-07T09:15:43.2473291Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:15:43.2477104Z 2025-09-07T09:15:43.2477739Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:15:43.2479945Z 2025-09-07T09:15:43.2480427Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_rng_test" == "verify_api_visibility" goto :eof 2025-09-07T09:15:43.2481458Z 2025-09-07T09:15:43.2482007Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-09-07T09:15:43.2482902Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-09-07T09:15:43.2483959Z 2025-09-07T09:15:43.2484644Z (base) C:\actions-runner\_work\pytorch\pytorch>if "cpu_rng_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:15:43.2485361Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\cpu_rng_test.exe" 2025-09-07T09:15:43.2485850Z goto :eof 2025-09-07T09:15:43.2486031Z ) 2025-09-07T09:15:43.2486145Z 2025-09-07T09:15:43.2486497Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/cpu_rng_test" 2025-09-07T09:15:49.0105649Z Found test times from artifacts 2025-09-07T09:15:49.0867508Z Found test times from artifacts 2025-09-07T09:15:49.0891577Z Running all tests 2025-09-07T09:15:49.0896187Z Running parallel tests on 3 processes 2025-09-07T09:15:49.0896526Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:15:49.0896802Z Serial tests (0): 2025-09-07T09:15:49.0897027Z Parallel tests (1): 2025-09-07T09:15:49.0897265Z cpp/cpu_rng_test 1/1 2025-09-07T09:15:49.0897517Z Name: excluded (est. time: 0.0min) 2025-09-07T09:15:49.0897775Z Serial tests (0): 2025-09-07T09:15:49.0897993Z Parallel tests (0): 2025-09-07T09:15:49.0899920Z Running cpp/cpu_rng_test 1/1 ... [2025-09-07 09:15:49.087541] 2025-09-07T09:15:49.0900464Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:15:49.0909540Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_rng_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d30b91005fa256bb.xml', '-x', '--reruns=2'] ... [2025-09-07 09:15:49.087541] 2025-09-07T09:15:49.0911229Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:15:51.3860226Z 2025-09-07T09:15:51.3861030Z cpp/cpu_rng_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_rng_test_1.1_e2d28fcd045df2b0_.log 2025-09-07T09:15:51.3862160Z 2025-09-07T09:15:55.1192779Z Running cpp/cpu_rng_test 1/1 ... [2025-09-07 09:15:55.119103] 2025-09-07T09:15:55.1193271Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:15:55.1202664Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\cpu_rng_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-26ff465f0e60da2c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:15:55.120073] 2025-09-07T09:16:00.3299577Z 2025-09-07T09:16:00.3300595Z cpp/cpu_rng_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.cpu_rng_test_1.1_2c04859aabacc078_.log 2025-09-07T09:16:00.3301605Z 2025-09-07T09:16:00.9640263Z Running test batch 'tests to run' cost 11.87 seconds 2025-09-07T09:16:00.9646715Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:16:00.9647207Z Uploading artifacts took 0.00 seconds 2025-09-07T09:16:01.4554582Z 2025-09-07T09:16:01.4555315Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:16:01.4555794Z echo "cpu_rng_test" failed with exit code 0 2025-09-07T09:16:01.4556100Z goto fail 2025-09-07T09:16:01.4556268Z ) 2025-09-07T09:16:01.4556371Z 2025-09-07T09:16:01.4556567Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:16:01.4557115Z echo "cpu_rng_test" failed with exit code 0 2025-09-07T09:16:01.4557413Z goto fail 2025-09-07T09:16:01.4557587Z ) 2025-09-07T09:16:01.4557699Z 2025-09-07T09:16:01.4557854Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:16:01.4565513Z 2025-09-07T09:16:01.4566074Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:16:01.4566834Z call :libtorch_check "Dict_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-09-07T09:16:01.4568065Z if errorlevel 1 goto fail 2025-09-07T09:16:01.4568347Z ) 2025-09-07T09:16:01.4577036Z 2025-09-07T09:16:01.4577397Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:16:01.4580935Z 2025-09-07T09:16:01.4581594Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:16:01.4584256Z 2025-09-07T09:16:01.4584796Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dict_test" == "verify_api_visibility" goto :eof 2025-09-07T09:16:01.4585924Z 2025-09-07T09:16:01.4586483Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-09-07T09:16:01.4587463Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-09-07T09:16:01.4588584Z 2025-09-07T09:16:01.4589044Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dict_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:16:01.4589709Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dict_test.exe" 2025-09-07T09:16:01.4590178Z goto :eof 2025-09-07T09:16:01.4590442Z ) 2025-09-07T09:16:01.4590558Z 2025-09-07T09:16:01.4591075Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/Dict_test" 2025-09-07T09:16:07.1548176Z Found test times from artifacts 2025-09-07T09:16:07.2313351Z Found test times from artifacts 2025-09-07T09:16:07.2337336Z Running all tests 2025-09-07T09:16:07.2343137Z Running parallel tests on 3 processes 2025-09-07T09:16:07.2343571Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:16:07.2343846Z Serial tests (0): 2025-09-07T09:16:07.2344061Z Parallel tests (1): 2025-09-07T09:16:07.2344280Z cpp/Dict_test 1/1 2025-09-07T09:16:07.2344521Z Name: excluded (est. time: 0.0min) 2025-09-07T09:16:07.2344782Z Serial tests (0): 2025-09-07T09:16:07.2345001Z Parallel tests (0): 2025-09-07T09:16:07.2347327Z Running cpp/Dict_test 1/1 ... [2025-09-07 09:16:07.234621] 2025-09-07T09:16:07.2347736Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:16:07.2356584Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\Dict_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-1fed9958896d899a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:16:07.234669] 2025-09-07T09:16:07.2358240Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:16:09.4617739Z 2025-09-07T09:16:09.4618627Z cpp/Dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dict_test_1.1_9d4bb41f6245a829_.log 2025-09-07T09:16:09.4619671Z 2025-09-07T09:16:13.1404169Z Running cpp/Dict_test 1/1 ... [2025-09-07 09:16:13.138567] 2025-09-07T09:16:13.1404624Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:16:13.1413483Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\Dict_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e2085f636edf25ff.xml', '-x', '--reruns=2'] ... [2025-09-07 09:16:13.138567] 2025-09-07T09:16:21.4115104Z 2025-09-07T09:16:21.4116033Z cpp/Dict_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dict_test_1.1_f9c5030a2b16e7e0_.log 2025-09-07T09:16:21.4117611Z 2025-09-07T09:16:22.0911163Z Running test batch 'tests to run' cost 14.86 seconds 2025-09-07T09:16:22.0917973Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:16:22.0918418Z Uploading artifacts took 0.00 seconds 2025-09-07T09:16:22.5803901Z 2025-09-07T09:16:22.5804450Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:16:22.5805503Z echo "Dict_test" failed with exit code 0 2025-09-07T09:16:22.5805810Z goto fail 2025-09-07T09:16:22.5805983Z ) 2025-09-07T09:16:22.5806120Z 2025-09-07T09:16:22.5806314Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:16:22.5806728Z echo "Dict_test" failed with exit code 0 2025-09-07T09:16:22.5807065Z goto fail 2025-09-07T09:16:22.5807249Z ) 2025-09-07T09:16:22.5807353Z 2025-09-07T09:16:22.5807553Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:16:22.5814209Z 2025-09-07T09:16:22.5814597Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:16:22.5815292Z call :libtorch_check "Dimname_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-09-07T09:16:22.5815904Z if errorlevel 1 goto fail 2025-09-07T09:16:22.5816149Z ) 2025-09-07T09:16:22.5825070Z 2025-09-07T09:16:22.5825586Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:16:22.5829019Z 2025-09-07T09:16:22.5829496Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:16:22.5832184Z 2025-09-07T09:16:22.5832698Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dimname_test" == "verify_api_visibility" goto :eof 2025-09-07T09:16:22.5833988Z 2025-09-07T09:16:22.5834566Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-09-07T09:16:22.5835463Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-09-07T09:16:22.5836834Z 2025-09-07T09:16:22.5837233Z (base) C:\actions-runner\_work\pytorch\pytorch>if "Dimname_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:16:22.5837914Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\Dimname_test.exe" 2025-09-07T09:16:22.5838405Z goto :eof 2025-09-07T09:16:22.5838581Z ) 2025-09-07T09:16:22.5838689Z 2025-09-07T09:16:22.5839038Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/Dimname_test" 2025-09-07T09:16:28.1886615Z Found test times from artifacts 2025-09-07T09:16:28.2653108Z Found test times from artifacts 2025-09-07T09:16:28.2676896Z Running all tests 2025-09-07T09:16:28.2682428Z Running parallel tests on 3 processes 2025-09-07T09:16:28.2682774Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:16:28.2683065Z Serial tests (0): 2025-09-07T09:16:28.2683278Z Parallel tests (1): 2025-09-07T09:16:28.2683515Z cpp/Dimname_test 1/1 2025-09-07T09:16:28.2683754Z Name: excluded (est. time: 0.0min) 2025-09-07T09:16:28.2684020Z Serial tests (0): 2025-09-07T09:16:28.2684234Z Parallel tests (0): 2025-09-07T09:16:28.2685712Z Running cpp/Dimname_test 1/1 ... [2025-09-07 09:16:28.268144] 2025-09-07T09:16:28.2686107Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:16:28.2695930Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\Dimname_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9a1504cb0feba650.xml', '-x', '--reruns=2'] ... [2025-09-07 09:16:28.269294] 2025-09-07T09:16:28.2697752Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:16:30.4861551Z 2025-09-07T09:16:30.4862416Z cpp/Dimname_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dimname_test_1.1_bb4e971b4d659b5b_.log 2025-09-07T09:16:30.4863317Z 2025-09-07T09:16:34.2629714Z Running cpp/Dimname_test 1/1 ... [2025-09-07 09:16:34.262403] 2025-09-07T09:16:34.2630175Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:16:34.2638821Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\Dimname_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c38e81e129b358b7.xml', '-x', '--reruns=2'] ... [2025-09-07 09:16:34.263595] 2025-09-07T09:16:37.1757676Z 2025-09-07T09:16:37.1758555Z cpp/Dimname_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.Dimname_test_1.1_05dfac70f1bc4815_.log 2025-09-07T09:16:37.1759262Z 2025-09-07T09:16:37.7969398Z Running test batch 'tests to run' cost 9.53 seconds 2025-09-07T09:16:37.7975676Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:16:37.7976142Z Uploading artifacts took 0.00 seconds 2025-09-07T09:16:38.2833187Z 2025-09-07T09:16:38.2833753Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:16:38.2834221Z echo "Dimname_test" failed with exit code 0 2025-09-07T09:16:38.2834523Z goto fail 2025-09-07T09:16:38.2834709Z ) 2025-09-07T09:16:38.2834810Z 2025-09-07T09:16:38.2835732Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:16:38.2836306Z echo "Dimname_test" failed with exit code 0 2025-09-07T09:16:38.2836616Z goto fail 2025-09-07T09:16:38.2836802Z ) 2025-09-07T09:16:38.2836914Z 2025-09-07T09:16:38.2837088Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:16:38.2844517Z 2025-09-07T09:16:38.2844863Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:16:38.2845620Z call :libtorch_check "dlconvertor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-09-07T09:16:38.2846275Z if errorlevel 1 goto fail 2025-09-07T09:16:38.2846501Z ) 2025-09-07T09:16:38.2854954Z 2025-09-07T09:16:38.2855291Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:16:38.2859241Z 2025-09-07T09:16:38.2859765Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:16:38.2862238Z 2025-09-07T09:16:38.2862684Z (base) C:\actions-runner\_work\pytorch\pytorch>if "dlconvertor_test" == "verify_api_visibility" goto :eof 2025-09-07T09:16:38.2863755Z 2025-09-07T09:16:38.2864336Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-09-07T09:16:38.2865276Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-09-07T09:16:38.2866334Z 2025-09-07T09:16:38.2866754Z (base) C:\actions-runner\_work\pytorch\pytorch>if "dlconvertor_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:16:38.2867473Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\dlconvertor_test.exe" 2025-09-07T09:16:38.2868026Z goto :eof 2025-09-07T09:16:38.2868248Z ) 2025-09-07T09:16:38.2868428Z 2025-09-07T09:16:38.2869102Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/dlconvertor_test" 2025-09-07T09:16:43.9418077Z Found test times from artifacts 2025-09-07T09:16:44.0179337Z Found test times from artifacts 2025-09-07T09:16:44.0203615Z Running all tests 2025-09-07T09:16:44.0208933Z Running parallel tests on 3 processes 2025-09-07T09:16:44.0209412Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:16:44.0209694Z Serial tests (0): 2025-09-07T09:16:44.0209925Z Parallel tests (1): 2025-09-07T09:16:44.0210150Z cpp/dlconvertor_test 1/1 2025-09-07T09:16:44.0210412Z Name: excluded (est. time: 0.0min) 2025-09-07T09:16:44.0210667Z Serial tests (0): 2025-09-07T09:16:44.0210876Z Parallel tests (0): 2025-09-07T09:16:44.0212455Z Running cpp/dlconvertor_test 1/1 ... [2025-09-07 09:16:44.020739] 2025-09-07T09:16:44.0212992Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:16:44.0222335Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\dlconvertor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c2930835f82ce40a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:16:44.021882] 2025-09-07T09:16:44.0224184Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:16:46.2544179Z 2025-09-07T09:16:46.2545030Z cpp/dlconvertor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.dlconvertor_test_1.1_65a0cb37dad29c8f_.log 2025-09-07T09:16:46.2546165Z 2025-09-07T09:16:50.0215792Z Running cpp/dlconvertor_test 1/1 ... [2025-09-07 09:16:50.020778] 2025-09-07T09:16:50.0216244Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:16:50.0224782Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\dlconvertor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9d57ac9bc26caf2b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:16:50.020778] 2025-09-07T09:16:52.9388734Z 2025-09-07T09:16:52.9389887Z cpp/dlconvertor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.dlconvertor_test_1.1_d5c135aea4233c4d_.log 2025-09-07T09:16:52.9390613Z 2025-09-07T09:16:53.5700866Z Running test batch 'tests to run' cost 9.55 seconds 2025-09-07T09:16:53.5707772Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:16:53.5708220Z Uploading artifacts took 0.00 seconds 2025-09-07T09:16:54.0597584Z 2025-09-07T09:16:54.0598147Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:16:54.0598645Z echo "dlconvertor_test" failed with exit code 0 2025-09-07T09:16:54.0598948Z goto fail 2025-09-07T09:16:54.0599140Z ) 2025-09-07T09:16:54.0599247Z 2025-09-07T09:16:54.0599435Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:16:54.0599871Z echo "dlconvertor_test" failed with exit code 0 2025-09-07T09:16:54.0600172Z goto fail 2025-09-07T09:16:54.0600361Z ) 2025-09-07T09:16:54.0600454Z 2025-09-07T09:16:54.0600619Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:16:54.0607846Z 2025-09-07T09:16:54.0608368Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:16:54.0609125Z call :libtorch_check "extension_backend_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-09-07T09:16:54.0609816Z if errorlevel 1 goto fail 2025-09-07T09:16:54.0610043Z ) 2025-09-07T09:16:54.0617973Z 2025-09-07T09:16:54.0618360Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:16:54.0621771Z 2025-09-07T09:16:54.0622295Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:16:54.0624525Z 2025-09-07T09:16:54.0624992Z (base) C:\actions-runner\_work\pytorch\pytorch>if "extension_backend_test" == "verify_api_visibility" goto :eof 2025-09-07T09:16:54.0625846Z 2025-09-07T09:16:54.0626594Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-09-07T09:16:54.0627555Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-09-07T09:16:54.0628024Z 2025-09-07T09:16:54.0628430Z (base) C:\actions-runner\_work\pytorch\pytorch>if "extension_backend_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:16:54.0629201Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\extension_backend_test.exe" 2025-09-07T09:16:54.0629826Z goto :eof 2025-09-07T09:16:54.0630119Z ) 2025-09-07T09:16:54.0630221Z 2025-09-07T09:16:54.0630598Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/extension_backend_test" 2025-09-07T09:16:59.6766972Z Found test times from artifacts 2025-09-07T09:16:59.7527487Z Found test times from artifacts 2025-09-07T09:16:59.7551069Z Running all tests 2025-09-07T09:16:59.7556417Z Running parallel tests on 3 processes 2025-09-07T09:16:59.7556776Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:16:59.7557064Z Serial tests (0): 2025-09-07T09:16:59.7557289Z Parallel tests (1): 2025-09-07T09:16:59.7557524Z cpp/extension_backend_test 1/1 2025-09-07T09:16:59.7557803Z Name: excluded (est. time: 0.0min) 2025-09-07T09:16:59.7558054Z Serial tests (0): 2025-09-07T09:16:59.7558272Z Parallel tests (0): 2025-09-07T09:16:59.7559961Z Running cpp/extension_backend_test 1/1 ... [2025-09-07 09:16:59.741342] 2025-09-07T09:16:59.7560399Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:16:59.7569448Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\extension_backend_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b9643a954ceea06e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:16:59.741342] 2025-09-07T09:16:59.7571419Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:17:02.0329849Z 2025-09-07T09:17:02.0331559Z cpp/extension_backend_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.extension_backend_test_1.1_081ac07dbf4319b6_.log 2025-09-07T09:17:02.0332230Z 2025-09-07T09:17:05.6958493Z Running cpp/extension_backend_test 1/1 ... [2025-09-07 09:17:05.688103] 2025-09-07T09:17:05.6958985Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:17:05.6968025Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\extension_backend_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0d04b980919c1457.xml', '-x', '--reruns=2'] ... [2025-09-07 09:17:05.688103] 2025-09-07T09:17:08.3135266Z 2025-09-07T09:17:08.3136310Z cpp/extension_backend_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.extension_backend_test_1.1_a3b2802d2ab7f644_.log 2025-09-07T09:17:08.3136990Z 2025-09-07T09:17:08.9899878Z Running test batch 'tests to run' cost 9.25 seconds 2025-09-07T09:17:08.9906379Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:17:08.9906826Z Uploading artifacts took 0.00 seconds 2025-09-07T09:17:09.4892163Z 2025-09-07T09:17:09.4892826Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:17:09.4893388Z echo "extension_backend_test" failed with exit code 0 2025-09-07T09:17:09.4893769Z goto fail 2025-09-07T09:17:09.4893954Z ) 2025-09-07T09:17:09.4906472Z 2025-09-07T09:17:09.4906768Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:17:09.4907221Z echo "extension_backend_test" failed with exit code 0 2025-09-07T09:17:09.4907546Z goto fail 2025-09-07T09:17:09.4907739Z ) 2025-09-07T09:17:09.4907973Z 2025-09-07T09:17:09.4908132Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:17:09.4915362Z 2025-09-07T09:17:09.4915862Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:17:09.4916586Z call :libtorch_check "half_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-09-07T09:17:09.4917244Z if errorlevel 1 goto fail 2025-09-07T09:17:09.4917491Z ) 2025-09-07T09:17:09.4926004Z 2025-09-07T09:17:09.4926454Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:17:09.4929947Z 2025-09-07T09:17:09.4930442Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:17:09.4932654Z 2025-09-07T09:17:09.4933138Z (base) C:\actions-runner\_work\pytorch\pytorch>if "half_test" == "verify_api_visibility" goto :eof 2025-09-07T09:17:09.4934413Z 2025-09-07T09:17:09.4934938Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-09-07T09:17:09.4935794Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-09-07T09:17:09.4936695Z 2025-09-07T09:17:09.4937066Z (base) C:\actions-runner\_work\pytorch\pytorch>if "half_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:17:09.4937745Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\half_test.exe" 2025-09-07T09:17:09.4938207Z goto :eof 2025-09-07T09:17:09.4938399Z ) 2025-09-07T09:17:09.4938493Z 2025-09-07T09:17:09.4938829Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/half_test" 2025-09-07T09:17:15.0891975Z Found test times from artifacts 2025-09-07T09:17:15.1652413Z Found test times from artifacts 2025-09-07T09:17:15.1676998Z Running all tests 2025-09-07T09:17:15.1682192Z Running parallel tests on 3 processes 2025-09-07T09:17:15.1682799Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:17:15.1683115Z Serial tests (0): 2025-09-07T09:17:15.1683343Z Parallel tests (1): 2025-09-07T09:17:15.1683566Z cpp/half_test 1/1 2025-09-07T09:17:15.1683807Z Name: excluded (est. time: 0.0min) 2025-09-07T09:17:15.1684059Z Serial tests (0): 2025-09-07T09:17:15.1684280Z Parallel tests (0): 2025-09-07T09:17:15.1685738Z Running cpp/half_test 1/1 ... [2025-09-07 09:17:15.168185] 2025-09-07T09:17:15.1686132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:17:15.1695346Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\half_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-89648d25ff69d575.xml', '-x', '--reruns=2'] ... [2025-09-07 09:17:15.169334] 2025-09-07T09:17:15.1697023Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:17:17.3828438Z 2025-09-07T09:17:17.3829231Z cpp/half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.half_test_1.1_4776add0c788f99a_.log 2025-09-07T09:17:17.3830009Z 2025-09-07T09:17:21.1024852Z Running cpp/half_test 1/1 ... [2025-09-07 09:17:21.102205] 2025-09-07T09:17:21.1025253Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:17:21.1033875Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\half_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5130212019b861fb.xml', '-x', '--reruns=2'] ... [2025-09-07 09:17:21.102797] 2025-09-07T09:17:24.3942230Z 2025-09-07T09:17:24.3943073Z cpp/half_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.half_test_1.1_3a107762affb0bd1_.log 2025-09-07T09:17:24.3944090Z 2025-09-07T09:17:24.9974001Z Running test batch 'tests to run' cost 9.83 seconds 2025-09-07T09:17:24.9979694Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:17:24.9980191Z Uploading artifacts took 0.00 seconds 2025-09-07T09:17:25.4869434Z 2025-09-07T09:17:25.4877918Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:17:25.4878509Z echo "half_test" failed with exit code 0 2025-09-07T09:17:25.4878988Z goto fail 2025-09-07T09:17:25.4879197Z ) 2025-09-07T09:17:25.4879310Z 2025-09-07T09:17:25.4879584Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:17:25.4880038Z echo "half_test" failed with exit code 0 2025-09-07T09:17:25.4880382Z goto fail 2025-09-07T09:17:25.4880613Z ) 2025-09-07T09:17:25.4880723Z 2025-09-07T09:17:25.4880921Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:17:25.4881215Z 2025-09-07T09:17:25.4881363Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:17:25.4882016Z call :libtorch_check "IListRef_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-09-07T09:17:25.4882670Z if errorlevel 1 goto fail 2025-09-07T09:17:25.4882943Z ) 2025-09-07T09:17:25.4888202Z 2025-09-07T09:17:25.4888522Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:17:25.4891710Z 2025-09-07T09:17:25.4892267Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:17:25.4898375Z 2025-09-07T09:17:25.4898875Z (base) C:\actions-runner\_work\pytorch\pytorch>if "IListRef_test" == "verify_api_visibility" goto :eof 2025-09-07T09:17:25.4899731Z 2025-09-07T09:17:25.4900250Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-09-07T09:17:25.4901193Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-09-07T09:17:25.4902048Z 2025-09-07T09:17:25.4902461Z (base) C:\actions-runner\_work\pytorch\pytorch>if "IListRef_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:17:25.4903144Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\IListRef_test.exe" 2025-09-07T09:17:25.4903623Z goto :eof 2025-09-07T09:17:25.4903796Z ) 2025-09-07T09:17:25.4903905Z 2025-09-07T09:17:25.4904255Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/IListRef_test" 2025-09-07T09:17:31.3417897Z Found test times from artifacts 2025-09-07T09:17:31.4188738Z Found test times from artifacts 2025-09-07T09:17:31.4213085Z Running all tests 2025-09-07T09:17:31.4218394Z Running parallel tests on 3 processes 2025-09-07T09:17:31.4218769Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:17:31.4219080Z Serial tests (0): 2025-09-07T09:17:31.4219339Z Parallel tests (1): 2025-09-07T09:17:31.4219583Z cpp/IListRef_test 1/1 2025-09-07T09:17:31.4219880Z Name: excluded (est. time: 0.0min) 2025-09-07T09:17:31.4220174Z Serial tests (0): 2025-09-07T09:17:31.4220400Z Parallel tests (0): 2025-09-07T09:17:31.4222258Z Running cpp/IListRef_test 1/1 ... [2025-09-07 09:17:31.419167] 2025-09-07T09:17:31.4222705Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:17:31.4231870Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\IListRef_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0cd3004b229f8bcc.xml', '-x', '--reruns=2'] ... [2025-09-07 09:17:31.422239] 2025-09-07T09:17:31.4233600Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:17:33.6289368Z 2025-09-07T09:17:33.6290593Z cpp/IListRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.IListRef_test_1.1_b6da4439692d71fe_.log 2025-09-07T09:17:33.6291255Z 2025-09-07T09:17:37.4236552Z Running cpp/IListRef_test 1/1 ... [2025-09-07 09:17:37.423483] 2025-09-07T09:17:37.4237072Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:17:37.4247113Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\IListRef_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a991b94e0ccf5d02.xml', '-x', '--reruns=2'] ... [2025-09-07 09:17:37.424497] 2025-09-07T09:17:42.3428675Z 2025-09-07T09:17:42.3429536Z cpp/IListRef_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.IListRef_test_1.1_36d8b14bff18959c_.log 2025-09-07T09:17:42.3430722Z 2025-09-07T09:17:43.0056915Z Running test batch 'tests to run' cost 11.59 seconds 2025-09-07T09:17:43.0063399Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:17:43.0063932Z Uploading artifacts took 0.00 seconds 2025-09-07T09:17:43.4831638Z 2025-09-07T09:17:43.4832453Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:17:43.4832957Z echo "IListRef_test" failed with exit code 0 2025-09-07T09:17:43.4833281Z goto fail 2025-09-07T09:17:43.4833536Z ) 2025-09-07T09:17:43.4833645Z 2025-09-07T09:17:43.4833858Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:17:43.4834312Z echo "IListRef_test" failed with exit code 0 2025-09-07T09:17:43.4834646Z goto fail 2025-09-07T09:17:43.4835057Z ) 2025-09-07T09:17:43.4835164Z 2025-09-07T09:17:43.4835350Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:17:43.4841272Z 2025-09-07T09:17:43.4841510Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:17:43.4842248Z call :libtorch_check "inline_container_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-09-07T09:17:43.4842958Z if errorlevel 1 goto fail 2025-09-07T09:17:43.4843200Z ) 2025-09-07T09:17:43.4851807Z 2025-09-07T09:17:43.4852189Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:17:43.4855792Z 2025-09-07T09:17:43.4856270Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:17:43.4858405Z 2025-09-07T09:17:43.4858913Z (base) C:\actions-runner\_work\pytorch\pytorch>if "inline_container_test" == "verify_api_visibility" goto :eof 2025-09-07T09:17:43.4860393Z 2025-09-07T09:17:43.4860945Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-09-07T09:17:43.4862015Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-09-07T09:17:43.4862467Z 2025-09-07T09:17:43.4862807Z (base) C:\actions-runner\_work\pytorch\pytorch>if "inline_container_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:17:43.4863607Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\inline_container_test.exe" 2025-09-07T09:17:43.4864222Z goto :eof 2025-09-07T09:17:43.4864452Z ) 2025-09-07T09:17:43.4864564Z 2025-09-07T09:17:43.4864981Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/inline_container_test" 2025-09-07T09:17:49.2077457Z Found test times from artifacts 2025-09-07T09:17:49.2840343Z Found test times from artifacts 2025-09-07T09:17:49.2864933Z Running all tests 2025-09-07T09:17:49.2869958Z Running parallel tests on 3 processes 2025-09-07T09:17:49.2870346Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:17:49.2870696Z Serial tests (0): 2025-09-07T09:17:49.2871107Z Parallel tests (1): 2025-09-07T09:17:49.2871378Z cpp/inline_container_test 1/1 2025-09-07T09:17:49.2871667Z Name: excluded (est. time: 0.0min) 2025-09-07T09:17:49.2871972Z Serial tests (0): 2025-09-07T09:17:49.2872201Z Parallel tests (0): 2025-09-07T09:17:49.2873696Z Running cpp/inline_container_test 1/1 ... [2025-09-07 09:17:49.287076] 2025-09-07T09:17:49.2874127Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:17:49.2883501Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\inline_container_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-79a5c6234c983cc0.xml', '-x', '--reruns=2'] ... [2025-09-07 09:17:49.288182] 2025-09-07T09:17:49.2885349Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:17:51.5196059Z 2025-09-07T09:17:51.5197086Z cpp/inline_container_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.inline_container_test_1.1_b8d91ff0e620c8f8_.log 2025-09-07T09:17:51.5197799Z 2025-09-07T09:17:55.2784228Z Running cpp/inline_container_test 1/1 ... [2025-09-07 09:17:55.278014] 2025-09-07T09:17:55.2784721Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:17:55.2793721Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\inline_container_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0d467a499448a719.xml', '-x', '--reruns=2'] ... [2025-09-07 09:17:55.279156] 2025-09-07T09:17:59.1255332Z 2025-09-07T09:17:59.1256403Z cpp/inline_container_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.inline_container_test_1.1_ef70acfcc82f68d9_.log 2025-09-07T09:17:59.1260209Z 2025-09-07T09:17:59.7588610Z Running test batch 'tests to run' cost 10.47 seconds 2025-09-07T09:17:59.7595005Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:17:59.7595570Z Uploading artifacts took 0.00 seconds 2025-09-07T09:18:00.2418836Z 2025-09-07T09:18:00.2419676Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:18:00.2420183Z echo "inline_container_test" failed with exit code 0 2025-09-07T09:18:00.2420552Z goto fail 2025-09-07T09:18:00.2420768Z ) 2025-09-07T09:18:00.2420873Z 2025-09-07T09:18:00.2421082Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:18:00.2421676Z echo "inline_container_test" failed with exit code 0 2025-09-07T09:18:00.2422025Z goto fail 2025-09-07T09:18:00.2422304Z ) 2025-09-07T09:18:00.2422410Z 2025-09-07T09:18:00.2422594Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:18:00.2428680Z 2025-09-07T09:18:00.2429167Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:18:00.2429864Z call :libtorch_check "ivalue_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-09-07T09:18:00.2430506Z if errorlevel 1 goto fail 2025-09-07T09:18:00.2430780Z ) 2025-09-07T09:18:00.2439524Z 2025-09-07T09:18:00.2439967Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:18:00.2443365Z 2025-09-07T09:18:00.2443843Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:18:00.2446321Z 2025-09-07T09:18:00.2446829Z (base) C:\actions-runner\_work\pytorch\pytorch>if "ivalue_test" == "verify_api_visibility" goto :eof 2025-09-07T09:18:00.2447734Z 2025-09-07T09:18:00.2448263Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-09-07T09:18:00.2449328Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-09-07T09:18:00.2449924Z 2025-09-07T09:18:00.2450535Z (base) C:\actions-runner\_work\pytorch\pytorch>if "ivalue_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:18:00.2451354Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\ivalue_test.exe" 2025-09-07T09:18:00.2451845Z goto :eof 2025-09-07T09:18:00.2452205Z ) 2025-09-07T09:18:00.2452316Z 2025-09-07T09:18:00.2452778Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/ivalue_test" 2025-09-07T09:18:05.9113986Z Found test times from artifacts 2025-09-07T09:18:05.9877926Z Found test times from artifacts 2025-09-07T09:18:05.9902094Z Running all tests 2025-09-07T09:18:05.9906975Z Running parallel tests on 3 processes 2025-09-07T09:18:05.9907314Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:18:05.9907633Z Serial tests (0): 2025-09-07T09:18:05.9907901Z Parallel tests (1): 2025-09-07T09:18:05.9908137Z cpp/ivalue_test 1/1 2025-09-07T09:18:05.9908409Z Name: excluded (est. time: 0.0min) 2025-09-07T09:18:05.9908676Z Serial tests (0): 2025-09-07T09:18:05.9908920Z Parallel tests (0): 2025-09-07T09:18:05.9910523Z Running cpp/ivalue_test 1/1 ... [2025-09-07 09:18:05.990596] 2025-09-07T09:18:05.9910935Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:18:05.9920332Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\ivalue_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-dc8605742ea77fbd.xml', '-x', '--reruns=2'] ... [2025-09-07 09:18:05.991740] 2025-09-07T09:18:05.9922144Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:18:08.2439136Z 2025-09-07T09:18:08.2440306Z cpp/ivalue_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.ivalue_test_1.1_226569fab835469b_.log 2025-09-07T09:18:08.2440930Z 2025-09-07T09:18:11.9513104Z Running cpp/ivalue_test 1/1 ... [2025-09-07 09:18:11.951133] 2025-09-07T09:18:11.9513587Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:18:11.9523243Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\ivalue_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-cb936e9eb0fbb570.xml', '-x', '--reruns=2'] ... [2025-09-07 09:18:11.952114] 2025-09-07T09:18:19.7595939Z 2025-09-07T09:18:19.7596770Z cpp/ivalue_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.ivalue_test_1.1_49c83232da2dfa18_.log 2025-09-07T09:18:19.7598173Z 2025-09-07T09:18:20.3656171Z Running test batch 'tests to run' cost 14.37 seconds 2025-09-07T09:18:20.3662781Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:18:20.3663280Z Uploading artifacts took 0.00 seconds 2025-09-07T09:18:20.8515970Z 2025-09-07T09:18:20.8516588Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:18:20.8517045Z echo "ivalue_test" failed with exit code 0 2025-09-07T09:18:20.8517373Z goto fail 2025-09-07T09:18:20.8517570Z ) 2025-09-07T09:18:20.8517730Z 2025-09-07T09:18:20.8517931Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:18:20.8518360Z echo "ivalue_test" failed with exit code 0 2025-09-07T09:18:20.8518678Z goto fail 2025-09-07T09:18:20.8518895Z ) 2025-09-07T09:18:20.8519009Z 2025-09-07T09:18:20.8519172Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:18:20.8525450Z 2025-09-07T09:18:20.8525959Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:18:20.8526894Z call :libtorch_check "KernelFunction_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-09-07T09:18:20.8527606Z if errorlevel 1 goto fail 2025-09-07T09:18:20.8527855Z ) 2025-09-07T09:18:20.8536176Z 2025-09-07T09:18:20.8536672Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:18:20.8540663Z 2025-09-07T09:18:20.8541320Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:18:20.8543817Z 2025-09-07T09:18:20.8544398Z (base) C:\actions-runner\_work\pytorch\pytorch>if "KernelFunction_test" == "verify_api_visibility" goto :eof 2025-09-07T09:18:20.8545325Z 2025-09-07T09:18:20.8546016Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-09-07T09:18:20.8547001Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-09-07T09:18:20.8547435Z 2025-09-07T09:18:20.8547866Z (base) C:\actions-runner\_work\pytorch\pytorch>if "KernelFunction_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:18:20.8548598Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\KernelFunction_test.exe" 2025-09-07T09:18:20.8549091Z goto :eof 2025-09-07T09:18:20.8549269Z ) 2025-09-07T09:18:20.8549359Z 2025-09-07T09:18:20.8549729Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/KernelFunction_test" 2025-09-07T09:18:26.6284022Z Found test times from artifacts 2025-09-07T09:18:26.7048273Z Found test times from artifacts 2025-09-07T09:18:26.7073198Z Running all tests 2025-09-07T09:18:26.7078438Z Running parallel tests on 3 processes 2025-09-07T09:18:26.7078841Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:18:26.7079135Z Serial tests (0): 2025-09-07T09:18:26.7079343Z Parallel tests (1): 2025-09-07T09:18:26.7079598Z cpp/KernelFunction_test 1/1 2025-09-07T09:18:26.7079854Z Name: excluded (est. time: 0.0min) 2025-09-07T09:18:26.7080117Z Serial tests (0): 2025-09-07T09:18:26.7080323Z Parallel tests (0): 2025-09-07T09:18:26.7082584Z Running cpp/KernelFunction_test 1/1 ... [2025-09-07 09:18:26.707793] 2025-09-07T09:18:26.7083030Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:18:26.7092102Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\KernelFunction_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-55a40b032157b3e8.xml', '-x', '--reruns=2'] ... [2025-09-07 09:18:26.708936] 2025-09-07T09:18:26.7093946Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:18:28.9712858Z 2025-09-07T09:18:28.9713808Z cpp/KernelFunction_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.KernelFunction_test_1.1_16dc55115ea0ecb9_.log 2025-09-07T09:18:28.9714469Z 2025-09-07T09:18:32.7106792Z Running cpp/KernelFunction_test 1/1 ... [2025-09-07 09:18:32.710433] 2025-09-07T09:18:32.7107251Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:18:32.7116138Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\KernelFunction_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e8dc9c1b1ecc1f6b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:18:32.711030] 2025-09-07T09:18:38.7006851Z 2025-09-07T09:18:38.7007966Z cpp/KernelFunction_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.KernelFunction_test_1.1_0ee6fe409c6c7499_.log 2025-09-07T09:18:38.7008786Z 2025-09-07T09:18:39.3156448Z Running test batch 'tests to run' cost 12.61 seconds 2025-09-07T09:18:39.3162842Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:18:39.3163312Z Uploading artifacts took 0.00 seconds 2025-09-07T09:18:39.8075154Z 2025-09-07T09:18:39.8075909Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:18:39.8076390Z echo "KernelFunction_test" failed with exit code 0 2025-09-07T09:18:39.8076718Z goto fail 2025-09-07T09:18:39.8077059Z ) 2025-09-07T09:18:39.8077155Z 2025-09-07T09:18:39.8077432Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:18:39.8077862Z echo "KernelFunction_test" failed with exit code 0 2025-09-07T09:18:39.8078247Z goto fail 2025-09-07T09:18:39.8078427Z ) 2025-09-07T09:18:39.8078548Z 2025-09-07T09:18:39.8078740Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:18:39.8085063Z 2025-09-07T09:18:39.8085556Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:18:39.8086365Z call :libtorch_check "kernel_function_legacy_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-09-07T09:18:39.8087093Z if errorlevel 1 goto fail 2025-09-07T09:18:39.8087317Z ) 2025-09-07T09:18:39.8096370Z 2025-09-07T09:18:39.8096973Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:18:39.8099980Z 2025-09-07T09:18:39.8100615Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:18:39.8103121Z 2025-09-07T09:18:39.8103571Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_legacy_test" == "verify_api_visibility" goto :eof 2025-09-07T09:18:39.8104437Z 2025-09-07T09:18:39.8105047Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-09-07T09:18:39.8106043Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-09-07T09:18:39.8106518Z 2025-09-07T09:18:39.8106946Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_legacy_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:18:39.8107802Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_legacy_test.exe" 2025-09-07T09:18:39.8108330Z goto :eof 2025-09-07T09:18:39.8108522Z ) 2025-09-07T09:18:39.8108622Z 2025-09-07T09:18:39.8109014Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_function_legacy_test" 2025-09-07T09:18:45.5229289Z Found test times from artifacts 2025-09-07T09:18:45.6006099Z Found test times from artifacts 2025-09-07T09:18:45.6029607Z Running all tests 2025-09-07T09:18:45.6035232Z Running parallel tests on 3 processes 2025-09-07T09:18:45.6035600Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:18:45.6035891Z Serial tests (0): 2025-09-07T09:18:45.6036115Z Parallel tests (1): 2025-09-07T09:18:45.6036351Z cpp/kernel_function_legacy_test 1/1 2025-09-07T09:18:45.6036653Z Name: excluded (est. time: 0.0min) 2025-09-07T09:18:45.6036910Z Serial tests (0): 2025-09-07T09:18:45.6037129Z Parallel tests (0): 2025-09-07T09:18:45.6038590Z Running cpp/kernel_function_legacy_test 1/1 ... [2025-09-07 09:18:45.597997] 2025-09-07T09:18:45.6039035Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:18:45.6048540Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_function_legacy_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-c4ec3e23379590e3.xml', '-x', '--reruns=2'] ... [2025-09-07 09:18:45.604099] 2025-09-07T09:18:45.6051268Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:18:47.8579573Z 2025-09-07T09:18:47.8580784Z cpp/kernel_function_legacy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_function_legacy_test_1.1_4d5b6f8f409a4737_.log 2025-09-07T09:18:47.8581494Z 2025-09-07T09:18:51.5990100Z Running cpp/kernel_function_legacy_test 1/1 ... [2025-09-07 09:18:51.596336] 2025-09-07T09:18:51.5990594Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:18:51.5999037Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_function_legacy_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-85285c58140f95ff.xml', '-x', '--reruns=2'] ... [2025-09-07 09:18:51.596336] 2025-09-07T09:19:01.3021092Z 2025-09-07T09:19:01.3022302Z cpp/kernel_function_legacy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_function_legacy_test_1.1_6accbe7013a88c55_.log 2025-09-07T09:19:01.3025066Z 2025-09-07T09:19:01.9252225Z Running test batch 'tests to run' cost 16.33 seconds 2025-09-07T09:19:01.9259105Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:19:01.9260031Z Uploading artifacts took 0.00 seconds 2025-09-07T09:19:02.4215425Z 2025-09-07T09:19:02.4216031Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:19:02.4216582Z echo "kernel_function_legacy_test" failed with exit code 0 2025-09-07T09:19:02.4216959Z goto fail 2025-09-07T09:19:02.4217182Z ) 2025-09-07T09:19:02.4217295Z 2025-09-07T09:19:02.4217499Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:19:02.4218148Z echo "kernel_function_legacy_test" failed with exit code 0 2025-09-07T09:19:02.4218508Z goto fail 2025-09-07T09:19:02.4218741Z ) 2025-09-07T09:19:02.4218853Z 2025-09-07T09:19:02.4219053Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:19:02.4224602Z 2025-09-07T09:19:02.4225059Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:19:02.4225844Z call :libtorch_check "kernel_function_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-09-07T09:19:02.4226528Z if errorlevel 1 goto fail 2025-09-07T09:19:02.4226794Z ) 2025-09-07T09:19:02.4235361Z 2025-09-07T09:19:02.4235759Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:19:02.4239443Z 2025-09-07T09:19:02.4239985Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:19:02.4242314Z 2025-09-07T09:19:02.4242850Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_test" == "verify_api_visibility" goto :eof 2025-09-07T09:19:02.4243671Z 2025-09-07T09:19:02.4244248Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-09-07T09:19:02.4245240Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-09-07T09:19:02.4246345Z 2025-09-07T09:19:02.4246842Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_function_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:19:02.4247654Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_function_test.exe" 2025-09-07T09:19:02.4248199Z goto :eof 2025-09-07T09:19:02.4248393Z ) 2025-09-07T09:19:02.4248495Z 2025-09-07T09:19:02.4248904Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_function_test" 2025-09-07T09:19:08.0006035Z Found test times from artifacts 2025-09-07T09:19:08.0765805Z Found test times from artifacts 2025-09-07T09:19:08.0790072Z Running all tests 2025-09-07T09:19:08.0796380Z Running parallel tests on 3 processes 2025-09-07T09:19:08.0796761Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:19:08.0797076Z Serial tests (0): 2025-09-07T09:19:08.0797307Z Parallel tests (1): 2025-09-07T09:19:08.0797593Z cpp/kernel_function_test 1/1 2025-09-07T09:19:08.0797875Z Name: excluded (est. time: 0.0min) 2025-09-07T09:19:08.0798167Z Serial tests (0): 2025-09-07T09:19:08.0798395Z Parallel tests (0): 2025-09-07T09:19:08.0799416Z Running cpp/kernel_function_test 1/1 ... [2025-09-07 09:19:08.079540] 2025-09-07T09:19:08.0799943Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:19:08.0809288Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_function_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d64b3379f75ed9a1.xml', '-x', '--reruns=2'] ... [2025-09-07 09:19:08.080713] 2025-09-07T09:19:08.0811049Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:19:10.3177795Z 2025-09-07T09:19:10.3178872Z cpp/kernel_function_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_function_test_1.1_508effa290b9edfb_.log 2025-09-07T09:19:10.3179652Z 2025-09-07T09:19:14.0779311Z Running cpp/kernel_function_test 1/1 ... [2025-09-07 09:19:14.077258] 2025-09-07T09:19:14.0779800Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:19:14.0788956Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_function_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e3b26c2963769bab.xml', '-x', '--reruns=2'] ... [2025-09-07 09:19:14.078703] 2025-09-07T09:19:22.4846013Z 2025-09-07T09:19:22.4847113Z cpp/kernel_function_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_function_test_1.1_66ab1e9a8257acf9_.log 2025-09-07T09:19:22.4848302Z 2025-09-07T09:19:23.0949186Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:19:23.0949817Z Uploading artifacts took 0.00 seconds 2025-09-07T09:19:23.0959592Z Running test batch 'tests to run' cost 15.01 seconds 2025-09-07T09:19:23.5812013Z 2025-09-07T09:19:23.5812598Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:19:23.5813123Z echo "kernel_function_test" failed with exit code 0 2025-09-07T09:19:23.5813462Z goto fail 2025-09-07T09:19:23.5813689Z ) 2025-09-07T09:19:23.5813817Z 2025-09-07T09:19:23.5814045Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:19:23.5814494Z echo "kernel_function_test" failed with exit code 0 2025-09-07T09:19:23.5814920Z goto fail 2025-09-07T09:19:23.5815125Z ) 2025-09-07T09:19:23.5815300Z 2025-09-07T09:19:23.5815462Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:19:23.5822426Z 2025-09-07T09:19:23.5822790Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:19:23.5823601Z call :libtorch_check "kernel_lambda_legacy_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-09-07T09:19:23.5824350Z if errorlevel 1 goto fail 2025-09-07T09:19:23.5824618Z ) 2025-09-07T09:19:23.5833550Z 2025-09-07T09:19:23.5833953Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:19:23.5837608Z 2025-09-07T09:19:23.5838157Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:19:23.5840804Z 2025-09-07T09:19:23.5841453Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_legacy_test" == "verify_api_visibility" goto :eof 2025-09-07T09:19:23.5842124Z 2025-09-07T09:19:23.5842720Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-09-07T09:19:23.5843796Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-09-07T09:19:23.5844612Z 2025-09-07T09:19:23.5845060Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_legacy_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:19:23.5846037Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_legacy_test.exe" 2025-09-07T09:19:23.5846608Z goto :eof 2025-09-07T09:19:23.5846811Z ) 2025-09-07T09:19:23.5846922Z 2025-09-07T09:19:23.5847347Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_lambda_legacy_test" 2025-09-07T09:19:29.2202377Z Found test times from artifacts 2025-09-07T09:19:29.2966631Z Found test times from artifacts 2025-09-07T09:19:29.2990384Z Running all tests 2025-09-07T09:19:29.2995435Z Running parallel tests on 3 processes 2025-09-07T09:19:29.2996107Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:19:29.2996449Z Serial tests (0): 2025-09-07T09:19:29.2996716Z Parallel tests (1): 2025-09-07T09:19:29.2996969Z cpp/kernel_lambda_legacy_test 1/1 2025-09-07T09:19:29.2997301Z Name: excluded (est. time: 0.0min) 2025-09-07T09:19:29.2997619Z Serial tests (0): 2025-09-07T09:19:29.2997843Z Parallel tests (0): 2025-09-07T09:19:29.2998921Z Running cpp/kernel_lambda_legacy_test 1/1 ... [2025-09-07 09:19:29.292718] 2025-09-07T09:19:29.2999366Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:19:29.3008548Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_lambda_legacy_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-334ee5be20371a05.xml', '-x', '--reruns=2'] ... [2025-09-07 09:19:29.292718] 2025-09-07T09:19:29.3010262Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:19:31.5101268Z 2025-09-07T09:19:31.5102195Z cpp/kernel_lambda_legacy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_lambda_legacy_test_1.1_07dbdabd84ebd5d7_.log 2025-09-07T09:19:31.5102948Z 2025-09-07T09:19:35.2188055Z Running cpp/kernel_lambda_legacy_test 1/1 ... [2025-09-07 09:19:35.218516] 2025-09-07T09:19:35.2188537Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:19:35.2197816Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_lambda_legacy_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-02578d5394ed4e25.xml', '-x', '--reruns=2'] ... [2025-09-07 09:19:35.219132] 2025-09-07T09:19:44.9265290Z 2025-09-07T09:19:44.9266305Z cpp/kernel_lambda_legacy_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_lambda_legacy_test_1.1_247946e550a41996_.log 2025-09-07T09:19:44.9267955Z 2025-09-07T09:19:45.6072090Z Running test batch 'tests to run' cost 16.3 seconds 2025-09-07T09:19:45.6078688Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:19:45.6079190Z Uploading artifacts took 0.00 seconds 2025-09-07T09:19:46.0940618Z 2025-09-07T09:19:46.0941147Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:19:46.0941620Z echo "kernel_lambda_legacy_test" failed with exit code 0 2025-09-07T09:19:46.0941985Z goto fail 2025-09-07T09:19:46.0942164Z ) 2025-09-07T09:19:46.0942265Z 2025-09-07T09:19:46.0942475Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:19:46.0943069Z echo "kernel_lambda_legacy_test" failed with exit code 0 2025-09-07T09:19:46.0943422Z goto fail 2025-09-07T09:19:46.0943602Z ) 2025-09-07T09:19:46.0943716Z 2025-09-07T09:19:46.0943873Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:19:46.0952407Z 2025-09-07T09:19:46.0952639Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:19:46.0953333Z call :libtorch_check "kernel_lambda_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-09-07T09:19:46.0954143Z if errorlevel 1 goto fail 2025-09-07T09:19:46.0954365Z ) 2025-09-07T09:19:46.0963352Z 2025-09-07T09:19:46.0963736Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:19:46.0967156Z 2025-09-07T09:19:46.0967599Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:19:46.0969711Z 2025-09-07T09:19:46.0970143Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_test" == "verify_api_visibility" goto :eof 2025-09-07T09:19:46.0970964Z 2025-09-07T09:19:46.0971497Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-09-07T09:19:46.0972433Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-09-07T09:19:46.0973199Z 2025-09-07T09:19:46.0973623Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_lambda_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:19:46.0974353Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_lambda_test.exe" 2025-09-07T09:19:46.0974925Z goto :eof 2025-09-07T09:19:46.0975098Z ) 2025-09-07T09:19:46.0975219Z 2025-09-07T09:19:46.0975584Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_lambda_test" 2025-09-07T09:19:51.7089015Z Found test times from artifacts 2025-09-07T09:19:51.7852756Z Found test times from artifacts 2025-09-07T09:19:51.7877238Z Running all tests 2025-09-07T09:19:51.7882428Z Running parallel tests on 3 processes 2025-09-07T09:19:51.7882815Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:19:51.7883110Z Serial tests (0): 2025-09-07T09:19:51.7883336Z Parallel tests (1): 2025-09-07T09:19:51.7883562Z cpp/kernel_lambda_test 1/1 2025-09-07T09:19:51.7883848Z Name: excluded (est. time: 0.0min) 2025-09-07T09:19:51.7884100Z Serial tests (0): 2025-09-07T09:19:51.7884319Z Parallel tests (0): 2025-09-07T09:19:51.7886085Z Running cpp/kernel_lambda_test 1/1 ... [2025-09-07 09:19:51.788170] 2025-09-07T09:19:51.7886490Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:19:51.7896018Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_lambda_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-bd52ab79c939a3eb.xml', '-x', '--reruns=2'] ... [2025-09-07 09:19:51.789346] 2025-09-07T09:19:51.7897753Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:19:53.9876123Z 2025-09-07T09:19:53.9876952Z cpp/kernel_lambda_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_lambda_test_1.1_3d7064ec596af811_.log 2025-09-07T09:19:53.9877783Z 2025-09-07T09:19:57.6882886Z Running cpp/kernel_lambda_test 1/1 ... [2025-09-07 09:19:57.687734] 2025-09-07T09:19:57.6883374Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:19:57.6892251Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_lambda_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-8d71c04f132d065a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:19:57.688909] 2025-09-07T09:20:05.9758981Z 2025-09-07T09:20:05.9760003Z cpp/kernel_lambda_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_lambda_test_1.1_b15600e5d0becf18_.log 2025-09-07T09:20:05.9761261Z 2025-09-07T09:20:06.5839430Z Running test batch 'tests to run' cost 14.8 seconds 2025-09-07T09:20:06.5845915Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:20:06.5846607Z Uploading artifacts took 0.00 seconds 2025-09-07T09:20:07.0832360Z 2025-09-07T09:20:07.0832829Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:20:07.0833304Z echo "kernel_lambda_test" failed with exit code 0 2025-09-07T09:20:07.0833637Z goto fail 2025-09-07T09:20:07.0833820Z ) 2025-09-07T09:20:07.0833939Z 2025-09-07T09:20:07.0834136Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:20:07.0834565Z echo "kernel_lambda_test" failed with exit code 0 2025-09-07T09:20:07.0834860Z goto fail 2025-09-07T09:20:07.0835044Z ) 2025-09-07T09:20:07.0835138Z 2025-09-07T09:20:07.0835289Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:20:07.0842282Z 2025-09-07T09:20:07.0842508Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:20:07.0843249Z call :libtorch_check "kernel_stackbased_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-09-07T09:20:07.0843927Z if errorlevel 1 goto fail 2025-09-07T09:20:07.0844169Z ) 2025-09-07T09:20:07.0852343Z 2025-09-07T09:20:07.0852685Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:20:07.0856108Z 2025-09-07T09:20:07.0856573Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:20:07.0858909Z 2025-09-07T09:20:07.0859424Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_stackbased_test" == "verify_api_visibility" goto :eof 2025-09-07T09:20:07.0860623Z 2025-09-07T09:20:07.0861214Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-09-07T09:20:07.0862175Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-09-07T09:20:07.0862805Z 2025-09-07T09:20:07.0863426Z (base) C:\actions-runner\_work\pytorch\pytorch>if "kernel_stackbased_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:20:07.0864198Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\kernel_stackbased_test.exe" 2025-09-07T09:20:07.0864705Z goto :eof 2025-09-07T09:20:07.0864901Z ) 2025-09-07T09:20:07.0864998Z 2025-09-07T09:20:07.0865382Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/kernel_stackbased_test" 2025-09-07T09:20:12.7507513Z Found test times from artifacts 2025-09-07T09:20:12.8274845Z Found test times from artifacts 2025-09-07T09:20:12.8298814Z Running all tests 2025-09-07T09:20:12.8304120Z Running parallel tests on 3 processes 2025-09-07T09:20:12.8304505Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:20:12.8304796Z Serial tests (0): 2025-09-07T09:20:12.8305009Z Parallel tests (1): 2025-09-07T09:20:12.8305272Z cpp/kernel_stackbased_test 1/1 2025-09-07T09:20:12.8305550Z Name: excluded (est. time: 0.0min) 2025-09-07T09:20:12.8305808Z Serial tests (0): 2025-09-07T09:20:12.8306007Z Parallel tests (0): 2025-09-07T09:20:12.8307762Z Running cpp/kernel_stackbased_test 1/1 ... [2025-09-07 09:20:12.824167] 2025-09-07T09:20:12.8308178Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:20:12.8317469Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_stackbased_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b408e60ec09fc03c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:20:12.824167] 2025-09-07T09:20:12.8319188Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:20:15.1667384Z 2025-09-07T09:20:15.1668422Z cpp/kernel_stackbased_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_stackbased_test_1.1_edd26e1810c23f7e_.log 2025-09-07T09:20:15.1669101Z 2025-09-07T09:20:18.8937927Z Running cpp/kernel_stackbased_test 1/1 ... [2025-09-07 09:20:18.893552] 2025-09-07T09:20:18.8938403Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:20:18.8947139Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\kernel_stackbased_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f6a039c49865c5e2.xml', '-x', '--reruns=2'] ... [2025-09-07 09:20:18.894169] 2025-09-07T09:20:22.9152692Z 2025-09-07T09:20:22.9153590Z cpp/kernel_stackbased_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.kernel_stackbased_test_1.1_60d16e2852095505_.log 2025-09-07T09:20:22.9154580Z 2025-09-07T09:20:23.5590321Z Running test batch 'tests to run' cost 10.73 seconds 2025-09-07T09:20:23.5596789Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:20:23.5597236Z Uploading artifacts took 0.00 seconds 2025-09-07T09:20:24.0635570Z 2025-09-07T09:20:24.0637192Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:20:24.0637662Z echo "kernel_stackbased_test" failed with exit code 0 2025-09-07T09:20:24.0638003Z goto fail 2025-09-07T09:20:24.0638201Z ) 2025-09-07T09:20:24.0638312Z 2025-09-07T09:20:24.0638508Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:20:24.0638961Z echo "kernel_stackbased_test" failed with exit code 0 2025-09-07T09:20:24.0639272Z goto fail 2025-09-07T09:20:24.0639455Z ) 2025-09-07T09:20:24.0639550Z 2025-09-07T09:20:24.0639703Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:20:24.0644816Z 2025-09-07T09:20:24.0645031Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:20:24.0645725Z call :libtorch_check "lazy_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-09-07T09:20:24.0646354Z if errorlevel 1 goto fail 2025-09-07T09:20:24.0646598Z ) 2025-09-07T09:20:24.0654782Z 2025-09-07T09:20:24.0655213Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:20:24.0658783Z 2025-09-07T09:20:24.0659269Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:20:24.0661431Z 2025-09-07T09:20:24.0661786Z (base) C:\actions-runner\_work\pytorch\pytorch>if "lazy_tensor_test" == "verify_api_visibility" goto :eof 2025-09-07T09:20:24.0662677Z 2025-09-07T09:20:24.0663219Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-09-07T09:20:24.0664134Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-09-07T09:20:24.0664718Z 2025-09-07T09:20:24.0665073Z (base) C:\actions-runner\_work\pytorch\pytorch>if "lazy_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:20:24.0665805Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\lazy_tensor_test.exe" 2025-09-07T09:20:24.0666326Z goto :eof 2025-09-07T09:20:24.0666517Z ) 2025-09-07T09:20:24.0667252Z 2025-09-07T09:20:24.0667967Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/lazy_tensor_test" 2025-09-07T09:20:29.6877606Z Found test times from artifacts 2025-09-07T09:20:29.7642397Z Found test times from artifacts 2025-09-07T09:20:29.7667610Z Running all tests 2025-09-07T09:20:29.7672994Z Running parallel tests on 3 processes 2025-09-07T09:20:29.7673317Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:20:29.7673604Z Serial tests (0): 2025-09-07T09:20:29.7673961Z Parallel tests (1): 2025-09-07T09:20:29.7674202Z cpp/lazy_tensor_test 1/1 2025-09-07T09:20:29.7674528Z Name: excluded (est. time: 0.0min) 2025-09-07T09:20:29.7674799Z Serial tests (0): 2025-09-07T09:20:29.7675014Z Parallel tests (0): 2025-09-07T09:20:29.7676545Z Running cpp/lazy_tensor_test 1/1 ... [2025-09-07 09:20:29.767070] 2025-09-07T09:20:29.7676987Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:20:29.7686278Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\lazy_tensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d0caaa54f877dc1b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:20:29.768273] 2025-09-07T09:20:29.7687978Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:20:31.9504949Z 2025-09-07T09:20:31.9506066Z cpp/lazy_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.lazy_tensor_test_1.1_6032415ebf867637_.log 2025-09-07T09:20:31.9506686Z 2025-09-07T09:20:35.6095694Z Running cpp/lazy_tensor_test 1/1 ... [2025-09-07 09:20:35.608780] 2025-09-07T09:20:35.6096296Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:20:35.6105426Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\lazy_tensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3db1ed76b8ebe97c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:20:35.610351] 2025-09-07T09:20:38.2827018Z 2025-09-07T09:20:38.2827945Z cpp/lazy_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.lazy_tensor_test_1.1_c51cb33002e3f135_.log 2025-09-07T09:20:38.2828831Z 2025-09-07T09:20:38.9209607Z Running test batch 'tests to run' cost 9.15 seconds 2025-09-07T09:20:38.9216959Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:20:38.9217455Z Uploading artifacts took 0.00 seconds 2025-09-07T09:20:39.4258718Z 2025-09-07T09:20:39.4259324Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:20:39.4259794Z echo "lazy_tensor_test" failed with exit code 0 2025-09-07T09:20:39.4260103Z goto fail 2025-09-07T09:20:39.4260295Z ) 2025-09-07T09:20:39.4260400Z 2025-09-07T09:20:39.4260629Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:20:39.4261039Z echo "lazy_tensor_test" failed with exit code 0 2025-09-07T09:20:39.4261347Z goto fail 2025-09-07T09:20:39.4261532Z ) 2025-09-07T09:20:39.4261799Z 2025-09-07T09:20:39.4261985Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:20:39.4268665Z 2025-09-07T09:20:39.4268845Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:20:39.4269525Z call :libtorch_check "legacy_vmap_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-09-07T09:20:39.4270174Z if errorlevel 1 goto fail 2025-09-07T09:20:39.4270404Z ) 2025-09-07T09:20:39.4279259Z 2025-09-07T09:20:39.4279707Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:20:39.4283226Z 2025-09-07T09:20:39.4283911Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:20:39.4285800Z 2025-09-07T09:20:39.4286353Z (base) C:\actions-runner\_work\pytorch\pytorch>if "legacy_vmap_test" == "verify_api_visibility" goto :eof 2025-09-07T09:20:39.4287737Z 2025-09-07T09:20:39.4288261Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-09-07T09:20:39.4289192Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-09-07T09:20:39.4289773Z 2025-09-07T09:20:39.4290095Z (base) C:\actions-runner\_work\pytorch\pytorch>if "legacy_vmap_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:20:39.4290811Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\legacy_vmap_test.exe" 2025-09-07T09:20:39.4291297Z goto :eof 2025-09-07T09:20:39.4291471Z ) 2025-09-07T09:20:39.4291582Z 2025-09-07T09:20:39.4291938Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/legacy_vmap_test" 2025-09-07T09:20:45.0863830Z Found test times from artifacts 2025-09-07T09:20:45.1626407Z Found test times from artifacts 2025-09-07T09:20:45.1652082Z Running all tests 2025-09-07T09:20:45.1657538Z Running parallel tests on 3 processes 2025-09-07T09:20:45.1657900Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:20:45.1658195Z Serial tests (0): 2025-09-07T09:20:45.1658440Z Parallel tests (1): 2025-09-07T09:20:45.1658660Z cpp/legacy_vmap_test 1/1 2025-09-07T09:20:45.1658931Z Name: excluded (est. time: 0.0min) 2025-09-07T09:20:45.1659177Z Serial tests (0): 2025-09-07T09:20:45.1659389Z Parallel tests (0): 2025-09-07T09:20:45.1661119Z Running cpp/legacy_vmap_test 1/1 ... [2025-09-07 09:20:45.165621] 2025-09-07T09:20:45.1661555Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:20:45.1670780Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\legacy_vmap_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-efb4225157fe1399.xml', '-x', '--reruns=2'] ... [2025-09-07 09:20:45.166827] 2025-09-07T09:20:45.1672452Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:20:47.3418988Z 2025-09-07T09:20:47.3419837Z cpp/legacy_vmap_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.legacy_vmap_test_1.1_646f3a3fe404dfbc_.log 2025-09-07T09:20:47.3420570Z 2025-09-07T09:20:51.0191347Z Running cpp/legacy_vmap_test 1/1 ... [2025-09-07 09:20:51.016000] 2025-09-07T09:20:51.0191811Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:20:51.0200227Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\legacy_vmap_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-cde57e05ddd4ffea.xml', '-x', '--reruns=2'] ... [2025-09-07 09:20:51.016000] 2025-09-07T09:20:56.3013552Z 2025-09-07T09:20:56.3014405Z cpp/legacy_vmap_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.legacy_vmap_test_1.1_7fc59183616590f6_.log 2025-09-07T09:20:56.3015572Z 2025-09-07T09:20:56.9192187Z Running test batch 'tests to run' cost 11.75 seconds 2025-09-07T09:20:56.9198616Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:20:56.9199128Z Uploading artifacts took 0.00 seconds 2025-09-07T09:20:57.4555267Z 2025-09-07T09:20:57.4555817Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:20:57.4556266Z echo "legacy_vmap_test" failed with exit code 0 2025-09-07T09:20:57.4556571Z goto fail 2025-09-07T09:20:57.4558111Z ) 2025-09-07T09:20:57.4558230Z 2025-09-07T09:20:57.4558584Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:20:57.4559016Z echo "legacy_vmap_test" failed with exit code 0 2025-09-07T09:20:57.4559312Z goto fail 2025-09-07T09:20:57.4559496Z ) 2025-09-07T09:20:57.4559590Z 2025-09-07T09:20:57.4559757Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:20:57.4564974Z 2025-09-07T09:20:57.4565154Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:20:57.4565956Z call :libtorch_check "List_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-09-07T09:20:57.4566529Z if errorlevel 1 goto fail 2025-09-07T09:20:57.4566770Z ) 2025-09-07T09:20:57.4575681Z 2025-09-07T09:20:57.4576287Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:20:57.4579651Z 2025-09-07T09:20:57.4580154Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:20:57.4582556Z 2025-09-07T09:20:57.4582962Z (base) C:\actions-runner\_work\pytorch\pytorch>if "List_test" == "verify_api_visibility" goto :eof 2025-09-07T09:20:57.4583869Z 2025-09-07T09:20:57.4584373Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-09-07T09:20:57.4585258Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-09-07T09:20:57.4586199Z 2025-09-07T09:20:57.4586610Z (base) C:\actions-runner\_work\pytorch\pytorch>if "List_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:20:57.4587271Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\List_test.exe" 2025-09-07T09:20:57.4587877Z goto :eof 2025-09-07T09:20:57.4588058Z ) 2025-09-07T09:20:57.4588243Z 2025-09-07T09:20:57.4588630Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/List_test" 2025-09-07T09:21:03.0488346Z Found test times from artifacts 2025-09-07T09:21:03.1250974Z Found test times from artifacts 2025-09-07T09:21:03.1275063Z Running all tests 2025-09-07T09:21:03.1280073Z Running parallel tests on 3 processes 2025-09-07T09:21:03.1280421Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:21:03.1280710Z Serial tests (0): 2025-09-07T09:21:03.1280913Z Parallel tests (1): 2025-09-07T09:21:03.1281145Z cpp/List_test 1/1 2025-09-07T09:21:03.1281414Z Name: excluded (est. time: 0.0min) 2025-09-07T09:21:03.1281671Z Serial tests (0): 2025-09-07T09:21:03.1281881Z Parallel tests (0): 2025-09-07T09:21:03.1283607Z Running cpp/List_test 1/1 ... [2025-09-07 09:21:03.127693] 2025-09-07T09:21:03.1283992Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:21:03.1293834Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\List_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f55c8561453c3e6b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:21:03.127693] 2025-09-07T09:21:03.1295499Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:21:05.3183595Z 2025-09-07T09:21:05.3184604Z cpp/List_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.List_test_1.1_6a41e824be6f5a9c_.log 2025-09-07T09:21:05.3185287Z 2025-09-07T09:21:09.0620285Z Running cpp/List_test 1/1 ... [2025-09-07 09:21:09.061445] 2025-09-07T09:21:09.0620795Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:21:09.0629601Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\List_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-aa6391fdd0926024.xml', '-x', '--reruns=2'] ... [2025-09-07 09:21:09.062592] 2025-09-07T09:21:29.4793249Z 2025-09-07T09:21:29.4793974Z cpp/List_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.List_test_1.1_5ed26adcd8416e95_.log 2025-09-07T09:21:29.4798749Z 2025-09-07T09:21:30.0893238Z Running test batch 'tests to run' cost 26.96 seconds 2025-09-07T09:21:30.0899723Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:21:30.0900335Z Uploading artifacts took 0.00 seconds 2025-09-07T09:21:30.5759057Z 2025-09-07T09:21:30.5759751Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:21:30.5760209Z echo "List_test" failed with exit code 0 2025-09-07T09:21:30.5760498Z goto fail 2025-09-07T09:21:30.5760698Z ) 2025-09-07T09:21:30.5760848Z 2025-09-07T09:21:30.5761420Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:21:30.5761865Z echo "List_test" failed with exit code 0 2025-09-07T09:21:30.5762163Z goto fail 2025-09-07T09:21:30.5762333Z ) 2025-09-07T09:21:30.5762768Z 2025-09-07T09:21:30.5762991Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:21:30.5770184Z 2025-09-07T09:21:30.5770542Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:21:30.5771451Z call :libtorch_check "make_boxed_from_unboxed_functor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-09-07T09:21:30.5772245Z if errorlevel 1 goto fail 2025-09-07T09:21:30.5772473Z ) 2025-09-07T09:21:30.5781186Z 2025-09-07T09:21:30.5781735Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:21:30.5785266Z 2025-09-07T09:21:30.5785793Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:21:30.5788295Z 2025-09-07T09:21:30.5788782Z (base) C:\actions-runner\_work\pytorch\pytorch>if "make_boxed_from_unboxed_functor_test" == "verify_api_visibility" goto :eof 2025-09-07T09:21:30.5789733Z 2025-09-07T09:21:30.5790345Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-09-07T09:21:30.5791424Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-09-07T09:21:30.5792014Z 2025-09-07T09:21:30.5792447Z (base) C:\actions-runner\_work\pytorch\pytorch>if "make_boxed_from_unboxed_functor_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:21:30.5793309Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\make_boxed_from_unboxed_functor_test.exe" 2025-09-07T09:21:30.5793882Z goto :eof 2025-09-07T09:21:30.5794060Z ) 2025-09-07T09:21:30.5794168Z 2025-09-07T09:21:30.5794596Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/make_boxed_from_unboxed_functor_test" 2025-09-07T09:21:36.1693705Z Found test times from artifacts 2025-09-07T09:21:36.2465341Z Found test times from artifacts 2025-09-07T09:21:36.2491176Z Running all tests 2025-09-07T09:21:36.2504164Z Running parallel tests on 3 processes 2025-09-07T09:21:36.2504513Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:21:36.2504799Z Serial tests (0): 2025-09-07T09:21:36.2505030Z Parallel tests (1): 2025-09-07T09:21:36.2505298Z cpp/make_boxed_from_unboxed_functor_test 1/1 2025-09-07T09:21:36.2505618Z Name: excluded (est. time: 0.0min) 2025-09-07T09:21:36.2505881Z Serial tests (0): 2025-09-07T09:21:36.2506095Z Parallel tests (0): 2025-09-07T09:21:36.2506471Z Running cpp/make_boxed_from_unboxed_functor_test 1/1 ... [2025-09-07 09:21:36.250096] 2025-09-07T09:21:36.2506933Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:21:36.2511939Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\make_boxed_from_unboxed_functor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-50270842207c392c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:21:36.250935] 2025-09-07T09:21:36.2513718Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:21:38.5855266Z 2025-09-07T09:21:38.5856405Z cpp/make_boxed_from_unboxed_functor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.make_boxed_from_unboxed_functor_test_1.1_2f2d55b7db5d7f5e_.log 2025-09-07T09:21:38.5857193Z 2025-09-07T09:21:42.1956402Z Running cpp/make_boxed_from_unboxed_functor_test 1/1 ... [2025-09-07 09:21:42.194201] 2025-09-07T09:21:42.1956924Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:21:42.1965505Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\make_boxed_from_unboxed_functor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-25c8cf155dbd70f2.xml', '-x', '--reruns=2'] ... [2025-09-07 09:21:42.194201] 2025-09-07T09:21:50.5783743Z 2025-09-07T09:21:50.5784745Z cpp/make_boxed_from_unboxed_functor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.make_boxed_from_unboxed_functor_test_1.1_ba3da6bf44f37717_.log 2025-09-07T09:21:50.5786311Z 2025-09-07T09:21:51.2246371Z Running test batch 'tests to run' cost 14.97 seconds 2025-09-07T09:21:51.2252748Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:21:51.2253348Z Uploading artifacts took 0.00 seconds 2025-09-07T09:21:51.7134003Z 2025-09-07T09:21:51.7134588Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:21:51.7135133Z echo "make_boxed_from_unboxed_functor_test" failed with exit code 0 2025-09-07T09:21:51.7135518Z goto fail 2025-09-07T09:21:51.7135699Z ) 2025-09-07T09:21:51.7135797Z 2025-09-07T09:21:51.7136397Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:21:51.7136990Z echo "make_boxed_from_unboxed_functor_test" failed with exit code 0 2025-09-07T09:21:51.7137381Z goto fail 2025-09-07T09:21:51.7137554Z ) 2025-09-07T09:21:51.7137673Z 2025-09-07T09:21:51.7138150Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:21:51.7144467Z 2025-09-07T09:21:51.7144699Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:21:51.7145381Z call :libtorch_check "math_kernel_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-09-07T09:21:51.7146046Z if errorlevel 1 goto fail 2025-09-07T09:21:51.7146276Z ) 2025-09-07T09:21:51.7155262Z 2025-09-07T09:21:51.7155615Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:21:51.7159178Z 2025-09-07T09:21:51.7159711Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:21:51.7162147Z 2025-09-07T09:21:51.7162626Z (base) C:\actions-runner\_work\pytorch\pytorch>if "math_kernel_test" == "verify_api_visibility" goto :eof 2025-09-07T09:21:51.7163523Z 2025-09-07T09:21:51.7164277Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-09-07T09:21:51.7165214Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-09-07T09:21:51.7165669Z 2025-09-07T09:21:51.7165980Z (base) C:\actions-runner\_work\pytorch\pytorch>if "math_kernel_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:21:51.7166829Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\math_kernel_test.exe" 2025-09-07T09:21:51.7167319Z goto :eof 2025-09-07T09:21:51.7167512Z ) 2025-09-07T09:21:51.7167612Z 2025-09-07T09:21:51.7167971Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/math_kernel_test" 2025-09-07T09:21:57.3036069Z Found test times from artifacts 2025-09-07T09:21:57.3803807Z Found test times from artifacts 2025-09-07T09:21:57.3828065Z Running all tests 2025-09-07T09:21:57.3833191Z Running parallel tests on 3 processes 2025-09-07T09:21:57.3833641Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:21:57.3833938Z Serial tests (0): 2025-09-07T09:21:57.3834231Z Parallel tests (1): 2025-09-07T09:21:57.3834479Z cpp/math_kernel_test 1/1 2025-09-07T09:21:57.3834833Z Name: excluded (est. time: 0.0min) 2025-09-07T09:21:57.3835150Z Serial tests (0): 2025-09-07T09:21:57.3835434Z Parallel tests (0): 2025-09-07T09:21:57.3850363Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:21:57.3851342Z Running cpp/math_kernel_test 1/1 ... [2025-09-07 09:21:57.383644] 2025-09-07T09:21:57.3851767Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:21:57.3852952Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\math_kernel_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-282ba94452b68f0e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:21:57.384721] 2025-09-07T09:21:59.6070780Z 2025-09-07T09:21:59.6075793Z cpp/math_kernel_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.math_kernel_test_1.1_f5e01542526c40a4_.log 2025-09-07T09:21:59.6076561Z 2025-09-07T09:22:03.2803689Z Running cpp/math_kernel_test 1/1 ... [2025-09-07 09:22:03.278766] 2025-09-07T09:22:03.2804169Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:22:03.2812639Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\math_kernel_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-ac6177591e6d869c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:22:03.278766] 2025-09-07T09:22:06.4942571Z 2025-09-07T09:22:06.4945023Z cpp/math_kernel_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.math_kernel_test_1.1_454cc86f23f9527d_.log 2025-09-07T09:22:06.4945678Z 2025-09-07T09:22:07.1088792Z Running test batch 'tests to run' cost 9.72 seconds 2025-09-07T09:22:07.1095371Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:22:07.1095977Z Uploading artifacts took 0.00 seconds 2025-09-07T09:22:07.5915530Z 2025-09-07T09:22:07.5916158Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:22:07.5916656Z echo "math_kernel_test" failed with exit code 0 2025-09-07T09:22:07.5916985Z goto fail 2025-09-07T09:22:07.5917204Z ) 2025-09-07T09:22:07.5917322Z 2025-09-07T09:22:07.5917521Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:22:07.5917986Z echo "math_kernel_test" failed with exit code 0 2025-09-07T09:22:07.5918318Z goto fail 2025-09-07T09:22:07.5918512Z ) 2025-09-07T09:22:07.5918801Z 2025-09-07T09:22:07.5920065Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:22:07.5925821Z 2025-09-07T09:22:07.5926094Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:22:07.5926819Z call :libtorch_check "MaybeOwned_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-09-07T09:22:07.5927504Z if errorlevel 1 goto fail 2025-09-07T09:22:07.5927746Z ) 2025-09-07T09:22:07.5936818Z 2025-09-07T09:22:07.5937528Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:22:07.5940292Z 2025-09-07T09:22:07.5940810Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:22:07.5943692Z 2025-09-07T09:22:07.5944178Z (base) C:\actions-runner\_work\pytorch\pytorch>if "MaybeOwned_test" == "verify_api_visibility" goto :eof 2025-09-07T09:22:07.5945167Z 2025-09-07T09:22:07.5945942Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-09-07T09:22:07.5946993Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-09-07T09:22:07.5947433Z 2025-09-07T09:22:07.5948914Z (base) C:\actions-runner\_work\pytorch\pytorch>if "MaybeOwned_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:22:07.5949678Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\MaybeOwned_test.exe" 2025-09-07T09:22:07.5950199Z goto :eof 2025-09-07T09:22:07.5950389Z ) 2025-09-07T09:22:07.5950492Z 2025-09-07T09:22:07.5950881Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/MaybeOwned_test" 2025-09-07T09:22:13.2105375Z Found test times from artifacts 2025-09-07T09:22:13.2872054Z Found test times from artifacts 2025-09-07T09:22:13.2897651Z Running all tests 2025-09-07T09:22:13.2902868Z Running parallel tests on 3 processes 2025-09-07T09:22:13.2903221Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:22:13.2903538Z Serial tests (0): 2025-09-07T09:22:13.2903763Z Parallel tests (1): 2025-09-07T09:22:13.2904026Z cpp/MaybeOwned_test 1/1 2025-09-07T09:22:13.2904427Z Name: excluded (est. time: 0.0min) 2025-09-07T09:22:13.2905651Z Serial tests (0): 2025-09-07T09:22:13.2905934Z Parallel tests (0): 2025-09-07T09:22:13.2906389Z Running cpp/MaybeOwned_test 1/1 ... [2025-09-07 09:22:13.290193] 2025-09-07T09:22:13.2906818Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:22:13.2916147Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\MaybeOwned_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4d8fb66bce31fe91.xml', '-x', '--reruns=2'] ... [2025-09-07 09:22:13.290798] 2025-09-07T09:22:13.2917891Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:22:15.5173603Z 2025-09-07T09:22:15.5175911Z cpp/MaybeOwned_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.MaybeOwned_test_1.1_21b2441629f0d2dd_.log 2025-09-07T09:22:15.5176531Z 2025-09-07T09:22:19.2282013Z Running cpp/MaybeOwned_test 1/1 ... [2025-09-07 09:22:19.227997] 2025-09-07T09:22:19.2282498Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:22:19.2291813Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\MaybeOwned_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-349c71de9e526cdb.xml', '-x', '--reruns=2'] ... [2025-09-07 09:22:19.228620] 2025-09-07T09:22:25.5497629Z 2025-09-07T09:22:25.5498522Z cpp/MaybeOwned_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.MaybeOwned_test_1.1_0b13e3f685e0c1b4_.log 2025-09-07T09:22:25.5499678Z 2025-09-07T09:22:26.2138570Z Running test batch 'tests to run' cost 12.92 seconds 2025-09-07T09:22:26.2145430Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:22:26.2146038Z Uploading artifacts took 0.00 seconds 2025-09-07T09:22:26.6928971Z 2025-09-07T09:22:26.6929777Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:22:26.6930279Z echo "MaybeOwned_test" failed with exit code 0 2025-09-07T09:22:26.6930607Z goto fail 2025-09-07T09:22:26.6930827Z ) 2025-09-07T09:22:26.6930946Z 2025-09-07T09:22:26.6931149Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:22:26.6931618Z echo "MaybeOwned_test" failed with exit code 0 2025-09-07T09:22:26.6931973Z goto fail 2025-09-07T09:22:26.6938536Z ) 2025-09-07T09:22:26.6938674Z 2025-09-07T09:22:26.6938853Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:22:26.6939432Z 2025-09-07T09:22:26.6939765Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:22:26.6940435Z call :libtorch_check "memory_format_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-09-07T09:22:26.6941180Z if errorlevel 1 goto fail 2025-09-07T09:22:26.6941424Z ) 2025-09-07T09:22:26.6951134Z 2025-09-07T09:22:26.6951532Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:22:26.6955235Z 2025-09-07T09:22:26.6955715Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:22:26.6958175Z 2025-09-07T09:22:26.6958580Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_format_test" == "verify_api_visibility" goto :eof 2025-09-07T09:22:26.6959565Z 2025-09-07T09:22:26.6960161Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-09-07T09:22:26.6961110Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-09-07T09:22:26.6961759Z 2025-09-07T09:22:26.6962586Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_format_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:22:26.6963324Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_format_test.exe" 2025-09-07T09:22:26.6963813Z goto :eof 2025-09-07T09:22:26.6963979Z ) 2025-09-07T09:22:26.6964106Z 2025-09-07T09:22:26.6964499Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/memory_format_test" 2025-09-07T09:22:32.3017928Z Found test times from artifacts 2025-09-07T09:22:32.3780416Z Found test times from artifacts 2025-09-07T09:22:32.3804456Z Running all tests 2025-09-07T09:22:32.3809435Z Running parallel tests on 3 processes 2025-09-07T09:22:32.3809770Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:22:32.3810051Z Serial tests (0): 2025-09-07T09:22:32.3810245Z Parallel tests (1): 2025-09-07T09:22:32.3810472Z cpp/memory_format_test 1/1 2025-09-07T09:22:32.3810726Z Name: excluded (est. time: 0.0min) 2025-09-07T09:22:32.3810983Z Serial tests (0): 2025-09-07T09:22:32.3811175Z Parallel tests (0): 2025-09-07T09:22:32.3812982Z Running cpp/memory_format_test 1/1 ... [2025-09-07 09:22:32.370861] 2025-09-07T09:22:32.3813361Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:22:32.3823136Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\memory_format_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4465e925bce800a6.xml', '-x', '--reruns=2'] ... [2025-09-07 09:22:32.370861] 2025-09-07T09:22:32.3824850Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:22:34.5992950Z 2025-09-07T09:22:34.5993783Z cpp/memory_format_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.memory_format_test_1.1_03a214687d17a77d_.log 2025-09-07T09:22:34.5994598Z 2025-09-07T09:22:38.2709612Z Running cpp/memory_format_test 1/1 ... [2025-09-07 09:22:38.270342] 2025-09-07T09:22:38.2718385Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:22:38.2719578Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\memory_format_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a1c3f9e5673c04cf.xml', '-x', '--reruns=2'] ... [2025-09-07 09:22:38.271617] 2025-09-07T09:22:41.2869785Z 2025-09-07T09:22:41.2870787Z cpp/memory_format_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.memory_format_test_1.1_fabaceafca905d89_.log 2025-09-07T09:22:41.2871592Z 2025-09-07T09:22:41.8836140Z Running test batch 'tests to run' cost 9.51 seconds 2025-09-07T09:22:41.8842395Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:22:41.8842868Z Uploading artifacts took 0.00 seconds 2025-09-07T09:22:42.3786311Z 2025-09-07T09:22:42.3786825Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:22:42.3787269Z echo "memory_format_test" failed with exit code 0 2025-09-07T09:22:42.3787583Z goto fail 2025-09-07T09:22:42.3787759Z ) 2025-09-07T09:22:42.3787861Z 2025-09-07T09:22:42.3788047Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:22:42.3788465Z echo "memory_format_test" failed with exit code 0 2025-09-07T09:22:42.3788760Z goto fail 2025-09-07T09:22:42.3788929Z ) 2025-09-07T09:22:42.3789082Z 2025-09-07T09:22:42.3789293Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:22:42.3796888Z 2025-09-07T09:22:42.3797151Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:22:42.3797884Z call :libtorch_check "memory_overlapping_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-09-07T09:22:42.3799224Z if errorlevel 1 goto fail 2025-09-07T09:22:42.3799451Z ) 2025-09-07T09:22:42.3806876Z 2025-09-07T09:22:42.3807230Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:22:42.3810776Z 2025-09-07T09:22:42.3811235Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:22:42.3813381Z 2025-09-07T09:22:42.3813765Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_overlapping_test" == "verify_api_visibility" goto :eof 2025-09-07T09:22:42.3814657Z 2025-09-07T09:22:42.3815217Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-09-07T09:22:42.3816168Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-09-07T09:22:42.3817097Z 2025-09-07T09:22:42.3817520Z (base) C:\actions-runner\_work\pytorch\pytorch>if "memory_overlapping_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:22:42.3818283Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\memory_overlapping_test.exe" 2025-09-07T09:22:42.3818775Z goto :eof 2025-09-07T09:22:42.3818950Z ) 2025-09-07T09:22:42.3819044Z 2025-09-07T09:22:42.3819430Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/memory_overlapping_test" 2025-09-07T09:22:47.9511294Z Found test times from artifacts 2025-09-07T09:22:48.0280712Z Found test times from artifacts 2025-09-07T09:22:48.0304443Z Running all tests 2025-09-07T09:22:48.0309507Z Running parallel tests on 3 processes 2025-09-07T09:22:48.0309894Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:22:48.0310154Z Serial tests (0): 2025-09-07T09:22:48.0310371Z Parallel tests (1): 2025-09-07T09:22:48.0310604Z cpp/memory_overlapping_test 1/1 2025-09-07T09:22:48.0310888Z Name: excluded (est. time: 0.0min) 2025-09-07T09:22:48.0311142Z Serial tests (0): 2025-09-07T09:22:48.0311334Z Parallel tests (0): 2025-09-07T09:22:48.0313113Z Running cpp/memory_overlapping_test 1/1 ... [2025-09-07 09:22:48.025886] 2025-09-07T09:22:48.0313527Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:22:48.0322858Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\memory_overlapping_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2af31de7001ac03e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:22:48.031464] 2025-09-07T09:22:48.0325580Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:22:50.2793042Z 2025-09-07T09:22:50.2793942Z cpp/memory_overlapping_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.memory_overlapping_test_1.1_c308d12ca6b7e3f1_.log 2025-09-07T09:22:50.2794625Z 2025-09-07T09:22:53.9476086Z Running cpp/memory_overlapping_test 1/1 ... [2025-09-07 09:22:53.945946] 2025-09-07T09:22:53.9476555Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:22:53.9485428Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\memory_overlapping_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-cfd0768bc78de109.xml', '-x', '--reruns=2'] ... [2025-09-07 09:22:53.947578] 2025-09-07T09:22:56.9686115Z 2025-09-07T09:22:56.9687249Z cpp/memory_overlapping_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.memory_overlapping_test_1.1_54c1200ad12b82ca_.log 2025-09-07T09:22:56.9687938Z 2025-09-07T09:22:57.5731249Z Running test batch 'tests to run' cost 9.54 seconds 2025-09-07T09:22:57.5738928Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:22:57.5739378Z Uploading artifacts took 0.00 seconds 2025-09-07T09:22:58.1171371Z 2025-09-07T09:22:58.1172089Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:22:58.1172691Z echo "memory_overlapping_test" failed with exit code 0 2025-09-07T09:22:58.1173102Z goto fail 2025-09-07T09:22:58.1173328Z ) 2025-09-07T09:22:58.1173505Z 2025-09-07T09:22:58.1173761Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:22:58.1174277Z echo "memory_overlapping_test" failed with exit code 0 2025-09-07T09:22:58.1174696Z goto fail 2025-09-07T09:22:58.1174896Z ) 2025-09-07T09:22:58.1175084Z 2025-09-07T09:22:58.1175294Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:22:58.1183101Z 2025-09-07T09:22:58.1183467Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:22:58.1184228Z call :libtorch_check "mobile_memory_cleanup" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-09-07T09:22:58.1184891Z if errorlevel 1 goto fail 2025-09-07T09:22:58.1185106Z ) 2025-09-07T09:22:58.1192825Z 2025-09-07T09:22:58.1193355Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:22:58.1197132Z 2025-09-07T09:22:58.1197710Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:22:58.1200026Z 2025-09-07T09:22:58.1200603Z (base) C:\actions-runner\_work\pytorch\pytorch>if "mobile_memory_cleanup" == "verify_api_visibility" goto :eof 2025-09-07T09:22:58.1201866Z 2025-09-07T09:22:58.1202450Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-09-07T09:22:58.1203405Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-09-07T09:22:58.1204319Z 2025-09-07T09:22:58.1204723Z (base) C:\actions-runner\_work\pytorch\pytorch>if "mobile_memory_cleanup" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:22:58.1205472Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\mobile_memory_cleanup.exe" 2025-09-07T09:22:58.1205972Z goto :eof 2025-09-07T09:22:58.1206144Z ) 2025-09-07T09:22:58.1206233Z 2025-09-07T09:22:58.1206607Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/mobile_memory_cleanup" 2025-09-07T09:23:03.7540402Z Found test times from artifacts 2025-09-07T09:23:03.8303126Z Found test times from artifacts 2025-09-07T09:23:03.8327527Z Running all tests 2025-09-07T09:23:03.8332708Z Running parallel tests on 3 processes 2025-09-07T09:23:03.8333027Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:23:03.8333302Z Serial tests (0): 2025-09-07T09:23:03.8333505Z Parallel tests (1): 2025-09-07T09:23:03.8333731Z cpp/mobile_memory_cleanup 1/1 2025-09-07T09:23:03.8333997Z Name: excluded (est. time: 0.0min) 2025-09-07T09:23:03.8334232Z Serial tests (0): 2025-09-07T09:23:03.8334438Z Parallel tests (0): 2025-09-07T09:23:03.8336162Z Running cpp/mobile_memory_cleanup 1/1 ... [2025-09-07 09:23:03.833140] 2025-09-07T09:23:03.8372182Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:23:03.8373399Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\mobile_memory_cleanup.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-92d6d3078e29cf98.xml', '-x', '--reruns=2'] ... [2025-09-07 09:23:03.834566] 2025-09-07T09:23:03.8375122Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:23:06.0590775Z 2025-09-07T09:23:06.0592364Z cpp/mobile_memory_cleanup 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.mobile_memory_cleanup_1.1_72cbfe45e7bb0d5e_.log 2025-09-07T09:23:06.0593071Z 2025-09-07T09:23:09.8021008Z Running cpp/mobile_memory_cleanup 1/1 ... [2025-09-07 09:23:09.798621] 2025-09-07T09:23:09.8021445Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:23:09.8030324Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\mobile_memory_cleanup.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-a3dcf64992cecc21.xml', '-x', '--reruns=2'] ... [2025-09-07 09:23:09.798621] 2025-09-07T09:23:12.5620079Z 2025-09-07T09:23:12.5620956Z cpp/mobile_memory_cleanup 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.mobile_memory_cleanup_1.1_cfd5f19ea6fa1a1f_.log 2025-09-07T09:23:12.5621654Z 2025-09-07T09:23:13.2060404Z Running test batch 'tests to run' cost 9.37 seconds 2025-09-07T09:23:13.2066576Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:23:13.2067031Z Uploading artifacts took 0.00 seconds 2025-09-07T09:23:13.6885509Z 2025-09-07T09:23:13.6886302Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:23:13.6886783Z echo "mobile_memory_cleanup" failed with exit code 0 2025-09-07T09:23:13.6887096Z goto fail 2025-09-07T09:23:13.6887268Z ) 2025-09-07T09:23:13.6887369Z 2025-09-07T09:23:13.6887554Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:23:13.6887991Z echo "mobile_memory_cleanup" failed with exit code 0 2025-09-07T09:23:13.6888307Z goto fail 2025-09-07T09:23:13.6888476Z ) 2025-09-07T09:23:13.6888603Z 2025-09-07T09:23:13.6888830Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:23:13.6895228Z 2025-09-07T09:23:13.6895602Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:23:13.6896317Z call :libtorch_check "NamedTensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-09-07T09:23:13.6896957Z if errorlevel 1 goto fail 2025-09-07T09:23:13.6897181Z ) 2025-09-07T09:23:13.6905515Z 2025-09-07T09:23:13.6905846Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:23:13.6909224Z 2025-09-07T09:23:13.6909728Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:23:13.6911739Z 2025-09-07T09:23:13.6912359Z (base) C:\actions-runner\_work\pytorch\pytorch>if "NamedTensor_test" == "verify_api_visibility" goto :eof 2025-09-07T09:23:13.6913223Z 2025-09-07T09:23:13.6913735Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-09-07T09:23:13.6914679Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-09-07T09:23:13.6915397Z 2025-09-07T09:23:13.6915759Z (base) C:\actions-runner\_work\pytorch\pytorch>if "NamedTensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:23:13.6916490Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\NamedTensor_test.exe" 2025-09-07T09:23:13.6916983Z goto :eof 2025-09-07T09:23:13.6917154Z ) 2025-09-07T09:23:13.6917245Z 2025-09-07T09:23:13.6917608Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/NamedTensor_test" 2025-09-07T09:23:19.2851750Z Found test times from artifacts 2025-09-07T09:23:19.3619103Z Found test times from artifacts 2025-09-07T09:23:19.3642746Z Running all tests 2025-09-07T09:23:19.3647875Z Running parallel tests on 3 processes 2025-09-07T09:23:19.3648223Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:23:19.3648637Z Serial tests (0): 2025-09-07T09:23:19.3648917Z Parallel tests (1): 2025-09-07T09:23:19.3649134Z cpp/NamedTensor_test 1/1 2025-09-07T09:23:19.3649397Z Name: excluded (est. time: 0.0min) 2025-09-07T09:23:19.3649646Z Serial tests (0): 2025-09-07T09:23:19.3649850Z Parallel tests (0): 2025-09-07T09:23:19.3651082Z Running cpp/NamedTensor_test 1/1 ... [2025-09-07 09:23:19.364284] 2025-09-07T09:23:19.3651474Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:23:19.3660644Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\NamedTensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-00e3ebddf6898af0.xml', '-x', '--reruns=2'] ... [2025-09-07 09:23:19.364284] 2025-09-07T09:23:19.3662328Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:23:21.6020854Z 2025-09-07T09:23:21.6021694Z cpp/NamedTensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.NamedTensor_test_1.1_433ccbe9e11c572b_.log 2025-09-07T09:23:21.6022353Z 2025-09-07T09:23:25.3354882Z Running cpp/NamedTensor_test 1/1 ... [2025-09-07 09:23:25.334348] 2025-09-07T09:23:25.3355322Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:23:25.3364452Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\NamedTensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-064eecad951b8d01.xml', '-x', '--reruns=2'] ... [2025-09-07 09:23:25.335938] 2025-09-07T09:23:28.9789008Z 2025-09-07T09:23:28.9790067Z cpp/NamedTensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.NamedTensor_test_1.1_238791dd29e20602_.log 2025-09-07T09:23:28.9790712Z 2025-09-07T09:23:29.5818785Z Running test batch 'tests to run' cost 10.21 seconds 2025-09-07T09:23:29.5824996Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:23:29.5825454Z Uploading artifacts took 0.00 seconds 2025-09-07T09:23:30.0968572Z 2025-09-07T09:23:30.0969085Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:23:30.0969532Z echo "NamedTensor_test" failed with exit code 0 2025-09-07T09:23:30.0969830Z goto fail 2025-09-07T09:23:30.0970015Z ) 2025-09-07T09:23:30.0970105Z 2025-09-07T09:23:30.0970299Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:23:30.0970708Z echo "NamedTensor_test" failed with exit code 0 2025-09-07T09:23:30.0971191Z goto fail 2025-09-07T09:23:30.0971354Z ) 2025-09-07T09:23:30.0971536Z 2025-09-07T09:23:30.0971693Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:23:30.0978549Z 2025-09-07T09:23:30.0978744Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:23:30.0979393Z call :libtorch_check "native_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-09-07T09:23:30.0979980Z if errorlevel 1 goto fail 2025-09-07T09:23:30.0980190Z ) 2025-09-07T09:23:30.0989148Z 2025-09-07T09:23:30.0989809Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:23:30.0992988Z 2025-09-07T09:23:30.0993446Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:23:30.0995585Z 2025-09-07T09:23:30.0996097Z (base) C:\actions-runner\_work\pytorch\pytorch>if "native_test" == "verify_api_visibility" goto :eof 2025-09-07T09:23:30.0997555Z 2025-09-07T09:23:30.0998086Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-09-07T09:23:30.0999168Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-09-07T09:23:30.0999574Z 2025-09-07T09:23:30.0999858Z (base) C:\actions-runner\_work\pytorch\pytorch>if "native_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:23:30.1000523Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\native_test.exe" 2025-09-07T09:23:30.1000987Z goto :eof 2025-09-07T09:23:30.1001151Z ) 2025-09-07T09:23:30.1001349Z 2025-09-07T09:23:30.1001740Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/native_test" 2025-09-07T09:23:35.6795471Z Found test times from artifacts 2025-09-07T09:23:35.7572147Z Found test times from artifacts 2025-09-07T09:23:35.7597446Z Running all tests 2025-09-07T09:23:35.7603164Z Running parallel tests on 3 processes 2025-09-07T09:23:35.7603544Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:23:35.7603816Z Serial tests (0): 2025-09-07T09:23:35.7604031Z Parallel tests (1): 2025-09-07T09:23:35.7604257Z cpp/native_test 1/1 2025-09-07T09:23:35.7604475Z Name: excluded (est. time: 0.0min) 2025-09-07T09:23:35.7604723Z Serial tests (0): 2025-09-07T09:23:35.7604916Z Parallel tests (0): 2025-09-07T09:23:35.7606913Z Running cpp/native_test 1/1 ... [2025-09-07 09:23:35.758264] 2025-09-07T09:23:35.7607286Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:23:35.7617756Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\native_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-4f9c31f70ca680cb.xml', '-x', '--reruns=2'] ... [2025-09-07 09:23:35.761340] 2025-09-07T09:23:35.7619432Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:23:38.0502317Z 2025-09-07T09:23:38.0503136Z cpp/native_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.native_test_1.1_538b06a4f0a2baf5_.log 2025-09-07T09:23:38.0504055Z 2025-09-07T09:23:41.7787581Z Running cpp/native_test 1/1 ... [2025-09-07 09:23:41.778498] 2025-09-07T09:23:41.7787980Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:23:41.7809617Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\native_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-fdd32ee95183b8fe.xml', '-x', '--reruns=2'] ... [2025-09-07 09:23:41.780747] 2025-09-07T09:23:44.4506304Z 2025-09-07T09:23:44.4507301Z cpp/native_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.native_test_1.1_69f0873659e6b8b4_.log 2025-09-07T09:23:44.4508009Z 2025-09-07T09:23:45.0847242Z Running test batch 'tests to run' cost 9.33 seconds 2025-09-07T09:23:45.0854342Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:23:45.0854867Z Uploading artifacts took 0.00 seconds 2025-09-07T09:23:45.5772070Z 2025-09-07T09:23:45.5772755Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:23:45.5773194Z echo "native_test" failed with exit code 0 2025-09-07T09:23:45.5773484Z goto fail 2025-09-07T09:23:45.5773657Z ) 2025-09-07T09:23:45.5773747Z 2025-09-07T09:23:45.5773947Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:23:45.5774340Z echo "native_test" failed with exit code 0 2025-09-07T09:23:45.5774614Z goto fail 2025-09-07T09:23:45.5774774Z ) 2025-09-07T09:23:45.5774889Z 2025-09-07T09:23:45.5775047Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:23:45.5781480Z 2025-09-07T09:23:45.5781771Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:23:45.5782640Z call :libtorch_check "operators_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-09-07T09:23:45.5783400Z if errorlevel 1 goto fail 2025-09-07T09:23:45.5783649Z ) 2025-09-07T09:23:45.5791907Z 2025-09-07T09:23:45.5792273Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:23:45.5795849Z 2025-09-07T09:23:45.5796383Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:23:45.5798720Z 2025-09-07T09:23:45.5799124Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operators_test" == "verify_api_visibility" goto :eof 2025-09-07T09:23:45.5800222Z 2025-09-07T09:23:45.5800839Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-09-07T09:23:45.5801788Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-09-07T09:23:45.5802394Z 2025-09-07T09:23:45.5802787Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operators_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:23:45.5803537Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operators_test.exe" 2025-09-07T09:23:45.5804059Z goto :eof 2025-09-07T09:23:45.5804249Z ) 2025-09-07T09:23:45.5804359Z 2025-09-07T09:23:45.5804757Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/operators_test" 2025-09-07T09:23:51.1519656Z Found test times from artifacts 2025-09-07T09:23:51.2290240Z Found test times from artifacts 2025-09-07T09:23:51.2315198Z Running all tests 2025-09-07T09:23:51.2320583Z Running parallel tests on 3 processes 2025-09-07T09:23:51.2321007Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:23:51.2321297Z Serial tests (0): 2025-09-07T09:23:51.2321553Z Parallel tests (1): 2025-09-07T09:23:51.2321806Z cpp/operators_test 1/1 2025-09-07T09:23:51.2322110Z Name: excluded (est. time: 0.0min) 2025-09-07T09:23:51.2322384Z Serial tests (0): 2025-09-07T09:23:51.2322628Z Parallel tests (0): 2025-09-07T09:23:51.2324254Z Running cpp/operators_test 1/1 ... [2025-09-07 09:23:51.232056] 2025-09-07T09:23:51.2324686Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:23:51.2334613Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\operators_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-33c9e7bf710f76f0.xml', '-x', '--reruns=2'] ... [2025-09-07 09:23:51.233203] 2025-09-07T09:23:51.2336420Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:23:53.4705804Z 2025-09-07T09:23:53.4706682Z cpp/operators_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operators_test_1.1_12a75c4823b28af1_.log 2025-09-07T09:23:53.4707687Z 2025-09-07T09:23:57.1556309Z Running cpp/operators_test 1/1 ... [2025-09-07 09:23:57.147452] 2025-09-07T09:23:57.1556765Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:23:57.1565629Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\operators_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-68416d630807798a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:23:57.147452] 2025-09-07T09:24:00.1617621Z 2025-09-07T09:24:00.1618605Z cpp/operators_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operators_test_1.1_b1e03906d32868b3_.log 2025-09-07T09:24:00.1619354Z 2025-09-07T09:24:00.8124781Z Running test batch 'tests to run' cost 9.58 seconds 2025-09-07T09:24:00.8131911Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:24:00.8133011Z Uploading artifacts took 0.00 seconds 2025-09-07T09:24:01.3075713Z 2025-09-07T09:24:01.3076370Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:24:01.3076842Z echo "operators_test" failed with exit code 0 2025-09-07T09:24:01.3077210Z goto fail 2025-09-07T09:24:01.3077411Z ) 2025-09-07T09:24:01.3077599Z 2025-09-07T09:24:01.3077801Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:24:01.3078309Z echo "operators_test" failed with exit code 0 2025-09-07T09:24:01.3078665Z goto fail 2025-09-07T09:24:01.3078888Z ) 2025-09-07T09:24:01.3078995Z 2025-09-07T09:24:01.3079182Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:24:01.3085765Z 2025-09-07T09:24:01.3086277Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:24:01.3087018Z call :libtorch_check "operator_name_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-09-07T09:24:01.3087735Z if errorlevel 1 goto fail 2025-09-07T09:24:01.3087991Z ) 2025-09-07T09:24:01.3097763Z 2025-09-07T09:24:01.3098291Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:24:01.3102642Z 2025-09-07T09:24:01.3103307Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:24:01.3106074Z 2025-09-07T09:24:01.3106789Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operator_name_test" == "verify_api_visibility" goto :eof 2025-09-07T09:24:01.3107676Z 2025-09-07T09:24:01.3108464Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-09-07T09:24:01.3109561Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-09-07T09:24:01.3110513Z 2025-09-07T09:24:01.3111159Z (base) C:\actions-runner\_work\pytorch\pytorch>if "operator_name_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:24:01.3111968Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\operator_name_test.exe" 2025-09-07T09:24:01.3112487Z goto :eof 2025-09-07T09:24:01.3112704Z ) 2025-09-07T09:24:01.3112815Z 2025-09-07T09:24:01.3113190Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/operator_name_test" 2025-09-07T09:24:07.0219676Z Found test times from artifacts 2025-09-07T09:24:07.1105025Z Found test times from artifacts 2025-09-07T09:24:07.1130187Z Running all tests 2025-09-07T09:24:07.1135291Z Running parallel tests on 3 processes 2025-09-07T09:24:07.1135659Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:24:07.1136053Z Serial tests (0): 2025-09-07T09:24:07.1136304Z Parallel tests (1): 2025-09-07T09:24:07.1136581Z cpp/operator_name_test 1/1 2025-09-07T09:24:07.1136869Z Name: excluded (est. time: 0.0min) 2025-09-07T09:24:07.1137178Z Serial tests (0): 2025-09-07T09:24:07.1137401Z Parallel tests (0): 2025-09-07T09:24:07.1138901Z Running cpp/operator_name_test 1/1 ... [2025-09-07 09:24:07.111474] 2025-09-07T09:24:07.1139341Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:24:07.1148479Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\operator_name_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-87ff1119f90ce761.xml', '-x', '--reruns=2'] ... [2025-09-07 09:24:07.111474] 2025-09-07T09:24:07.1150239Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:24:08.5798800Z 2025-09-07T09:24:08.5799718Z cpp/operator_name_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operator_name_test_1.1_b01b401d20792bcf_.log 2025-09-07T09:24:08.5800585Z 2025-09-07T09:24:12.3048934Z Running cpp/operator_name_test 1/1 ... [2025-09-07 09:24:12.304420] 2025-09-07T09:24:12.3049427Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:24:12.3058287Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\operator_name_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-876be67ee4c69c5b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:24:12.305569] 2025-09-07T09:24:13.7887749Z 2025-09-07T09:24:13.7888724Z cpp/operator_name_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.operator_name_test_1.1_c6e1ee54c7b82e90_.log 2025-09-07T09:24:13.7889424Z 2025-09-07T09:24:14.4343160Z Running test batch 'tests to run' cost 7.32 seconds 2025-09-07T09:24:14.4349625Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:24:14.4350109Z Uploading artifacts took 0.00 seconds 2025-09-07T09:24:14.9240807Z 2025-09-07T09:24:14.9241426Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:24:14.9241873Z echo "operator_name_test" failed with exit code 0 2025-09-07T09:24:14.9242182Z goto fail 2025-09-07T09:24:14.9242357Z ) 2025-09-07T09:24:14.9242529Z 2025-09-07T09:24:14.9242850Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:24:14.9243280Z echo "operator_name_test" failed with exit code 0 2025-09-07T09:24:14.9243580Z goto fail 2025-09-07T09:24:14.9243761Z ) 2025-09-07T09:24:14.9243872Z 2025-09-07T09:24:14.9244361Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:24:14.9250844Z 2025-09-07T09:24:14.9251120Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:24:14.9251812Z call :libtorch_check "op_allowlist_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-09-07T09:24:14.9252455Z if errorlevel 1 goto fail 2025-09-07T09:24:14.9252666Z ) 2025-09-07T09:24:14.9261114Z 2025-09-07T09:24:14.9261553Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:24:14.9265049Z 2025-09-07T09:24:14.9265542Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:24:14.9268024Z 2025-09-07T09:24:14.9268467Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_allowlist_test" == "verify_api_visibility" goto :eof 2025-09-07T09:24:14.9269316Z 2025-09-07T09:24:14.9270012Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-09-07T09:24:14.9270935Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-09-07T09:24:14.9271366Z 2025-09-07T09:24:14.9271676Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_allowlist_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:24:14.9272389Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_allowlist_test.exe" 2025-09-07T09:24:14.9272872Z goto :eof 2025-09-07T09:24:14.9273041Z ) 2025-09-07T09:24:14.9273133Z 2025-09-07T09:24:14.9273499Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/op_allowlist_test" 2025-09-07T09:24:20.5848389Z Found test times from artifacts 2025-09-07T09:24:20.6614195Z Found test times from artifacts 2025-09-07T09:24:20.6638476Z Running all tests 2025-09-07T09:24:20.6658736Z Running parallel tests on 3 processes 2025-09-07T09:24:20.6659146Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:24:20.6659415Z Serial tests (0): 2025-09-07T09:24:20.6659627Z Parallel tests (1): 2025-09-07T09:24:20.6659851Z cpp/op_allowlist_test 1/1 2025-09-07T09:24:20.6660265Z Name: excluded (est. time: 0.0min) 2025-09-07T09:24:20.6660586Z Serial tests (0): 2025-09-07T09:24:20.6660791Z Parallel tests (0): 2025-09-07T09:24:20.6662515Z Running cpp/op_allowlist_test 1/1 ... [2025-09-07 09:24:20.656865] 2025-09-07T09:24:20.6662896Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:24:20.6672562Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\op_allowlist_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-415816c93b0186a3.xml', '-x', '--reruns=2'] ... [2025-09-07 09:24:20.666963] 2025-09-07T09:24:20.6674260Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:24:22.1366151Z 2025-09-07T09:24:22.1367046Z cpp/op_allowlist_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.op_allowlist_test_1.1_d669e424d1b1838e_.log 2025-09-07T09:24:22.1367937Z 2025-09-07T09:24:25.9002846Z Running cpp/op_allowlist_test 1/1 ... [2025-09-07 09:24:25.894718] 2025-09-07T09:24:25.9003281Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:24:25.9011715Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\op_allowlist_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e53f13fb866f4d4a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:24:25.894718] 2025-09-07T09:24:27.3501462Z 2025-09-07T09:24:27.3502296Z cpp/op_allowlist_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.op_allowlist_test_1.1_5708d66dcea20cb5_.log 2025-09-07T09:24:27.3503160Z 2025-09-07T09:24:27.9894001Z Running test batch 'tests to run' cost 7.33 seconds 2025-09-07T09:24:27.9900390Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:24:27.9900871Z Uploading artifacts took 0.00 seconds 2025-09-07T09:24:28.4733755Z 2025-09-07T09:24:28.4734302Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:24:28.4734748Z echo "op_allowlist_test" failed with exit code 0 2025-09-07T09:24:28.4735049Z goto fail 2025-09-07T09:24:28.4735226Z ) 2025-09-07T09:24:28.4735328Z 2025-09-07T09:24:28.4735513Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:24:28.4736970Z echo "op_allowlist_test" failed with exit code 0 2025-09-07T09:24:28.4737269Z goto fail 2025-09-07T09:24:28.4737443Z ) 2025-09-07T09:24:28.4737543Z 2025-09-07T09:24:28.4737863Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:24:28.4743583Z 2025-09-07T09:24:28.4743961Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:24:28.4744679Z call :libtorch_check "op_registration_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-09-07T09:24:28.4745336Z if errorlevel 1 goto fail 2025-09-07T09:24:28.4745557Z ) 2025-09-07T09:24:28.4754362Z 2025-09-07T09:24:28.4754768Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:24:28.4758503Z 2025-09-07T09:24:28.4759576Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:24:28.4761584Z 2025-09-07T09:24:28.4762286Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_registration_test" == "verify_api_visibility" goto :eof 2025-09-07T09:24:28.4762863Z 2025-09-07T09:24:28.4763437Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-09-07T09:24:28.4764390Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-09-07T09:24:28.4765118Z 2025-09-07T09:24:28.4765616Z (base) C:\actions-runner\_work\pytorch\pytorch>if "op_registration_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:24:28.4766346Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\op_registration_test.exe" 2025-09-07T09:24:28.4766856Z goto :eof 2025-09-07T09:24:28.4767022Z ) 2025-09-07T09:24:28.4767124Z 2025-09-07T09:24:28.4767497Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/op_registration_test" 2025-09-07T09:24:34.0926661Z Found test times from artifacts 2025-09-07T09:24:34.1694925Z Found test times from artifacts 2025-09-07T09:24:34.1719604Z Running all tests 2025-09-07T09:24:34.1725123Z Running parallel tests on 3 processes 2025-09-07T09:24:34.1725529Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:24:34.1725789Z Serial tests (0): 2025-09-07T09:24:34.1726015Z Parallel tests (1): 2025-09-07T09:24:34.1726251Z cpp/op_registration_test 1/1 2025-09-07T09:24:34.1726518Z Name: excluded (est. time: 0.0min) 2025-09-07T09:24:34.1726760Z Serial tests (0): 2025-09-07T09:24:34.1726964Z Parallel tests (0): 2025-09-07T09:24:34.1728754Z Running cpp/op_registration_test 1/1 ... [2025-09-07 09:24:34.170214] 2025-09-07T09:24:34.1729153Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:24:34.1738522Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\op_registration_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-d90dd8522a6af5fe.xml', '-x', '--reruns=2'] ... [2025-09-07 09:24:34.173286] 2025-09-07T09:24:34.1740220Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:24:36.3699855Z 2025-09-07T09:24:36.3700811Z cpp/op_registration_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.op_registration_test_1.1_4b1108e0415cda9f_.log 2025-09-07T09:24:36.3702781Z 2025-09-07T09:24:40.0527477Z Running cpp/op_registration_test 1/1 ... [2025-09-07 09:24:40.052562] 2025-09-07T09:24:40.0527951Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:24:40.0538329Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\op_registration_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-9f8a8b0292e12d1a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:24:40.053648] 2025-09-07T09:24:59.2640696Z 2025-09-07T09:24:59.2641786Z cpp/op_registration_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.op_registration_test_1.1_50b799fa17895fbf_.log 2025-09-07T09:24:59.2645027Z 2025-09-07T09:24:59.8933507Z Running test batch 'tests to run' cost 25.72 seconds 2025-09-07T09:24:59.8940273Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:24:59.8940754Z Uploading artifacts took 0.00 seconds 2025-09-07T09:25:00.3828411Z 2025-09-07T09:25:00.3828979Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:25:00.3829473Z echo "op_registration_test" failed with exit code 0 2025-09-07T09:25:00.3830651Z goto fail 2025-09-07T09:25:00.3830868Z ) 2025-09-07T09:25:00.3830962Z 2025-09-07T09:25:00.3831179Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:25:00.3831611Z echo "op_registration_test" failed with exit code 0 2025-09-07T09:25:00.3831916Z goto fail 2025-09-07T09:25:00.3832101Z ) 2025-09-07T09:25:00.3832201Z 2025-09-07T09:25:00.3832361Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:25:00.3839056Z 2025-09-07T09:25:00.3839269Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:25:00.3840287Z call :libtorch_check "packedtensoraccessor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-09-07T09:25:00.3841092Z if errorlevel 1 goto fail 2025-09-07T09:25:00.3841314Z ) 2025-09-07T09:25:00.3888608Z 2025-09-07T09:25:00.3889112Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:25:00.3892650Z 2025-09-07T09:25:00.3893113Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:25:00.3895704Z 2025-09-07T09:25:00.3896236Z (base) C:\actions-runner\_work\pytorch\pytorch>if "packedtensoraccessor_test" == "verify_api_visibility" goto :eof 2025-09-07T09:25:00.3897086Z 2025-09-07T09:25:00.3897646Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-09-07T09:25:00.3898651Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-09-07T09:25:00.3899427Z 2025-09-07T09:25:00.3899857Z (base) C:\actions-runner\_work\pytorch\pytorch>if "packedtensoraccessor_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:25:00.3900698Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\packedtensoraccessor_test.exe" 2025-09-07T09:25:00.3901283Z goto :eof 2025-09-07T09:25:00.3901453Z ) 2025-09-07T09:25:00.3901562Z 2025-09-07T09:25:00.3902041Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/packedtensoraccessor_test" 2025-09-07T09:25:06.0598758Z Found test times from artifacts 2025-09-07T09:25:06.1429995Z Found test times from artifacts 2025-09-07T09:25:06.1459475Z Running all tests 2025-09-07T09:25:06.1465748Z Running parallel tests on 3 processes 2025-09-07T09:25:06.1466129Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:25:06.1466401Z Serial tests (0): 2025-09-07T09:25:06.1466613Z Parallel tests (1): 2025-09-07T09:25:06.1466858Z cpp/packedtensoraccessor_test 1/1 2025-09-07T09:25:06.1467153Z Name: excluded (est. time: 0.0min) 2025-09-07T09:25:06.1467397Z Serial tests (0): 2025-09-07T09:25:06.1467600Z Parallel tests (0): 2025-09-07T09:25:06.1469388Z Running cpp/packedtensoraccessor_test 1/1 ... [2025-09-07 09:25:06.146427] 2025-09-07T09:25:06.1469859Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:25:06.1481510Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\packedtensoraccessor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-5a5b7328bc645e8d.xml', '-x', '--reruns=2'] ... [2025-09-07 09:25:06.147614] 2025-09-07T09:25:06.1483527Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:25:08.4483369Z 2025-09-07T09:25:08.4484264Z cpp/packedtensoraccessor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.packedtensoraccessor_test_1.1_ad831dd6f1c703de_.log 2025-09-07T09:25:08.4484976Z 2025-09-07T09:25:12.2603666Z Running cpp/packedtensoraccessor_test 1/1 ... [2025-09-07 09:25:12.260077] 2025-09-07T09:25:12.2604144Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:25:12.2612711Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\packedtensoraccessor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-51006b829336b490.xml', '-x', '--reruns=2'] ... [2025-09-07 09:25:12.260697] 2025-09-07T09:25:14.9071397Z 2025-09-07T09:25:14.9072724Z cpp/packedtensoraccessor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.packedtensoraccessor_test_1.1_3910a87a52305687_.log 2025-09-07T09:25:14.9073578Z 2025-09-07T09:25:15.5621088Z Running test batch 'tests to run' cost 9.42 seconds 2025-09-07T09:25:15.5626465Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:25:15.5626922Z Uploading artifacts took 0.00 seconds 2025-09-07T09:25:16.0529251Z 2025-09-07T09:25:16.0530010Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:25:16.0530515Z echo "packedtensoraccessor_test" failed with exit code 0 2025-09-07T09:25:16.0530863Z goto fail 2025-09-07T09:25:16.0531033Z ) 2025-09-07T09:25:16.0531134Z 2025-09-07T09:25:16.0531329Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:25:16.0531799Z echo "packedtensoraccessor_test" failed with exit code 0 2025-09-07T09:25:16.0532139Z goto fail 2025-09-07T09:25:16.0532301Z ) 2025-09-07T09:25:16.0532397Z 2025-09-07T09:25:16.0532544Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:25:16.0539363Z 2025-09-07T09:25:16.0539847Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:25:16.0540490Z call :libtorch_check "pow_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-09-07T09:25:16.0541071Z if errorlevel 1 goto fail 2025-09-07T09:25:16.0541300Z ) 2025-09-07T09:25:16.0549411Z 2025-09-07T09:25:16.0549731Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:25:16.0553196Z 2025-09-07T09:25:16.0553645Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:25:16.0555740Z 2025-09-07T09:25:16.0556222Z (base) C:\actions-runner\_work\pytorch\pytorch>if "pow_test" == "verify_api_visibility" goto :eof 2025-09-07T09:25:16.0557043Z 2025-09-07T09:25:16.0557532Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-09-07T09:25:16.0558412Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-09-07T09:25:16.0559234Z 2025-09-07T09:25:16.0559671Z (base) C:\actions-runner\_work\pytorch\pytorch>if "pow_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:25:16.0560331Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\pow_test.exe" 2025-09-07T09:25:16.0560785Z goto :eof 2025-09-07T09:25:16.0560956Z ) 2025-09-07T09:25:16.0561051Z 2025-09-07T09:25:16.0561380Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/pow_test" 2025-09-07T09:25:21.6575237Z Found test times from artifacts 2025-09-07T09:25:21.7340853Z Found test times from artifacts 2025-09-07T09:25:21.7365205Z Running all tests 2025-09-07T09:25:21.7370211Z Running parallel tests on 3 processes 2025-09-07T09:25:21.7370581Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:25:21.7370858Z Serial tests (0): 2025-09-07T09:25:21.7371083Z Parallel tests (1): 2025-09-07T09:25:21.7371291Z cpp/pow_test 1/1 2025-09-07T09:25:21.7371520Z Name: excluded (est. time: 0.0min) 2025-09-07T09:25:21.7371764Z Serial tests (0): 2025-09-07T09:25:21.7371967Z Parallel tests (0): 2025-09-07T09:25:21.7373833Z Running cpp/pow_test 1/1 ... [2025-09-07 09:25:21.734799] 2025-09-07T09:25:21.7374201Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:25:21.7383587Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\pow_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-97ca3c5635070986.xml', '-x', '--reruns=2'] ... [2025-09-07 09:25:21.734799] 2025-09-07T09:25:21.7385267Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:25:23.9107387Z 2025-09-07T09:25:23.9108539Z cpp/pow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.pow_test_1.1_4b4ad7ab4ec64e74_.log 2025-09-07T09:25:23.9109113Z 2025-09-07T09:25:27.6289810Z Running cpp/pow_test 1/1 ... [2025-09-07 09:25:27.622046] 2025-09-07T09:25:27.6290215Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:25:27.6298554Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\pow_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-168653f7c9f4786e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:25:27.622046] 2025-09-07T09:25:31.8873676Z 2025-09-07T09:25:31.8874520Z cpp/pow_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.pow_test_1.1_765e08297bdf3307_.log 2025-09-07T09:25:31.8877149Z 2025-09-07T09:25:32.4885984Z Running test batch 'tests to run' cost 10.75 seconds 2025-09-07T09:25:32.4892646Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:25:32.4893124Z Uploading artifacts took 0.00 seconds 2025-09-07T09:25:32.9764406Z 2025-09-07T09:25:32.9764966Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:25:32.9765395Z echo "pow_test" failed with exit code 0 2025-09-07T09:25:32.9765680Z goto fail 2025-09-07T09:25:32.9765846Z ) 2025-09-07T09:25:32.9765939Z 2025-09-07T09:25:32.9766141Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:25:32.9766528Z echo "pow_test" failed with exit code 0 2025-09-07T09:25:32.9766798Z goto fail 2025-09-07T09:25:32.9766974Z ) 2025-09-07T09:25:32.9767074Z 2025-09-07T09:25:32.9767225Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:25:32.9774267Z 2025-09-07T09:25:32.9774514Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:25:32.9776163Z call :libtorch_check "quantized_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-09-07T09:25:32.9776783Z if errorlevel 1 goto fail 2025-09-07T09:25:32.9776999Z ) 2025-09-07T09:25:32.9784366Z 2025-09-07T09:25:32.9784700Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:25:32.9788177Z 2025-09-07T09:25:32.9788641Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:25:32.9791019Z 2025-09-07T09:25:32.9791479Z (base) C:\actions-runner\_work\pytorch\pytorch>if "quantized_test" == "verify_api_visibility" goto :eof 2025-09-07T09:25:32.9793048Z 2025-09-07T09:25:32.9793615Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-09-07T09:25:32.9794515Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-09-07T09:25:32.9795030Z 2025-09-07T09:25:32.9795399Z (base) C:\actions-runner\_work\pytorch\pytorch>if "quantized_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:25:32.9796093Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\quantized_test.exe" 2025-09-07T09:25:32.9796570Z goto :eof 2025-09-07T09:25:32.9796740Z ) 2025-09-07T09:25:32.9796849Z 2025-09-07T09:25:32.9797207Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/quantized_test" 2025-09-07T09:25:38.5835705Z Found test times from artifacts 2025-09-07T09:25:38.6601008Z Found test times from artifacts 2025-09-07T09:25:38.6624962Z Running all tests 2025-09-07T09:25:38.6630213Z Running parallel tests on 3 processes 2025-09-07T09:25:38.6630595Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:25:38.6630851Z Serial tests (0): 2025-09-07T09:25:38.6631063Z Parallel tests (1): 2025-09-07T09:25:38.6631436Z cpp/quantized_test 1/1 2025-09-07T09:25:38.6631765Z Name: excluded (est. time: 0.0min) 2025-09-07T09:25:38.6632027Z Serial tests (0): 2025-09-07T09:25:38.6632227Z Parallel tests (0): 2025-09-07T09:25:38.6633873Z Running cpp/quantized_test 1/1 ... [2025-09-07 09:25:38.657344] 2025-09-07T09:25:38.6634245Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:25:38.6643447Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\quantized_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-f0e7f44816863110.xml', '-x', '--reruns=2'] ... [2025-09-07 09:25:38.657344] 2025-09-07T09:25:38.6645138Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:25:40.9068489Z 2025-09-07T09:25:40.9069553Z cpp/quantized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.quantized_test_1.1_d78b30552c0248c1_.log 2025-09-07T09:25:40.9070242Z 2025-09-07T09:25:44.6263849Z Running cpp/quantized_test 1/1 ... [2025-09-07 09:25:44.624997] 2025-09-07T09:25:44.6264264Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:25:44.6272902Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\quantized_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-54102dbce3e2a6f5.xml', '-x', '--reruns=2'] ... [2025-09-07 09:25:44.624997] 2025-09-07T09:25:48.1030002Z 2025-09-07T09:25:48.1031073Z cpp/quantized_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.quantized_test_1.1_d6a7669e3700fca2_.log 2025-09-07T09:25:48.1031708Z 2025-09-07T09:25:48.7276763Z Running test batch 'tests to run' cost 10.07 seconds 2025-09-07T09:25:48.7283262Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:25:48.7283740Z Uploading artifacts took 0.00 seconds 2025-09-07T09:25:49.2233326Z 2025-09-07T09:25:49.2233906Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:25:49.2234339Z echo "quantized_test" failed with exit code 0 2025-09-07T09:25:49.2234638Z goto fail 2025-09-07T09:25:49.2234802Z ) 2025-09-07T09:25:49.2234911Z 2025-09-07T09:25:49.2235100Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:25:49.2235505Z echo "quantized_test" failed with exit code 0 2025-09-07T09:25:49.2235787Z goto fail 2025-09-07T09:25:49.2235958Z ) 2025-09-07T09:25:49.2236169Z 2025-09-07T09:25:49.2236687Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:25:49.2243095Z 2025-09-07T09:25:49.2243386Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:25:49.2244032Z call :libtorch_check "reduce_ops_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-09-07T09:25:49.2244667Z if errorlevel 1 goto fail 2025-09-07T09:25:49.2244888Z ) 2025-09-07T09:25:49.2253370Z 2025-09-07T09:25:49.2253826Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:25:49.2256986Z 2025-09-07T09:25:49.2257487Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:25:49.2259532Z 2025-09-07T09:25:49.2259922Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reduce_ops_test" == "verify_api_visibility" goto :eof 2025-09-07T09:25:49.2260804Z 2025-09-07T09:25:49.2261331Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-09-07T09:25:49.2262240Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-09-07T09:25:49.2262816Z 2025-09-07T09:25:49.2263780Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reduce_ops_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:25:49.2264521Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reduce_ops_test.exe" 2025-09-07T09:25:49.2264995Z goto :eof 2025-09-07T09:25:49.2265167Z ) 2025-09-07T09:25:49.2265255Z 2025-09-07T09:25:49.2265615Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/reduce_ops_test" 2025-09-07T09:25:54.8186376Z Found test times from artifacts 2025-09-07T09:25:54.8950938Z Found test times from artifacts 2025-09-07T09:25:54.8976809Z Running all tests 2025-09-07T09:25:54.8981877Z Running parallel tests on 3 processes 2025-09-07T09:25:54.8982206Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:25:54.8982487Z Serial tests (0): 2025-09-07T09:25:54.8982687Z Parallel tests (1): 2025-09-07T09:25:54.8982902Z cpp/reduce_ops_test 1/1 2025-09-07T09:25:54.8983146Z Name: excluded (est. time: 0.0min) 2025-09-07T09:25:54.8983398Z Serial tests (0): 2025-09-07T09:25:54.8983595Z Parallel tests (0): 2025-09-07T09:25:54.8985425Z Running cpp/reduce_ops_test 1/1 ... [2025-09-07 09:25:54.898093] 2025-09-07T09:25:54.8985805Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:25:54.8995216Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\reduce_ops_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-192ff2f7beae5599.xml', '-x', '--reruns=2'] ... [2025-09-07 09:25:54.899170] 2025-09-07T09:25:54.8996904Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:25:57.1005569Z 2025-09-07T09:25:57.1006382Z cpp/reduce_ops_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reduce_ops_test_1.1_97b67798999ee9e9_.log 2025-09-07T09:25:57.1007090Z 2025-09-07T09:26:00.8387443Z Running cpp/reduce_ops_test 1/1 ... [2025-09-07 09:26:00.834476] 2025-09-07T09:26:00.8387862Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:26:00.8396682Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\reduce_ops_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6946f017d02fad38.xml', '-x', '--reruns=2'] ... [2025-09-07 09:26:00.839071] 2025-09-07T09:26:03.4687796Z 2025-09-07T09:26:03.4688806Z cpp/reduce_ops_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reduce_ops_test_1.1_e170cee7721f3fa9_.log 2025-09-07T09:26:03.4689583Z 2025-09-07T09:26:04.1078308Z Running test batch 'tests to run' cost 9.21 seconds 2025-09-07T09:26:04.1084687Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:26:04.1085170Z Uploading artifacts took 0.00 seconds 2025-09-07T09:26:04.5903068Z 2025-09-07T09:26:04.5903589Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:26:04.5904027Z echo "reduce_ops_test" failed with exit code 0 2025-09-07T09:26:04.5904322Z goto fail 2025-09-07T09:26:04.5904496Z ) 2025-09-07T09:26:04.5904583Z 2025-09-07T09:26:04.5904766Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:26:04.5905183Z echo "reduce_ops_test" failed with exit code 0 2025-09-07T09:26:04.5905474Z goto fail 2025-09-07T09:26:04.5905638Z ) 2025-09-07T09:26:04.5905826Z 2025-09-07T09:26:04.5906180Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:26:04.5912463Z 2025-09-07T09:26:04.5912664Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:26:04.5913398Z call :libtorch_check "reportMemoryUsage_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-09-07T09:26:04.5914296Z if errorlevel 1 goto fail 2025-09-07T09:26:04.5914520Z ) 2025-09-07T09:26:04.5923542Z 2025-09-07T09:26:04.5923926Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:26:04.5927351Z 2025-09-07T09:26:04.5927840Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:26:04.5929877Z 2025-09-07T09:26:04.5930300Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reportMemoryUsage_test" == "verify_api_visibility" goto :eof 2025-09-07T09:26:04.5932372Z 2025-09-07T09:26:04.5932910Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-09-07T09:26:04.5933879Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-09-07T09:26:04.5934333Z 2025-09-07T09:26:04.5934676Z (base) C:\actions-runner\_work\pytorch\pytorch>if "reportMemoryUsage_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:26:04.5935451Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\reportMemoryUsage_test.exe" 2025-09-07T09:26:04.5935955Z goto :eof 2025-09-07T09:26:04.5936122Z ) 2025-09-07T09:26:04.5936217Z 2025-09-07T09:26:04.5936602Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/reportMemoryUsage_test" 2025-09-07T09:26:10.1652642Z Found test times from artifacts 2025-09-07T09:26:10.2418809Z Found test times from artifacts 2025-09-07T09:26:10.2442755Z Running all tests 2025-09-07T09:26:10.2447985Z Running parallel tests on 3 processes 2025-09-07T09:26:10.2448376Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:26:10.2448643Z Serial tests (0): 2025-09-07T09:26:10.2448852Z Parallel tests (1): 2025-09-07T09:26:10.2449086Z cpp/reportMemoryUsage_test 1/1 2025-09-07T09:26:10.2449360Z Name: excluded (est. time: 0.0min) 2025-09-07T09:26:10.2449602Z Serial tests (0): 2025-09-07T09:26:10.2449808Z Parallel tests (0): 2025-09-07T09:26:10.2451612Z Running cpp/reportMemoryUsage_test 1/1 ... [2025-09-07 09:26:10.243380] 2025-09-07T09:26:10.2452036Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:26:10.2461213Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\reportMemoryUsage_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-669d6d0629894030.xml', '-x', '--reruns=2'] ... [2025-09-07 09:26:10.243380] 2025-09-07T09:26:10.2463124Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:26:12.4720628Z 2025-09-07T09:26:12.4722157Z cpp/reportMemoryUsage_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reportMemoryUsage_test_1.1_e639ddb80124746c_.log 2025-09-07T09:26:12.4723151Z 2025-09-07T09:26:16.1487061Z Running cpp/reportMemoryUsage_test 1/1 ... [2025-09-07 09:26:16.148084] 2025-09-07T09:26:16.1494384Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:26:16.1495634Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\reportMemoryUsage_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6617689ddc4e44bf.xml', '-x', '--reruns=2'] ... [2025-09-07 09:26:16.149233] 2025-09-07T09:26:18.6752216Z 2025-09-07T09:26:18.6753301Z cpp/reportMemoryUsage_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.reportMemoryUsage_test_1.1_64947867be526bcd_.log 2025-09-07T09:26:18.6753995Z 2025-09-07T09:26:19.3252763Z Running test batch 'tests to run' cost 9.08 seconds 2025-09-07T09:26:19.3259320Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:26:19.3259761Z Uploading artifacts took 0.00 seconds 2025-09-07T09:26:19.8066860Z 2025-09-07T09:26:19.8067464Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:26:19.8067921Z echo "reportMemoryUsage_test" failed with exit code 0 2025-09-07T09:26:19.8068243Z goto fail 2025-09-07T09:26:19.8068410Z ) 2025-09-07T09:26:19.8068517Z 2025-09-07T09:26:19.8068703Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:26:19.8069186Z echo "reportMemoryUsage_test" failed with exit code 0 2025-09-07T09:26:19.8069493Z goto fail 2025-09-07T09:26:19.8069669Z ) 2025-09-07T09:26:19.8069762Z 2025-09-07T09:26:19.8069915Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:26:19.8076543Z 2025-09-07T09:26:19.8076943Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:26:19.8077675Z call :libtorch_check "scalar_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-09-07T09:26:19.8078325Z if errorlevel 1 goto fail 2025-09-07T09:26:19.8078547Z ) 2025-09-07T09:26:19.8087242Z 2025-09-07T09:26:19.8087583Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:26:19.8091120Z 2025-09-07T09:26:19.8091571Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:26:19.8093993Z 2025-09-07T09:26:19.8094480Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_tensor_test" == "verify_api_visibility" goto :eof 2025-09-07T09:26:19.8095320Z 2025-09-07T09:26:19.8095862Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-09-07T09:26:19.8096784Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-09-07T09:26:19.8097530Z 2025-09-07T09:26:19.8097943Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:26:19.8098655Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_tensor_test.exe" 2025-09-07T09:26:19.8099150Z goto :eof 2025-09-07T09:26:19.8099331Z ) 2025-09-07T09:26:19.8099425Z 2025-09-07T09:26:19.8099786Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/scalar_tensor_test" 2025-09-07T09:26:25.4475492Z Found test times from artifacts 2025-09-07T09:26:25.5239565Z Found test times from artifacts 2025-09-07T09:26:25.5263478Z Running all tests 2025-09-07T09:26:25.5275712Z Running parallel tests on 3 processes 2025-09-07T09:26:25.5276551Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:26:25.5276828Z Serial tests (0): 2025-09-07T09:26:25.5277048Z Parallel tests (1): 2025-09-07T09:26:25.5277284Z cpp/scalar_tensor_test 1/1 2025-09-07T09:26:25.5277560Z Name: excluded (est. time: 0.0min) 2025-09-07T09:26:25.5277816Z Serial tests (0): 2025-09-07T09:26:25.5278004Z Parallel tests (0): 2025-09-07T09:26:25.5278317Z Running cpp/scalar_tensor_test 1/1 ... [2025-09-07 09:26:25.526722] 2025-09-07T09:26:25.5278690Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:26:25.5285110Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\scalar_tensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-2bbecdf3876ea24a.xml', '-x', '--reruns=2'] ... [2025-09-07 09:26:25.526722] 2025-09-07T09:26:25.5286859Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:26:27.7141740Z 2025-09-07T09:26:27.7142737Z cpp/scalar_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_tensor_test_1.1_f840b1193476e24d_.log 2025-09-07T09:26:27.7143452Z 2025-09-07T09:26:31.3925767Z Running cpp/scalar_tensor_test 1/1 ... [2025-09-07 09:26:31.392162] 2025-09-07T09:26:31.3926194Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:26:31.3935045Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\scalar_tensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-e15855e8f2c19319.xml', '-x', '--reruns=2'] ... [2025-09-07 09:26:31.393338] 2025-09-07T09:26:34.0489376Z 2025-09-07T09:26:34.0490359Z cpp/scalar_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_tensor_test_1.1_c22472e14c0d82c5_.log 2025-09-07T09:26:34.0491023Z 2025-09-07T09:26:34.6857543Z Running test batch 'tests to run' cost 9.16 seconds 2025-09-07T09:26:34.6864350Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:26:34.6864856Z Uploading artifacts took 0.00 seconds 2025-09-07T09:26:35.1760503Z 2025-09-07T09:26:35.1761109Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:26:35.1761552Z echo "scalar_tensor_test" failed with exit code 0 2025-09-07T09:26:35.1761865Z goto fail 2025-09-07T09:26:35.1762037Z ) 2025-09-07T09:26:35.1762178Z 2025-09-07T09:26:35.1762376Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:26:35.1762833Z echo "scalar_tensor_test" failed with exit code 0 2025-09-07T09:26:35.1763130Z goto fail 2025-09-07T09:26:35.1763322Z ) 2025-09-07T09:26:35.1763435Z 2025-09-07T09:26:35.1763925Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:26:35.1770965Z 2025-09-07T09:26:35.1771353Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:26:35.1772043Z call :libtorch_check "scalar_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-09-07T09:26:35.1772626Z if errorlevel 1 goto fail 2025-09-07T09:26:35.1772861Z ) 2025-09-07T09:26:35.1781561Z 2025-09-07T09:26:35.1781900Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:26:35.1785796Z 2025-09-07T09:26:35.1786254Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:26:35.1788698Z 2025-09-07T09:26:35.1789120Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_test" == "verify_api_visibility" goto :eof 2025-09-07T09:26:35.1790153Z 2025-09-07T09:26:35.1790798Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-09-07T09:26:35.1791722Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-09-07T09:26:35.1792274Z 2025-09-07T09:26:35.1792624Z (base) C:\actions-runner\_work\pytorch\pytorch>if "scalar_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:26:35.1793352Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\scalar_test.exe" 2025-09-07T09:26:35.1793809Z goto :eof 2025-09-07T09:26:35.1793997Z ) 2025-09-07T09:26:35.1794093Z 2025-09-07T09:26:35.1794448Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/scalar_test" 2025-09-07T09:26:40.9561715Z Found test times from artifacts 2025-09-07T09:26:41.0324047Z Found test times from artifacts 2025-09-07T09:26:41.0347929Z Running all tests 2025-09-07T09:26:41.0352944Z Running parallel tests on 3 processes 2025-09-07T09:26:41.0353309Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:26:41.0353575Z Serial tests (0): 2025-09-07T09:26:41.0353780Z Parallel tests (1): 2025-09-07T09:26:41.0354143Z cpp/scalar_test 1/1 2025-09-07T09:26:41.0354434Z Name: excluded (est. time: 0.0min) 2025-09-07T09:26:41.0354734Z Serial tests (0): 2025-09-07T09:26:41.0354942Z Parallel tests (0): 2025-09-07T09:26:41.0356698Z Running cpp/scalar_test 1/1 ... [2025-09-07 09:26:41.030852] 2025-09-07T09:26:41.0357062Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:26:41.0366269Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\scalar_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3a4baf12097b26de.xml', '-x', '--reruns=2'] ... [2025-09-07 09:26:41.030852] 2025-09-07T09:26:41.0367925Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:26:43.2356349Z 2025-09-07T09:26:43.2357161Z cpp/scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_test_1.1_eb38dfeb298012c7_.log 2025-09-07T09:26:43.2357849Z 2025-09-07T09:26:46.9600759Z Running cpp/scalar_test 1/1 ... [2025-09-07 09:26:46.959409] 2025-09-07T09:26:46.9601170Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:26:46.9609930Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\scalar_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-511b53e65171190c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:26:46.960605] 2025-09-07T09:26:49.8942991Z 2025-09-07T09:26:49.8943913Z cpp/scalar_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.scalar_test_1.1_09fe2d5cd092bd9c_.log 2025-09-07T09:26:49.8944607Z 2025-09-07T09:26:50.5161577Z Running test batch 'tests to run' cost 9.48 seconds 2025-09-07T09:26:50.5168624Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:26:50.5169126Z Uploading artifacts took 0.00 seconds 2025-09-07T09:26:51.0180576Z 2025-09-07T09:26:51.0181339Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:26:51.0181778Z echo "scalar_test" failed with exit code 0 2025-09-07T09:26:51.0182053Z goto fail 2025-09-07T09:26:51.0182221Z ) 2025-09-07T09:26:51.0182319Z 2025-09-07T09:26:51.0182505Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:26:51.0182910Z echo "scalar_test" failed with exit code 0 2025-09-07T09:26:51.0184200Z goto fail 2025-09-07T09:26:51.0184374Z ) 2025-09-07T09:26:51.0184469Z 2025-09-07T09:26:51.0184636Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:26:51.0190322Z 2025-09-07T09:26:51.0190892Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:26:51.0191609Z call :libtorch_check "StorageUtils_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-09-07T09:26:51.0192268Z if errorlevel 1 goto fail 2025-09-07T09:26:51.0192490Z ) 2025-09-07T09:26:51.0201227Z 2025-09-07T09:26:51.0202219Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:26:51.0205238Z 2025-09-07T09:26:51.0205739Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:26:51.0208327Z 2025-09-07T09:26:51.0208834Z (base) C:\actions-runner\_work\pytorch\pytorch>if "StorageUtils_test" == "verify_api_visibility" goto :eof 2025-09-07T09:26:51.0209678Z 2025-09-07T09:26:51.0210206Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-09-07T09:26:51.0211149Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-09-07T09:26:51.0211694Z 2025-09-07T09:26:51.0212079Z (base) C:\actions-runner\_work\pytorch\pytorch>if "StorageUtils_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:26:51.0212904Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\StorageUtils_test.exe" 2025-09-07T09:26:51.0213385Z goto :eof 2025-09-07T09:26:51.0213553Z ) 2025-09-07T09:26:51.0213648Z 2025-09-07T09:26:51.0214016Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/StorageUtils_test" 2025-09-07T09:26:56.7185665Z Found test times from artifacts 2025-09-07T09:26:56.7948781Z Found test times from artifacts 2025-09-07T09:26:56.7972984Z Running all tests 2025-09-07T09:26:56.7978912Z Running parallel tests on 3 processes 2025-09-07T09:26:56.7979274Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:26:56.7979551Z Serial tests (0): 2025-09-07T09:26:56.7979752Z Parallel tests (1): 2025-09-07T09:26:56.7979985Z cpp/StorageUtils_test 1/1 2025-09-07T09:26:56.7980239Z Name: excluded (est. time: 0.0min) 2025-09-07T09:26:56.7980494Z Serial tests (0): 2025-09-07T09:26:56.7980697Z Parallel tests (0): 2025-09-07T09:26:56.7982454Z Running cpp/StorageUtils_test 1/1 ... [2025-09-07 09:26:56.797654] 2025-09-07T09:26:56.7982863Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:26:56.7991882Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\StorageUtils_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0db3340d6fca3b2c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:26:56.798806] 2025-09-07T09:26:56.7993689Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:26:59.1333375Z 2025-09-07T09:26:59.1334218Z cpp/StorageUtils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.StorageUtils_test_1.1_094c50b45c20f353_.log 2025-09-07T09:26:59.1335017Z 2025-09-07T09:27:02.8855560Z Running cpp/StorageUtils_test 1/1 ... [2025-09-07 09:27:02.880958] 2025-09-07T09:27:02.8856004Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:27:02.8864374Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\StorageUtils_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-6aaf65e1d3726f29.xml', '-x', '--reruns=2'] ... [2025-09-07 09:27:02.880958] 2025-09-07T09:27:05.4161399Z 2025-09-07T09:27:05.4162453Z cpp/StorageUtils_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.StorageUtils_test_1.1_f991fcf1c04b7398_.log 2025-09-07T09:27:05.4163244Z 2025-09-07T09:27:06.0915962Z Running test batch 'tests to run' cost 9.29 seconds 2025-09-07T09:27:06.0922132Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:27:06.0922608Z Uploading artifacts took 0.00 seconds 2025-09-07T09:27:06.6218380Z 2025-09-07T09:27:06.6218897Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:27:06.6219346Z echo "StorageUtils_test" failed with exit code 0 2025-09-07T09:27:06.6219677Z goto fail 2025-09-07T09:27:06.6219843Z ) 2025-09-07T09:27:06.6219931Z 2025-09-07T09:27:06.6220120Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:27:06.6220529Z echo "StorageUtils_test" failed with exit code 0 2025-09-07T09:27:06.6220832Z goto fail 2025-09-07T09:27:06.6220992Z ) 2025-09-07T09:27:06.6221092Z 2025-09-07T09:27:06.6221238Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:27:06.6228460Z 2025-09-07T09:27:06.6228920Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:27:06.6229714Z call :libtorch_check "stride_properties_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-09-07T09:27:06.6230594Z if errorlevel 1 goto fail 2025-09-07T09:27:06.6230811Z ) 2025-09-07T09:27:06.6239789Z 2025-09-07T09:27:06.6240212Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:27:06.6244046Z 2025-09-07T09:27:06.6244630Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:27:06.6247076Z 2025-09-07T09:27:06.6247514Z (base) C:\actions-runner\_work\pytorch\pytorch>if "stride_properties_test" == "verify_api_visibility" goto :eof 2025-09-07T09:27:06.6248374Z 2025-09-07T09:27:06.6248985Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-09-07T09:27:06.6249937Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-09-07T09:27:06.6250688Z 2025-09-07T09:27:06.6251121Z (base) C:\actions-runner\_work\pytorch\pytorch>if "stride_properties_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:27:06.6252899Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\stride_properties_test.exe" 2025-09-07T09:27:06.6253396Z goto :eof 2025-09-07T09:27:06.6253570Z ) 2025-09-07T09:27:06.6253661Z 2025-09-07T09:27:06.6254035Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/stride_properties_test" 2025-09-07T09:27:12.2249429Z Found test times from artifacts 2025-09-07T09:27:12.3016631Z Found test times from artifacts 2025-09-07T09:27:12.3041182Z Running all tests 2025-09-07T09:27:12.3046469Z Running parallel tests on 3 processes 2025-09-07T09:27:12.3046838Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:27:12.3047113Z Serial tests (0): 2025-09-07T09:27:12.3047324Z Parallel tests (1): 2025-09-07T09:27:12.3047551Z cpp/stride_properties_test 1/1 2025-09-07T09:27:12.3047822Z Name: excluded (est. time: 0.0min) 2025-09-07T09:27:12.3048073Z Serial tests (0): 2025-09-07T09:27:12.3048264Z Parallel tests (0): 2025-09-07T09:27:12.3050080Z Running cpp/stride_properties_test 1/1 ... [2025-09-07 09:27:12.295710] 2025-09-07T09:27:12.3050482Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:27:12.3059719Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\stride_properties_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-cb11c5b6904ce6ed.xml', '-x', '--reruns=2'] ... [2025-09-07 09:27:12.305755] 2025-09-07T09:27:12.3061623Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:27:14.5293240Z 2025-09-07T09:27:14.5294122Z cpp/stride_properties_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.stride_properties_test_1.1_a77008de0491ff1d_.log 2025-09-07T09:27:14.5295152Z 2025-09-07T09:27:18.2361225Z Running cpp/stride_properties_test 1/1 ... [2025-09-07 09:27:18.235903] 2025-09-07T09:27:18.2361682Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:27:18.2372948Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\stride_properties_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7206c6b065fdbe1b.xml', '-x', '--reruns=2'] ... [2025-09-07 09:27:18.237030] 2025-09-07T09:27:21.1376648Z 2025-09-07T09:27:21.1377577Z cpp/stride_properties_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.stride_properties_test_1.1_ab3c99ea8a935cce_.log 2025-09-07T09:27:21.1378363Z 2025-09-07T09:27:21.7410522Z Running test batch 'tests to run' cost 9.44 seconds 2025-09-07T09:27:21.7416960Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:27:21.7417401Z Uploading artifacts took 0.00 seconds 2025-09-07T09:27:22.2258309Z 2025-09-07T09:27:22.2258922Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:27:22.2259405Z echo "stride_properties_test" failed with exit code 0 2025-09-07T09:27:22.2259722Z goto fail 2025-09-07T09:27:22.2259894Z ) 2025-09-07T09:27:22.2260148Z 2025-09-07T09:27:22.2260401Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:27:22.2260841Z echo "stride_properties_test" failed with exit code 0 2025-09-07T09:27:22.2261152Z goto fail 2025-09-07T09:27:22.2261335Z ) 2025-09-07T09:27:22.2261697Z 2025-09-07T09:27:22.2261885Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:27:22.2269260Z 2025-09-07T09:27:22.2269666Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:27:22.2270516Z call :libtorch_check "tensor_iterator_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-09-07T09:27:22.2271173Z if errorlevel 1 goto fail 2025-09-07T09:27:22.2271399Z ) 2025-09-07T09:27:22.2281178Z 2025-09-07T09:27:22.2281635Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:27:22.2285392Z 2025-09-07T09:27:22.2285872Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:27:22.2288329Z 2025-09-07T09:27:22.2288847Z (base) C:\actions-runner\_work\pytorch\pytorch>if "tensor_iterator_test" == "verify_api_visibility" goto :eof 2025-09-07T09:27:22.2289687Z 2025-09-07T09:27:22.2290268Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-09-07T09:27:22.2291212Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-09-07T09:27:22.2292007Z 2025-09-07T09:27:22.2292421Z (base) C:\actions-runner\_work\pytorch\pytorch>if "tensor_iterator_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:27:22.2293169Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\tensor_iterator_test.exe" 2025-09-07T09:27:22.2293709Z goto :eof 2025-09-07T09:27:22.2293932Z ) 2025-09-07T09:27:22.2294357Z 2025-09-07T09:27:22.2294805Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/tensor_iterator_test" 2025-09-07T09:27:27.7876559Z Found test times from artifacts 2025-09-07T09:27:27.8646110Z Found test times from artifacts 2025-09-07T09:27:27.8669673Z Running all tests 2025-09-07T09:27:27.8674733Z Running parallel tests on 3 processes 2025-09-07T09:27:27.8675047Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:27:27.8675314Z Serial tests (0): 2025-09-07T09:27:27.8675540Z Parallel tests (1): 2025-09-07T09:27:27.8675769Z cpp/tensor_iterator_test 1/1 2025-09-07T09:27:27.8676028Z Name: excluded (est. time: 0.0min) 2025-09-07T09:27:27.8676268Z Serial tests (0): 2025-09-07T09:27:27.8676470Z Parallel tests (0): 2025-09-07T09:27:27.8678351Z Running cpp/tensor_iterator_test 1/1 ... [2025-09-07 09:27:27.861210] 2025-09-07T09:27:27.8678740Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:27:27.8688017Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\tensor_iterator_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-3f1f269da0542232.xml', '-x', '--reruns=2'] ... [2025-09-07 09:27:27.861210] 2025-09-07T09:27:27.8689729Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:27:30.1362651Z 2025-09-07T09:27:30.1363696Z cpp/tensor_iterator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.tensor_iterator_test_1.1_9e923a75a9cc07b1_.log 2025-09-07T09:27:30.1364345Z 2025-09-07T09:27:33.8639450Z Running cpp/tensor_iterator_test 1/1 ... [2025-09-07 09:27:33.861818] 2025-09-07T09:27:33.8639895Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:27:33.8648345Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\tensor_iterator_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-10f81fa8079fb91f.xml', '-x', '--reruns=2'] ... [2025-09-07 09:27:33.861818] 2025-09-07T09:27:44.6488444Z 2025-09-07T09:27:44.6489451Z cpp/tensor_iterator_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.tensor_iterator_test_1.1_2f3692607313797d_.log 2025-09-07T09:27:44.6491333Z 2025-09-07T09:27:45.3285803Z Running test batch 'tests to run' cost 17.47 seconds 2025-09-07T09:27:45.3292429Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:27:45.3292885Z Uploading artifacts took 0.00 seconds 2025-09-07T09:27:45.8211130Z 2025-09-07T09:27:45.8211686Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:27:45.8212182Z echo "tensor_iterator_test" failed with exit code 0 2025-09-07T09:27:45.8212540Z goto fail 2025-09-07T09:27:45.8212712Z ) 2025-09-07T09:27:45.8212916Z 2025-09-07T09:27:45.8213229Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:27:45.8213708Z echo "tensor_iterator_test" failed with exit code 0 2025-09-07T09:27:45.8214075Z goto fail 2025-09-07T09:27:45.8214239Z ) 2025-09-07T09:27:45.8214728Z 2025-09-07T09:27:45.8214987Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:27:45.8224466Z 2025-09-07T09:27:45.8224704Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:27:45.8225454Z call :libtorch_check "test_parallel" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-09-07T09:27:45.8226103Z if errorlevel 1 goto fail 2025-09-07T09:27:45.8226322Z ) 2025-09-07T09:27:45.8236199Z 2025-09-07T09:27:45.8236788Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:27:45.8239965Z 2025-09-07T09:27:45.8240460Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:27:45.8242667Z 2025-09-07T09:27:45.8243041Z (base) C:\actions-runner\_work\pytorch\pytorch>if "test_parallel" == "verify_api_visibility" goto :eof 2025-09-07T09:27:45.8243892Z 2025-09-07T09:27:45.8244494Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-09-07T09:27:45.8245401Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-09-07T09:27:45.8246253Z 2025-09-07T09:27:45.8246635Z (base) C:\actions-runner\_work\pytorch\pytorch>if "test_parallel" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:27:45.8247387Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\test_parallel.exe" 2025-09-07T09:27:45.8247905Z goto :eof 2025-09-07T09:27:45.8248067Z ) 2025-09-07T09:27:45.8248166Z 2025-09-07T09:27:45.8248556Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/test_parallel" 2025-09-07T09:27:51.4623694Z Found test times from artifacts 2025-09-07T09:27:51.5386807Z Found test times from artifacts 2025-09-07T09:27:51.5410949Z Running all tests 2025-09-07T09:27:51.5416149Z Running parallel tests on 3 processes 2025-09-07T09:27:51.5416469Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:27:51.5416727Z Serial tests (0): 2025-09-07T09:27:51.5417049Z Parallel tests (1): 2025-09-07T09:27:51.5417359Z cpp/test_parallel 1/1 2025-09-07T09:27:51.5417593Z Name: excluded (est. time: 0.0min) 2025-09-07T09:27:51.5417850Z Serial tests (0): 2025-09-07T09:27:51.5418049Z Parallel tests (0): 2025-09-07T09:27:51.5419662Z Running cpp/test_parallel 1/1 ... [2025-09-07 09:27:51.530331] 2025-09-07T09:27:51.5420034Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:27:51.5429292Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\test_parallel.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-857a48f4fe07d4de.xml', '-x', '--reruns=2'] ... [2025-09-07 09:27:51.530331] 2025-09-07T09:27:51.5430972Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:27:53.7208507Z 2025-09-07T09:27:53.7209585Z cpp/test_parallel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_parallel_1.1_c4673e778ddf8fb3_.log 2025-09-07T09:27:53.7210195Z 2025-09-07T09:27:57.4437973Z Running cpp/test_parallel 1/1 ... [2025-09-07 09:27:57.443223] 2025-09-07T09:27:57.4438445Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:27:57.4447267Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\test_parallel.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7562d5074cc28d39.xml', '-x', '--reruns=2'] ... [2025-09-07 09:27:57.444395] 2025-09-07T09:28:00.5846283Z 2025-09-07T09:28:00.5847462Z cpp/test_parallel 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.test_parallel_1.1_c1f168a01003f723_.log 2025-09-07T09:28:00.5848653Z 2025-09-07T09:28:01.1972965Z Running test batch 'tests to run' cost 9.66 seconds 2025-09-07T09:28:01.1979561Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:28:01.1980016Z Uploading artifacts took 0.00 seconds 2025-09-07T09:28:01.6894520Z 2025-09-07T09:28:01.6895121Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:28:01.6895574Z echo "test_parallel" failed with exit code 0 2025-09-07T09:28:01.6895870Z goto fail 2025-09-07T09:28:01.6896054Z ) 2025-09-07T09:28:01.6896149Z 2025-09-07T09:28:01.6896350Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:28:01.6896757Z echo "test_parallel" failed with exit code 0 2025-09-07T09:28:01.6897046Z goto fail 2025-09-07T09:28:01.6897210Z ) 2025-09-07T09:28:01.6897471Z 2025-09-07T09:28:01.6897623Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:28:01.6905039Z 2025-09-07T09:28:01.6905441Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:28:01.6906174Z call :libtorch_check "thread_init_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-09-07T09:28:01.6906818Z if errorlevel 1 goto fail 2025-09-07T09:28:01.6907032Z ) 2025-09-07T09:28:01.6915274Z 2025-09-07T09:28:01.6915657Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:28:01.6918883Z 2025-09-07T09:28:01.6919395Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:28:01.6921564Z 2025-09-07T09:28:01.6921956Z (base) C:\actions-runner\_work\pytorch\pytorch>if "thread_init_test" == "verify_api_visibility" goto :eof 2025-09-07T09:28:01.6923198Z 2025-09-07T09:28:01.6923782Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-09-07T09:28:01.6924682Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-09-07T09:28:01.6925510Z 2025-09-07T09:28:01.6926016Z (base) C:\actions-runner\_work\pytorch\pytorch>if "thread_init_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:28:01.6926734Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\thread_init_test.exe" 2025-09-07T09:28:01.6927226Z goto :eof 2025-09-07T09:28:01.6927394Z ) 2025-09-07T09:28:01.6927487Z 2025-09-07T09:28:01.6927848Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/thread_init_test" 2025-09-07T09:28:07.4590320Z Found test times from artifacts 2025-09-07T09:28:07.5355659Z Found test times from artifacts 2025-09-07T09:28:07.5379522Z Running all tests 2025-09-07T09:28:07.5384595Z Running parallel tests on 3 processes 2025-09-07T09:28:07.5384972Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:28:07.5385242Z Serial tests (0): 2025-09-07T09:28:07.5385447Z Parallel tests (1): 2025-09-07T09:28:07.5385675Z cpp/thread_init_test 1/1 2025-09-07T09:28:07.5385923Z Name: excluded (est. time: 0.0min) 2025-09-07T09:28:07.5386171Z Serial tests (0): 2025-09-07T09:28:07.5386363Z Parallel tests (0): 2025-09-07T09:28:07.5388257Z Running cpp/thread_init_test 1/1 ... [2025-09-07 09:28:07.538714] 2025-09-07T09:28:07.5388634Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:28:07.5398038Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\thread_init_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-64ad589ab22e787e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:28:07.539305] 2025-09-07T09:28:07.5399823Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:28:09.9812562Z 2025-09-07T09:28:09.9813407Z cpp/thread_init_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.thread_init_test_1.1_9f00a7e83530a60d_.log 2025-09-07T09:28:09.9815956Z 2025-09-07T09:28:13.6974067Z Running cpp/thread_init_test 1/1 ... [2025-09-07 09:28:13.697025] 2025-09-07T09:28:13.6974485Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:28:13.6983754Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\thread_init_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b21ae1f761f4d8be.xml', '-x', '--reruns=2'] ... [2025-09-07 09:28:13.698138] 2025-09-07T09:28:16.4863715Z 2025-09-07T09:28:16.4864673Z cpp/thread_init_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.thread_init_test_1.1_b065842065d2b80c_.log 2025-09-07T09:28:16.4865374Z 2025-09-07T09:28:17.0902361Z Running test batch 'tests to run' cost 9.55 seconds 2025-09-07T09:28:17.0918224Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:28:17.0918711Z Uploading artifacts took 0.00 seconds 2025-09-07T09:28:17.5778695Z 2025-09-07T09:28:17.5779283Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:28:17.5779720Z echo "thread_init_test" failed with exit code 0 2025-09-07T09:28:17.5780018Z goto fail 2025-09-07T09:28:17.5780192Z ) 2025-09-07T09:28:17.5780288Z 2025-09-07T09:28:17.5780471Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:28:17.5780875Z echo "thread_init_test" failed with exit code 0 2025-09-07T09:28:17.5781156Z goto fail 2025-09-07T09:28:17.5781326Z ) 2025-09-07T09:28:17.5781484Z 2025-09-07T09:28:17.5781677Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:28:17.5788124Z 2025-09-07T09:28:17.5788501Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:28:17.5789349Z call :libtorch_check "type_ptr_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-09-07T09:28:17.5790013Z if errorlevel 1 goto fail 2025-09-07T09:28:17.5790247Z ) 2025-09-07T09:28:17.5798221Z 2025-09-07T09:28:17.5798624Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:28:17.5802287Z 2025-09-07T09:28:17.5802891Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:28:17.5804942Z 2025-09-07T09:28:17.5805332Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_ptr_test" == "verify_api_visibility" goto :eof 2025-09-07T09:28:17.5806165Z 2025-09-07T09:28:17.5806706Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-09-07T09:28:17.5807613Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-09-07T09:28:17.5808307Z 2025-09-07T09:28:17.5808714Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_ptr_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:28:17.5809409Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_ptr_test.exe" 2025-09-07T09:28:17.5809873Z goto :eof 2025-09-07T09:28:17.5810047Z ) 2025-09-07T09:28:17.5810141Z 2025-09-07T09:28:17.5810499Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/type_ptr_test" 2025-09-07T09:28:23.2912373Z Found test times from artifacts 2025-09-07T09:28:23.3679896Z Found test times from artifacts 2025-09-07T09:28:23.3704175Z Running all tests 2025-09-07T09:28:23.3709551Z Running parallel tests on 3 processes 2025-09-07T09:28:23.3709925Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:28:23.3710200Z Serial tests (0): 2025-09-07T09:28:23.3710411Z Parallel tests (1): 2025-09-07T09:28:23.3710632Z cpp/type_ptr_test 1/1 2025-09-07T09:28:23.3710874Z Name: excluded (est. time: 0.0min) 2025-09-07T09:28:23.3711124Z Serial tests (0): 2025-09-07T09:28:23.3711361Z Parallel tests (0): 2025-09-07T09:28:23.3713252Z Running cpp/type_ptr_test 1/1 ... [2025-09-07 09:28:23.371157] 2025-09-07T09:28:23.3713620Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:28:23.3722825Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\type_ptr_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-7ff32c20cb6cf226.xml', '-x', '--reruns=2'] ... [2025-09-07 09:28:23.371157] 2025-09-07T09:28:23.3724589Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:28:25.5986315Z 2025-09-07T09:28:25.5987121Z cpp/type_ptr_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_ptr_test_1.1_93e4522bdbfaefb6_.log 2025-09-07T09:28:25.5987748Z 2025-09-07T09:28:29.2741755Z Running cpp/type_ptr_test 1/1 ... [2025-09-07 09:28:29.259558] 2025-09-07T09:28:29.2750176Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:28:29.2751386Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\type_ptr_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-930e747317f59f7e.xml', '-x', '--reruns=2'] ... [2025-09-07 09:28:29.259558] 2025-09-07T09:28:32.1852014Z 2025-09-07T09:28:32.1852805Z cpp/type_ptr_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_ptr_test_1.1_c1730312143a830f_.log 2025-09-07T09:28:32.1853734Z 2025-09-07T09:28:32.8306638Z Running test batch 'tests to run' cost 9.46 seconds 2025-09-07T09:28:32.8313023Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:28:32.8313693Z Uploading artifacts took 0.00 seconds 2025-09-07T09:28:33.3195130Z 2025-09-07T09:28:33.3195771Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:28:33.3196221Z echo "type_ptr_test" failed with exit code 0 2025-09-07T09:28:33.3196507Z goto fail 2025-09-07T09:28:33.3196688Z ) 2025-09-07T09:28:33.3196789Z 2025-09-07T09:28:33.3196978Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:28:33.3197387Z echo "type_ptr_test" failed with exit code 0 2025-09-07T09:28:33.3197671Z goto fail 2025-09-07T09:28:33.3197840Z ) 2025-09-07T09:28:33.3197935Z 2025-09-07T09:28:33.3198098Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:28:33.3204753Z 2025-09-07T09:28:33.3204982Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:28:33.3205631Z call :libtorch_check "type_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-09-07T09:28:33.3206257Z if errorlevel 1 goto fail 2025-09-07T09:28:33.3206484Z ) 2025-09-07T09:28:33.3215196Z 2025-09-07T09:28:33.3215570Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:28:33.3219049Z 2025-09-07T09:28:33.3219557Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:28:33.3221695Z 2025-09-07T09:28:33.3222077Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_test" == "verify_api_visibility" goto :eof 2025-09-07T09:28:33.3223516Z 2025-09-07T09:28:33.3224012Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-09-07T09:28:33.3224882Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-09-07T09:28:33.3225280Z 2025-09-07T09:28:33.3225568Z (base) C:\actions-runner\_work\pytorch\pytorch>if "type_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:28:33.3226217Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\type_test.exe" 2025-09-07T09:28:33.3226669Z goto :eof 2025-09-07T09:28:33.3226831Z ) 2025-09-07T09:28:33.3226926Z 2025-09-07T09:28:33.3227255Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/type_test" 2025-09-07T09:28:38.9976081Z Found test times from artifacts 2025-09-07T09:28:39.0738606Z Found test times from artifacts 2025-09-07T09:28:39.0762740Z Running all tests 2025-09-07T09:28:39.0767858Z Running parallel tests on 3 processes 2025-09-07T09:28:39.0768228Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:28:39.0768610Z Serial tests (0): 2025-09-07T09:28:39.0768826Z Parallel tests (1): 2025-09-07T09:28:39.0769103Z cpp/type_test 1/1 2025-09-07T09:28:39.0769321Z Name: excluded (est. time: 0.0min) 2025-09-07T09:28:39.0769583Z Serial tests (0): 2025-09-07T09:28:39.0769784Z Parallel tests (0): 2025-09-07T09:28:39.0771475Z Running cpp/type_test 1/1 ... [2025-09-07 09:28:39.071018] 2025-09-07T09:28:39.0771826Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:28:39.0781018Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\type_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-690aed6f9fa19a4c.xml', '-x', '--reruns=2'] ... [2025-09-07 09:28:39.071018] 2025-09-07T09:28:39.0782708Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:28:41.2925660Z 2025-09-07T09:28:41.2926676Z cpp/type_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_test_1.1_a3dc776da16d3035_.log 2025-09-07T09:28:41.2927234Z 2025-09-07T09:28:44.9576348Z Running cpp/type_test 1/1 ... [2025-09-07 09:28:44.957021] 2025-09-07T09:28:44.9576990Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:28:44.9585362Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\type_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b150d6a2292101e0.xml', '-x', '--reruns=2'] ... [2025-09-07 09:28:44.957021] 2025-09-07T09:28:48.3302745Z 2025-09-07T09:28:48.3303578Z cpp/type_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.type_test_1.1_a62da9aee0154ab4_.log 2025-09-07T09:28:48.3304757Z 2025-09-07T09:28:48.9777677Z Running test batch 'tests to run' cost 9.91 seconds 2025-09-07T09:28:48.9784231Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:28:48.9784687Z Uploading artifacts took 0.00 seconds 2025-09-07T09:28:49.4650789Z 2025-09-07T09:28:49.4651317Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:28:49.4651768Z echo "type_test" failed with exit code 0 2025-09-07T09:28:49.4652040Z goto fail 2025-09-07T09:28:49.4652205Z ) 2025-09-07T09:28:49.4652301Z 2025-09-07T09:28:49.4652488Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:28:49.4652941Z echo "type_test" failed with exit code 0 2025-09-07T09:28:49.4653203Z goto fail 2025-09-07T09:28:49.4653429Z ) 2025-09-07T09:28:49.4654021Z 2025-09-07T09:28:49.4654514Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:28:49.4661093Z 2025-09-07T09:28:49.4661370Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:28:49.4662097Z call :libtorch_check "undefined_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-09-07T09:28:49.4662751Z if errorlevel 1 goto fail 2025-09-07T09:28:49.4662966Z ) 2025-09-07T09:28:49.4671705Z 2025-09-07T09:28:49.4672065Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:28:49.4675974Z 2025-09-07T09:28:49.4676523Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:28:49.4679021Z 2025-09-07T09:28:49.4679488Z (base) C:\actions-runner\_work\pytorch\pytorch>if "undefined_tensor_test" == "verify_api_visibility" goto :eof 2025-09-07T09:28:49.4680316Z 2025-09-07T09:28:49.4680860Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-09-07T09:28:49.4681802Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-09-07T09:28:49.4682600Z 2025-09-07T09:28:49.4682990Z (base) C:\actions-runner\_work\pytorch\pytorch>if "undefined_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:28:49.4683745Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\undefined_tensor_test.exe" 2025-09-07T09:28:49.4684246Z goto :eof 2025-09-07T09:28:49.4684411Z ) 2025-09-07T09:28:49.4684520Z 2025-09-07T09:28:49.4684892Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/undefined_tensor_test" 2025-09-07T09:28:55.1206114Z Found test times from artifacts 2025-09-07T09:28:55.1967194Z Found test times from artifacts 2025-09-07T09:28:55.1991462Z Running all tests 2025-09-07T09:28:55.1997105Z Running parallel tests on 3 processes 2025-09-07T09:28:55.1997484Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:28:55.1997758Z Serial tests (0): 2025-09-07T09:28:55.1997975Z Parallel tests (1): 2025-09-07T09:28:55.1998202Z cpp/undefined_tensor_test 1/1 2025-09-07T09:28:55.1998463Z Name: excluded (est. time: 0.0min) 2025-09-07T09:28:55.1998759Z Serial tests (0): 2025-09-07T09:28:55.1998953Z Parallel tests (0): 2025-09-07T09:28:55.2000836Z Running cpp/undefined_tensor_test 1/1 ... [2025-09-07 09:28:55.199910] 2025-09-07T09:28:55.2001240Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:28:55.2010408Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\undefined_tensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-78c09250163b81be.xml', '-x', '--reruns=2'] ... [2025-09-07 09:28:55.200494] 2025-09-07T09:28:55.2012158Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:28:57.4753266Z 2025-09-07T09:28:57.4754292Z cpp/undefined_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.undefined_tensor_test_1.1_800918007d3c3b56_.log 2025-09-07T09:28:57.4754950Z 2025-09-07T09:29:01.2404649Z Running cpp/undefined_tensor_test 1/1 ... [2025-09-07 09:29:01.239799] 2025-09-07T09:29:01.2405127Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:29:01.2414063Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\undefined_tensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-0c402879d9d4e4fb.xml', '-x', '--reruns=2'] ... [2025-09-07 09:29:01.240996] 2025-09-07T09:29:03.7770534Z 2025-09-07T09:29:03.7771423Z cpp/undefined_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.undefined_tensor_test_1.1_45a54b45502fe782_.log 2025-09-07T09:29:03.7772204Z 2025-09-07T09:29:04.3822359Z Running test batch 'tests to run' cost 9.18 seconds 2025-09-07T09:29:04.3830158Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:29:04.3830653Z Uploading artifacts took 0.00 seconds 2025-09-07T09:29:04.8734389Z 2025-09-07T09:29:04.8734908Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:29:04.8735368Z echo "undefined_tensor_test" failed with exit code 0 2025-09-07T09:29:04.8735695Z goto fail 2025-09-07T09:29:04.8735870Z ) 2025-09-07T09:29:04.8735961Z 2025-09-07T09:29:04.8736155Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:29:04.8736578Z echo "undefined_tensor_test" failed with exit code 0 2025-09-07T09:29:04.8736894Z goto fail 2025-09-07T09:29:04.8737057Z ) 2025-09-07T09:29:04.8737266Z 2025-09-07T09:29:04.8737465Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:29:04.8746495Z 2025-09-07T09:29:04.8746788Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:29:04.8747571Z call :libtorch_check "verify_api_visibility" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\verify_api_visibility.exe" 2025-09-07T09:29:04.8748249Z if errorlevel 1 goto fail 2025-09-07T09:29:04.8748470Z ) 2025-09-07T09:29:04.8757606Z 2025-09-07T09:29:04.8757942Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:29:04.8761796Z 2025-09-07T09:29:04.8762266Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:29:04.8764687Z 2025-09-07T09:29:04.8765199Z (base) C:\actions-runner\_work\pytorch\pytorch>if "verify_api_visibility" == "verify_api_visibility" goto :eof 2025-09-07T09:29:04.8771512Z 2025-09-07T09:29:04.8771738Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:29:04.8772463Z call :libtorch_check "weakref_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-09-07T09:29:04.8773141Z if errorlevel 1 goto fail 2025-09-07T09:29:04.8773399Z ) 2025-09-07T09:29:04.8788515Z 2025-09-07T09:29:04.8788908Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:29:04.8789472Z 2025-09-07T09:29:04.8789898Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:29:04.8790444Z 2025-09-07T09:29:04.8790741Z (base) C:\actions-runner\_work\pytorch\pytorch>if "weakref_test" == "verify_api_visibility" goto :eof 2025-09-07T09:29:04.8791148Z 2025-09-07T09:29:04.8791630Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-09-07T09:29:04.8792501Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-09-07T09:29:04.8792919Z 2025-09-07T09:29:04.8793212Z (base) C:\actions-runner\_work\pytorch\pytorch>if "weakref_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:29:04.8793976Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\weakref_test.exe" 2025-09-07T09:29:04.8794486Z goto :eof 2025-09-07T09:29:04.8794664Z ) 2025-09-07T09:29:04.8795339Z 2025-09-07T09:29:04.8796035Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/weakref_test" 2025-09-07T09:29:10.5471036Z Found test times from artifacts 2025-09-07T09:29:10.6242452Z Found test times from artifacts 2025-09-07T09:29:10.6266220Z Running all tests 2025-09-07T09:29:10.6271770Z Running parallel tests on 3 processes 2025-09-07T09:29:10.6272157Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:29:10.6272426Z Serial tests (0): 2025-09-07T09:29:10.6272641Z Parallel tests (1): 2025-09-07T09:29:10.6272849Z cpp/weakref_test 1/1 2025-09-07T09:29:10.6273107Z Name: excluded (est. time: 0.0min) 2025-09-07T09:29:10.6273348Z Serial tests (0): 2025-09-07T09:29:10.6273561Z Parallel tests (0): 2025-09-07T09:29:10.6275386Z Running cpp/weakref_test 1/1 ... [2025-09-07 09:29:10.623752] 2025-09-07T09:29:10.6275753Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:29:10.6284842Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\weakref_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-799a4fda4a83a604.xml', '-x', '--reruns=2'] ... [2025-09-07 09:29:10.623752] 2025-09-07T09:29:10.6286593Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:29:12.9411880Z 2025-09-07T09:29:12.9412947Z cpp/weakref_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.weakref_test_1.1_d9e23993b2f7efc8_.log 2025-09-07T09:29:12.9413669Z 2025-09-07T09:29:16.6746569Z Running cpp/weakref_test 1/1 ... [2025-09-07 09:29:16.665376] 2025-09-07T09:29:16.6746993Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:29:16.6755357Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\weakref_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-b558b577934c7c33.xml', '-x', '--reruns=2'] ... [2025-09-07 09:29:16.665376] 2025-09-07T09:29:19.2536739Z 2025-09-07T09:29:19.2537516Z cpp/weakref_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.weakref_test_1.1_53dd24445a2cb05e_.log 2025-09-07T09:29:19.2539630Z 2025-09-07T09:29:19.8840397Z Running test batch 'tests to run' cost 9.26 seconds 2025-09-07T09:29:19.8847129Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:29:19.8847615Z Uploading artifacts took 0.00 seconds 2025-09-07T09:29:20.3735318Z 2025-09-07T09:29:20.3735828Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:29:20.3736247Z echo "weakref_test" failed with exit code 0 2025-09-07T09:29:20.3736680Z goto fail 2025-09-07T09:29:20.3736851Z ) 2025-09-07T09:29:20.3737492Z 2025-09-07T09:29:20.3737695Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:29:20.3738110Z echo "weakref_test" failed with exit code 0 2025-09-07T09:29:20.3738389Z goto fail 2025-09-07T09:29:20.3738559Z ) 2025-09-07T09:29:20.3738655Z 2025-09-07T09:29:20.3738813Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:29:20.3744828Z 2025-09-07T09:29:20.3745282Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:29:20.3745952Z call :libtorch_check "wrapdim_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-09-07T09:29:20.3746567Z if errorlevel 1 goto fail 2025-09-07T09:29:20.3746781Z ) 2025-09-07T09:29:20.3754379Z 2025-09-07T09:29:20.3754724Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:29:20.3758021Z 2025-09-07T09:29:20.3758480Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:29:20.3760539Z 2025-09-07T09:29:20.3760917Z (base) C:\actions-runner\_work\pytorch\pytorch>if "wrapdim_test" == "verify_api_visibility" goto :eof 2025-09-07T09:29:20.3762368Z 2025-09-07T09:29:20.3762860Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-09-07T09:29:20.3763750Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-09-07T09:29:20.3764163Z 2025-09-07T09:29:20.3764455Z (base) C:\actions-runner\_work\pytorch\pytorch>if "wrapdim_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:29:20.3765145Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\wrapdim_test.exe" 2025-09-07T09:29:20.3765597Z goto :eof 2025-09-07T09:29:20.3765775Z ) 2025-09-07T09:29:20.3765862Z 2025-09-07T09:29:20.3766216Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/wrapdim_test" 2025-09-07T09:29:26.0163391Z Found test times from artifacts 2025-09-07T09:29:26.0932150Z Found test times from artifacts 2025-09-07T09:29:26.0956554Z Running all tests 2025-09-07T09:29:26.0961954Z Running parallel tests on 3 processes 2025-09-07T09:29:26.0962266Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:29:26.0962537Z Serial tests (0): 2025-09-07T09:29:26.0962766Z Parallel tests (1): 2025-09-07T09:29:26.0962980Z cpp/wrapdim_test 1/1 2025-09-07T09:29:26.0963214Z Name: excluded (est. time: 0.0min) 2025-09-07T09:29:26.0963461Z Serial tests (0): 2025-09-07T09:29:26.0963811Z Parallel tests (0): 2025-09-07T09:29:26.0965547Z Running cpp/wrapdim_test 1/1 ... [2025-09-07 09:29:26.093968] 2025-09-07T09:29:26.0965923Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:29:26.0974960Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\wrapdim_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-324ed845cc0b3cc2.xml', '-x', '--reruns=2'] ... [2025-09-07 09:29:26.093968] 2025-09-07T09:29:26.0976624Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:29:28.3178487Z 2025-09-07T09:29:28.3179545Z cpp/wrapdim_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.wrapdim_test_1.1_0147026dee792c8c_.log 2025-09-07T09:29:28.3180139Z 2025-09-07T09:29:32.0945513Z Running cpp/wrapdim_test 1/1 ... [2025-09-07 09:29:32.094318] 2025-09-07T09:29:32.0953859Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:29:32.0955284Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\wrapdim_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-fe995aaee1c3072f.xml', '-x', '--reruns=2'] ... [2025-09-07 09:29:32.094907] 2025-09-07T09:29:34.6408182Z 2025-09-07T09:29:34.6409079Z cpp/wrapdim_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.wrapdim_test_1.1_895dedd577564892_.log 2025-09-07T09:29:34.6409799Z 2025-09-07T09:29:35.2801881Z Running test batch 'tests to run' cost 9.18 seconds 2025-09-07T09:29:35.2808010Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:29:35.2808457Z Uploading artifacts took 0.00 seconds 2025-09-07T09:29:35.8435970Z 2025-09-07T09:29:35.8436594Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:29:35.8437049Z echo "wrapdim_test" failed with exit code 0 2025-09-07T09:29:35.8437340Z goto fail 2025-09-07T09:29:35.8437503Z ) 2025-09-07T09:29:35.8437623Z 2025-09-07T09:29:35.8437816Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:29:35.8438218Z echo "wrapdim_test" failed with exit code 0 2025-09-07T09:29:35.8438500Z goto fail 2025-09-07T09:29:35.8438662Z ) 2025-09-07T09:29:35.8438755Z 2025-09-07T09:29:35.8438908Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:29:35.8444949Z 2025-09-07T09:29:35.8445359Z (base) C:\actions-runner\_work\pytorch\pytorch>( 2025-09-07T09:29:35.8446036Z call :libtorch_check "xla_tensor_test" "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-09-07T09:29:35.8446650Z if errorlevel 1 goto fail 2025-09-07T09:29:35.8446875Z ) 2025-09-07T09:29:35.8455255Z 2025-09-07T09:29:35.8455631Z (base) C:\actions-runner\_work\pytorch\pytorch>cd C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:29:35.8459185Z 2025-09-07T09:29:35.8459855Z (base) C:\actions-runner\_work\pytorch\pytorch>set CPP_TESTS_DIR=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test 2025-09-07T09:29:35.8462036Z 2025-09-07T09:29:35.8462457Z (base) C:\actions-runner\_work\pytorch\pytorch>if "xla_tensor_test" == "verify_api_visibility" goto :eof 2025-09-07T09:29:35.8463316Z 2025-09-07T09:29:35.8463830Z (base) C:\actions-runner\_work\pytorch\pytorch>echo Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-09-07T09:29:35.8464737Z Running "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-09-07T09:29:35.8465632Z 2025-09-07T09:29:35.8466006Z (base) C:\actions-runner\_work\pytorch\pytorch>if "xla_tensor_test" == "c10_intrusive_ptr_benchmark" ( 2025-09-07T09:29:35.8466928Z call "C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build\torch\test\xla_tensor_test.exe" 2025-09-07T09:29:35.8467412Z goto :eof 2025-09-07T09:29:35.8467595Z ) 2025-09-07T09:29:35.8467692Z 2025-09-07T09:29:35.8468049Z (base) C:\actions-runner\_work\pytorch\pytorch>python test\run_test.py --cpp --verbose -i "cpp/xla_tensor_test" 2025-09-07T09:29:41.5492046Z Found test times from artifacts 2025-09-07T09:29:41.6254819Z Found test times from artifacts 2025-09-07T09:29:41.6278986Z Running all tests 2025-09-07T09:29:41.6284101Z Running parallel tests on 3 processes 2025-09-07T09:29:41.6284452Z Name: tests to run (est. time: 0.0min) 2025-09-07T09:29:41.6284716Z Serial tests (0): 2025-09-07T09:29:41.6284913Z Parallel tests (1): 2025-09-07T09:29:41.6285144Z cpp/xla_tensor_test 1/1 2025-09-07T09:29:41.6285380Z Name: excluded (est. time: 0.0min) 2025-09-07T09:29:41.6285627Z Serial tests (0): 2025-09-07T09:29:41.6285818Z Parallel tests (0): 2025-09-07T09:29:41.6287622Z Running cpp/xla_tensor_test 1/1 ... [2025-09-07 09:29:41.621574] 2025-09-07T09:29:41.6287997Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:29:41.6297289Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\xla_tensor_test.exe', '-m', 'serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-54242c3aa81ea783.xml', '-x', '--reruns=2'] ... [2025-09-07 09:29:41.621574] 2025-09-07T09:29:41.6299502Z Downloading https://ossci-metrics.s3.amazonaws.com/disabled-tests-condensed.json to C:\actions-runner\_work\pytorch\pytorch\test\.pytorch-disabled-tests.json 2025-09-07T09:29:43.8466242Z 2025-09-07T09:29:43.8467168Z cpp/xla_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.xla_tensor_test_1.1_3e6736ecea7385b4_.log 2025-09-07T09:29:43.8467959Z 2025-09-07T09:29:47.5527804Z Running cpp/xla_tensor_test 1/1 ... [2025-09-07 09:29:47.551467] 2025-09-07T09:29:47.5528243Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-09-07T09:29:47.5536890Z Executing ['pytest', 'C:\\actions-runner\\_work\\pytorch\\pytorch\\build\\win_tmp\\build\\torch\\test\\xla_tensor_test.exe', '-m', 'not serial', '-v', '-vv', '-rfEX', '-n', '3', '--junit-xml-reruns', 'test-reports\\python-pytest\\test\\run_test\\test\\run_test-535fad78f5737857.xml', '-x', '--reruns=2'] ... [2025-09-07 09:29:47.551467] 2025-09-07T09:29:50.1850917Z 2025-09-07T09:29:50.1851879Z cpp/xla_tensor_test 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp.xla_tensor_test_1.1_7d98e8429b38dc64_.log 2025-09-07T09:29:50.1852512Z 2025-09-07T09:29:50.8755844Z Running test batch 'tests to run' cost 9.25 seconds 2025-09-07T09:29:50.8762283Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-09-07T09:29:50.8762761Z Uploading artifacts took 0.00 seconds 2025-09-07T09:29:51.3658320Z 2025-09-07T09:29:51.3658959Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 ( 2025-09-07T09:29:51.3659427Z echo "xla_tensor_test" failed with exit code 0 2025-09-07T09:29:51.3659717Z goto fail 2025-09-07T09:29:51.3659898Z ) 2025-09-07T09:29:51.3659999Z 2025-09-07T09:29:51.3660196Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-09-07T09:29:51.3660608Z echo "xla_tensor_test" failed with exit code 0 2025-09-07T09:29:51.3660901Z goto fail 2025-09-07T09:29:51.3661059Z ) 2025-09-07T09:29:51.3661164Z 2025-09-07T09:29:51.3661314Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-09-07T09:29:51.3684369Z 2025-09-07T09:29:51.3684873Z (base) C:\actions-runner\_work\pytorch\pytorch>goto :eof 2025-09-07T09:29:51.3705865Z + [[ 0 == \1 ]] 2025-09-07T09:29:51.3706174Z + assert_git_not_dirty 2025-09-07T09:29:51.3706429Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-09-07T09:29:51.3706713Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-09-07T09:29:51.3823554Z ++ git status --porcelain 2025-09-07T09:29:51.3875372Z ++ grep -v '?? third_party' 2025-09-07T09:30:02.7665865Z ++ true 2025-09-07T09:30:02.7670894Z + git_status= 2025-09-07T09:30:02.7671176Z + [[ -n '' ]] 2025-09-07T09:30:02.7671378Z + echo 'TEST PASSED' 2025-09-07T09:30:02.7671599Z TEST PASSED 2025-09-07T09:30:02.8238316Z ##[group]Run cat test/**/*_toprint.log || true 2025-09-07T09:30:02.8238678Z cat test/**/*_toprint.log || true 2025-09-07T09:30:02.8259083Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T09:30:02.8259511Z env: 2025-09-07T09:30:02.8259692Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:02.8260062Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:02.8260560Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:02.8261035Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:02.8261431Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:02.8261727Z ##[endgroup] 2025-09-07T09:30:02.9081989Z cat: 'test/**/*_toprint.log': No such file or directory 2025-09-07T09:30:02.9182509Z ##[group]Run kill "$MONITOR_SCRIPT_PID" 2025-09-07T09:30:02.9182834Z kill "$MONITOR_SCRIPT_PID" 2025-09-07T09:30:02.9201946Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T09:30:02.9202383Z env: 2025-09-07T09:30:02.9202574Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:02.9202948Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:02.9203460Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:02.9203935Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:02.9204332Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:02.9204632Z MONITOR_SCRIPT_PID: 1827 2025-09-07T09:30:02.9216003Z ##[endgroup] 2025-09-07T09:30:02.9593988Z Prepare all required actions 2025-09-07T09:30:02.9594478Z Getting action download info 2025-09-07T09:30:03.0993769Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-09-07T09:30:03.5877526Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-09-07T09:30:04.2107208Z ##[group]Run ./.github/actions/upload-test-artifacts 2025-09-07T09:30:04.2107538Z with: 2025-09-07T09:30:04.2107878Z file-suffix: test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897 2025-09-07T09:30:04.2108321Z s3-bucket: gha-artifacts 2025-09-07T09:30:04.2108550Z env: 2025-09-07T09:30:04.2108720Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:04.2109087Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:04.2109587Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:04.2110090Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:04.2110476Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:04.2110762Z ##[endgroup] 2025-09-07T09:30:04.2201366Z ##[group]Run # -ir => recursive include all files in pattern 2025-09-07T09:30:04.2201776Z # -ir => recursive include all files in pattern 2025-09-07T09:30:04.2202255Z 7z a "test-jsons-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.json' 2025-09-07T09:30:04.2218573Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T09:30:04.2219022Z env: 2025-09-07T09:30:04.2219206Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:04.2219585Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:04.2220088Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:04.2220552Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:04.2220951Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:04.2221399Z FILE_SUFFIX: test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897 2025-09-07T09:30:04.2221895Z ##[endgroup] 2025-09-07T09:30:04.5838968Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T09:30:04.5911463Z Finished 2025-09-07T09:30:04.7616135Z 2025-09-07T09:30:04.7616701Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-09-07T09:30:04.7617006Z 2025-09-07T09:30:04.7617103Z Scanning the drive: 2025-09-07T09:30:04.7617320Z 109 files, 28815 bytes (29 KiB) 2025-09-07T09:30:04.7617477Z 2025-09-07T09:30:04.7617817Z Creating archive: test-jsons-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:04.7618256Z 2025-09-07T09:30:04.7618392Z Add new data to archive: 109 files, 28815 bytes (29 KiB) 2025-09-07T09:30:04.7618635Z 2025-09-07T09:30:04.7618639Z 2025-09-07T09:30:04.7618730Z Files read from disk: 109 2025-09-07T09:30:04.7618988Z Archive size: 35871 bytes (36 KiB) 2025-09-07T09:30:04.7619230Z Everything is Ok 2025-09-07T09:30:04.7906856Z ##[group]Run # -ir => recursive include all files in pattern 2025-09-07T09:30:04.7907260Z # -ir => recursive include all files in pattern 2025-09-07T09:30:04.7907822Z 7z a "test-reports-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.xml' -ir'!test\test-reports\*.csv' 2025-09-07T09:30:04.7924672Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T09:30:04.7925110Z env: 2025-09-07T09:30:04.7925298Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:04.7925659Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:04.7926173Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:04.7926644Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:04.7927026Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:04.7929219Z FILE_SUFFIX: test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897 2025-09-07T09:30:04.7929702Z ##[endgroup] 2025-09-07T09:30:05.1378617Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T09:30:05.1426216Z Finished 2025-09-07T09:30:05.3260316Z 2025-09-07T09:30:05.3260809Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-09-07T09:30:05.3261147Z 2025-09-07T09:30:05.3261233Z Scanning the drive: 2025-09-07T09:30:05.3261443Z 334 files, 11861398 bytes (12 MiB) 2025-09-07T09:30:05.3261623Z 2025-09-07T09:30:05.3261970Z Creating archive: test-reports-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:05.3262425Z 2025-09-07T09:30:05.3262575Z Add new data to archive: 334 files, 11861398 bytes (12 MiB) 2025-09-07T09:30:05.3262814Z 2025-09-07T09:30:05.3262820Z 2025-09-07T09:30:05.3262907Z Files read from disk: 334 2025-09-07T09:30:05.3263148Z Archive size: 755298 bytes (738 KiB) 2025-09-07T09:30:05.3263407Z Everything is Ok 2025-09-07T09:30:05.3536935Z ##[group]Run # -ir => recursive include all files in pattern 2025-09-07T09:30:05.3537370Z # -ir => recursive include all files in pattern 2025-09-07T09:30:05.3537835Z 7z a "logs-$Env:FILE_SUFFIX.zip" 'usage_log.txt' -ir'!test\test-reports\*.log' 2025-09-07T09:30:05.3555238Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T09:30:05.3555693Z env: 2025-09-07T09:30:05.3555875Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:05.3556341Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:05.3556847Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:05.3557320Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:05.3557777Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:05.3558312Z FILE_SUFFIX: test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897 2025-09-07T09:30:05.3558766Z ##[endgroup] 2025-09-07T09:30:05.7008882Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T09:30:05.7071979Z Finished 2025-09-07T09:30:06.0135900Z 2025-09-07T09:30:06.0136401Z 7-Zip 25.01 (x64) : Copyright (c) 1999-2025 Igor Pavlov : 2025-08-03 2025-09-07T09:30:06.0136734Z 2025-09-07T09:30:06.0136819Z Scanning the drive: 2025-09-07T09:30:06.0137033Z 484 files, 17011991 bytes (17 MiB) 2025-09-07T09:30:06.0137200Z 2025-09-07T09:30:06.0137551Z Creating archive: logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:06.0137960Z 2025-09-07T09:30:06.0138098Z Add new data to archive: 484 files, 17011991 bytes (17 MiB) 2025-09-07T09:30:06.0138339Z 2025-09-07T09:30:06.0138352Z 2025-09-07T09:30:06.0138440Z Files read from disk: 484 2025-09-07T09:30:06.0138674Z Archive size: 1368542 bytes (1337 KiB) 2025-09-07T09:30:06.0138935Z Everything is Ok 2025-09-07T09:30:06.0430065Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-09-07T09:30:06.0430377Z with: 2025-09-07T09:30:06.0430565Z s3-bucket: gha-artifacts 2025-09-07T09:30:06.0430842Z s3-prefix: pytorch/pytorch/17524754564/1/artifact 2025-09-07T09:30:06.0431142Z retention-days: 14 2025-09-07T09:30:06.0431361Z if-no-files-found: warn 2025-09-07T09:30:06.0431685Z path: test-jsons-*.zip 2025-09-07T09:30:06.0431954Z name: artifact 2025-09-07T09:30:06.0432151Z region: us-east-1 2025-09-07T09:30:06.0432370Z env: 2025-09-07T09:30:06.0432562Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:06.0432919Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:06.0433437Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:06.0433894Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:06.0434274Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:06.0434553Z ##[endgroup] 2025-09-07T09:30:06.4412159Z NOTE: s3-prefix specified, ignoring name parameter 2025-09-07T09:30:06.4412618Z With the provided path, there will be 1 file uploaded 2025-09-07T09:30:06.4413038Z Uploading to s3 prefix: pytorch/pytorch/17524754564/1/artifact 2025-09-07T09:30:06.4426609Z Starting upload of test-jsons-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:06.6227220Z Finished upload of test-jsons-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:06.6469945Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-09-07T09:30:06.6470245Z with: 2025-09-07T09:30:06.6470425Z s3-bucket: gha-artifacts 2025-09-07T09:30:06.6470717Z s3-prefix: pytorch/pytorch/17524754564/1/artifact 2025-09-07T09:30:06.6471025Z retention-days: 14 2025-09-07T09:30:06.6471243Z if-no-files-found: error 2025-09-07T09:30:06.6471482Z path: test-reports-*.zip 2025-09-07T09:30:06.6471698Z name: artifact 2025-09-07T09:30:06.6471892Z region: us-east-1 2025-09-07T09:30:06.6472078Z env: 2025-09-07T09:30:06.6472270Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:06.6472629Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:06.6473148Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:06.6473668Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:06.6474122Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:06.6474410Z ##[endgroup] 2025-09-07T09:30:07.0365872Z NOTE: s3-prefix specified, ignoring name parameter 2025-09-07T09:30:07.0366301Z With the provided path, there will be 1 file uploaded 2025-09-07T09:30:07.0366763Z Uploading to s3 prefix: pytorch/pytorch/17524754564/1/artifact 2025-09-07T09:30:07.0379607Z Starting upload of test-reports-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:07.2587186Z Finished upload of test-reports-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:07.2838254Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-09-07T09:30:07.2838701Z with: 2025-09-07T09:30:07.2838947Z s3-bucket: gha-artifacts 2025-09-07T09:30:07.2839239Z s3-prefix: pytorch/pytorch/17524754564/1/artifact 2025-09-07T09:30:07.2839544Z retention-days: 14 2025-09-07T09:30:07.2839772Z if-no-files-found: ignore 2025-09-07T09:30:07.2840017Z path: logs-*.zip 2025-09-07T09:30:07.2840203Z name: artifact 2025-09-07T09:30:07.2840390Z region: us-east-1 2025-09-07T09:30:07.2840571Z env: 2025-09-07T09:30:07.2840745Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:07.2841100Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:07.2841614Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:07.2842075Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:07.2842466Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:07.2842748Z ##[endgroup] 2025-09-07T09:30:07.6714029Z NOTE: s3-prefix specified, ignoring name parameter 2025-09-07T09:30:07.6714512Z With the provided path, there will be 1 file uploaded 2025-09-07T09:30:07.6714992Z Uploading to s3 prefix: pytorch/pytorch/17524754564/1/artifact 2025-09-07T09:30:07.6729111Z Starting upload of logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:07.9171614Z Finished upload of logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:07.9454867Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-09-07T09:30:07.9455163Z with: 2025-09-07T09:30:07.9455352Z s3-bucket: gha-artifacts 2025-09-07T09:30:07.9455629Z s3-prefix: pytorch/pytorch/17524754564/1/artifact 2025-09-07T09:30:07.9455937Z retention-days: 14 2025-09-07T09:30:07.9456150Z if-no-files-found: ignore 2025-09-07T09:30:07.9456385Z path: debug-*.zip 2025-09-07T09:30:07.9456572Z name: artifact 2025-09-07T09:30:07.9456765Z region: us-east-1 2025-09-07T09:30:07.9456945Z env: 2025-09-07T09:30:07.9457277Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:07.9457655Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:07.9458169Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:07.9458637Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:07.9459021Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:07.9459297Z ##[endgroup] 2025-09-07T09:30:08.3277324Z No files were found with the provided path: debug-*.zip. No artifacts will be uploaded. 2025-09-07T09:30:08.3522751Z Prepare all required actions 2025-09-07T09:30:08.3523171Z Getting action download info 2025-09-07T09:30:08.5054644Z ##[group]Run ./.github/actions/upload-utilization-stats 2025-09-07T09:30:08.5054987Z with: 2025-09-07T09:30:08.5055158Z job_id: 49774387897 2025-09-07T09:30:08.5055541Z job_name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T09:30:08.5055978Z workflow_name: trunk 2025-09-07T09:30:08.5056183Z workflow_run_id: 17524754564 2025-09-07T09:30:08.5056432Z workflow_attempt: 1 2025-09-07T09:30:08.5056619Z env: 2025-09-07T09:30:08.5056802Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:08.5057156Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:08.5057666Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:08.5058128Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:08.5058557Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:08.5058834Z ##[endgroup] 2025-09-07T09:30:08.5141266Z ##[group]Run echo "workflow_id: 17524754564" 2025-09-07T09:30:08.5141582Z echo "workflow_id: 17524754564" 2025-09-07T09:30:08.5141863Z echo "workflow_attempt: 1" 2025-09-07T09:30:08.5142140Z echo "workflow_Name: trunk" 2025-09-07T09:30:08.5142393Z echo "job_id: 49774387897" 2025-09-07T09:30:08.5142858Z echo "job_name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral)" 2025-09-07T09:30:08.5143427Z echo "artifact_prefix: " 2025-09-07T09:30:08.5143695Z python3 --version 2025-09-07T09:30:08.5163669Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T09:30:08.5164163Z env: 2025-09-07T09:30:08.5164345Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:08.5164749Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:08.5165260Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:08.5165721Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:08.5166098Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:08.5166383Z ##[endgroup] 2025-09-07T09:30:08.5376483Z workflow_id: 17524754564 2025-09-07T09:30:08.5376762Z workflow_attempt: 1 2025-09-07T09:30:08.5376978Z workflow_Name: trunk 2025-09-07T09:30:08.5377180Z job_id: 49774387897 2025-09-07T09:30:08.5377567Z job_name: win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral) 2025-09-07T09:30:08.5377997Z artifact_prefix: 2025-09-07T09:30:08.5532290Z Python 3.9.19 2025-09-07T09:30:08.5656316Z ##[group]Run nick-fields/retry@v3.0.0 2025-09-07T09:30:08.5656676Z with: 2025-09-07T09:30:08.5656850Z shell: bash 2025-09-07T09:30:08.5657036Z timeout_minutes: 5 2025-09-07T09:30:08.5657239Z max_attempts: 5 2025-09-07T09:30:08.5657443Z retry_wait_seconds: 30 2025-09-07T09:30:08.5657935Z 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-09-07T09:30:08.5658477Z polling_interval_seconds: 1 2025-09-07T09:30:08.5658709Z warning_on_retry: true 2025-09-07T09:30:08.5658936Z continue_on_error: false 2025-09-07T09:30:08.5659156Z env: 2025-09-07T09:30:08.5659334Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:08.5659688Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:08.5660196Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:08.5660664Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:08.5661048Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:08.5661338Z ##[endgroup] 2025-09-07T09:30:09.5477368Z Collecting python-dateutil==2.8.2 2025-09-07T09:30:09.7757045Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl.metadata (8.2 kB) 2025-09-07T09:30:10.5786570Z Collecting boto3==1.35.42 2025-09-07T09:30:10.5884139Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-09-07T09:30:10.8244126Z Collecting pandas==2.1.3 2025-09-07T09:30:10.8387853Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl.metadata (18 kB) 2025-09-07T09:30:10.8680002Z Requirement already satisfied: dataclasses_json==0.6.7 in c:\jenkins\miniconda3\lib\site-packages (0.6.7) 2025-09-07T09:30:10.8701491Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil==2.8.2) (1.17.0) 2025-09-07T09:30:11.5898261Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-09-07T09:30:11.5994944Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-09-07T09:30:11.6172331Z 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-09-07T09:30:11.6533809Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-09-07T09:30:11.6628604Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-09-07T09:30:12.1009527Z Collecting numpy<2,>=1.22.4 (from pandas==2.1.3) 2025-09-07T09:30:12.1123090Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl.metadata (61 kB) 2025-09-07T09:30:12.1394879Z ---------------------------------------- 61.0/61.0 kB 1.6 MB/s eta 0:00:00 2025-09-07T09:30:12.2184617Z Collecting pytz>=2020.1 (from pandas==2.1.3) 2025-09-07T09:30:12.2288528Z Downloading pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB) 2025-09-07T09:30:12.2651977Z Collecting tzdata>=2022.1 (from pandas==2.1.3) 2025-09-07T09:30:12.2743180Z Downloading tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB) 2025-09-07T09:30:12.2895483Z 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-09-07T09:30:12.2903489Z 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-09-07T09:30:12.3057634Z 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-09-07T09:30:12.3186653Z 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-09-07T09:30:12.5433987Z 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-09-07T09:30:12.5441850Z 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-09-07T09:30:12.5838678Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) 2025-09-07T09:30:12.6223840Z ---------------------------------------- 247.7/247.7 kB 7.7 MB/s eta 0:00:00 2025-09-07T09:30:12.6315678Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-09-07T09:30:12.6532473Z ---------------------------------------- 139.2/139.2 kB 8.1 MB/s eta 0:00:00 2025-09-07T09:30:12.6642077Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl (10.8 MB) 2025-09-07T09:30:12.9620295Z ---------------------------------------- 10.8/10.8 MB 40.9 MB/s eta 0:00:00 2025-09-07T09:30:12.9756287Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-09-07T09:30:13.1132795Z ---------------------------------------- 13.3/13.3 MB 93.8 MB/s eta 0:00:00 2025-09-07T09:30:13.1239769Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl (15.8 MB) 2025-09-07T09:30:13.2509935Z ---------------------------------------- 15.8/15.8 MB 108.8 MB/s eta 0:00:00 2025-09-07T09:30:13.2605604Z Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB) 2025-09-07T09:30:13.2711686Z ---------------------------------------- 509.2/509.2 kB ? eta 0:00:00 2025-09-07T09:30:13.2806340Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-09-07T09:30:13.2879928Z ---------------------------------------- 83.2/83.2 kB 4.6 MB/s eta 0:00:00 2025-09-07T09:30:13.2975119Z Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) 2025-09-07T09:30:13.3082581Z --------------------------------------- 347.8/347.8 kB 22.5 MB/s eta 0:00:00 2025-09-07T09:30:14.5882332Z Installing collected packages: pytz, tzdata, python-dateutil, numpy, pandas, botocore, s3transfer, boto3 2025-09-07T09:30:15.3250456Z Attempting uninstall: python-dateutil 2025-09-07T09:30:15.3263211Z Found existing installation: python-dateutil 2.9.0.post0 2025-09-07T09:30:15.3374653Z Uninstalling python-dateutil-2.9.0.post0: 2025-09-07T09:30:15.3398523Z Successfully uninstalled python-dateutil-2.9.0.post0 2025-09-07T09:30:15.4276101Z Attempting uninstall: numpy 2025-09-07T09:30:15.4285480Z Found existing installation: numpy 1.22.3 2025-09-07T09:30:15.5879347Z Uninstalling numpy-1.22.3: 2025-09-07T09:30:15.6150385Z Successfully uninstalled numpy-1.22.3 2025-09-07T09:30:18.4820596Z WARNING: The script f2py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-09-07T09:30:18.4821384Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-09-07T09:30:24.9975483Z Attempting uninstall: botocore 2025-09-07T09:30:24.9983413Z Found existing installation: botocore 1.37.10 2025-09-07T09:30:25.1925056Z Uninstalling botocore-1.37.10: 2025-09-07T09:30:25.2789669Z Successfully uninstalled botocore-1.37.10 2025-09-07T09:30:28.7278446Z Attempting uninstall: s3transfer 2025-09-07T09:30:28.7290369Z Found existing installation: s3transfer 0.11.2 2025-09-07T09:30:28.7364995Z Uninstalling s3transfer-0.11.2: 2025-09-07T09:30:28.7388036Z Successfully uninstalled s3transfer-0.11.2 2025-09-07T09:30:28.8226842Z Attempting uninstall: boto3 2025-09-07T09:30:28.8234698Z Found existing installation: boto3 1.37.10 2025-09-07T09:30:28.8398765Z Uninstalling boto3-1.37.10: 2025-09-07T09:30:28.8491658Z Successfully uninstalled boto3-1.37.10 2025-09-07T09:30:29.0510127Z 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-09-07T09:30:29.0511073Z scipy 1.6.3 requires numpy<1.23.0,>=1.16.5, but you have numpy 1.26.4 which is incompatible. 2025-09-07T09:30:29.0511877Z 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-09-07T09:30:29.8030719Z Command completed after 1 attempt(s). 2025-09-07T09:30:29.8191657Z ##[group]Run python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-09-07T09:30:29.8192377Z python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-09-07T09:30:29.8192842Z  --workflow-run-id "17524754564" \ 2025-09-07T09:30:29.8193149Z  --workflow-name "trunk" \ 2025-09-07T09:30:29.8193436Z  --workflow-run-attempt "1" \ 2025-09-07T09:30:29.8193715Z  --job-id "49774387897" \ 2025-09-07T09:30:29.8194172Z  --job-name "win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral)" \ 2025-09-07T09:30:29.8194648Z  --local-path "" \ 2025-09-07T09:30:29.8194899Z  --artifact-prefix "" 2025-09-07T09:30:29.8214829Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T09:30:29.8215275Z env: 2025-09-07T09:30:29.8215458Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:29.8215835Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:29.8216337Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:29.8216810Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:29.8217195Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:29.8217612Z ##[endgroup] 2025-09-07T09:30:34.0936659Z repo: pytorch/pytorch 2025-09-07T09:30:34.0937063Z Search for test log in s3 bucket: ossci-utilization 2025-09-07T09:30:34.0937665Z Downloading logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:34.0938505Z extracting usage_log.txt from zip file logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip 2025-09-07T09:30:34.0939223Z Failed to parse JSON line: Expecting value: line 1 column 1 (char 0) 2025-09-07T09:30:34.0939685Z Converted Log Model: UtilizationMetadata: 2025-09-07T09:30:34.0941084Z UtilizationMetadata(level='metadata', workflow_id='17524754564', job_id='49774387897', workflow_name='trunk', job_name='win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral)', usage_collect_interval=1.0, data_model_version=1.5, start_at=1757228093, gpu_count=0, cpu_count=16, gpu_type=None, error=None) 2025-09-07T09:30:34.0942567Z [Db Segments] detected pytest cmd: 112, generated segments: 112 2025-09-07T09:30:34.0942967Z [db model] Peek db timeseries 2025-09-07T09:30:34.0943758Z :{ 2025-09-07T09:30:34.0943972Z "created_at": 1757237433, 2025-09-07T09:30:34.0944209Z "type": "utilization", 2025-09-07T09:30:34.0944462Z "tags": [ 2025-09-07T09:30:34.0944640Z "record" 2025-09-07T09:30:34.0944854Z ], 2025-09-07T09:30:34.0945030Z "time_stamp": 1757228093, 2025-09-07T09:30:34.0945290Z "repo": "pytorch/pytorch", 2025-09-07T09:30:34.0945556Z "workflow_id": 17524754564, 2025-09-07T09:30:34.0945992Z "run_attempt": 1, 2025-09-07T09:30:34.0946198Z "job_id": 49774387897, 2025-09-07T09:30:34.0946466Z "workflow_name": "trunk", 2025-09-07T09:30:34.0946939Z "job_name": "win-vs2022-cpu-py3 / test (default, 1, 3, lf.windows.4xlarge.nonephemeral)", 2025-09-07T09:30:34.0947644Z "json_data": "{\"cpu\": {\"avg\": 0.0, \"max\": 0.0, \"raw\": [0.0]}, \"memory\": {\"avg\": 12.2, \"max\": 12.2, \"raw\": [12.2]}, \"gpu_usage\": null}" 2025-09-07T09:30:34.0948128Z } 2025-09-07T09:30:34.0948622Z Writing 1 documents to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/17524754564/1/49774387897/metadata 2025-09-07T09:30:34.0949552Z Done! Finish writing document to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/17524754564/1/49774387897/metadata 2025-09-07T09:30:34.0950518Z Writing 1851 documents to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/17524754564/1/49774387897/time_series 2025-09-07T09:30:34.0951515Z Done! Finish writing document to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/17524754564/1/49774387897/time_series 2025-09-07T09:30:34.2027084Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-09-07T09:30:34.2027479Z python3 .github/scripts/parse_ref.py 2025-09-07T09:30:34.2047044Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T09:30:34.2047473Z env: 2025-09-07T09:30:34.2047657Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:34.2048030Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:34.2048550Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:34.2049011Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:34.2049419Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:34.2049703Z ##[endgroup] 2025-09-07T09:30:34.2655632Z Setting output branch=main 2025-09-07T09:30:34.2796699Z ##[group]Run # This step removes PyTorch installed by the test to give a clean slate 2025-09-07T09:30:34.2797311Z # This step removes PyTorch installed by the test to give a clean slate 2025-09-07T09:30:34.2797722Z # to the next job 2025-09-07T09:30:34.2797991Z python3 -mpip uninstall -y torch 2025-09-07T09:30:34.2817466Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-09-07T09:30:34.2817969Z env: 2025-09-07T09:30:34.2818188Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:34.2818570Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:34.2819083Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:34.2819549Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:34.2819937Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:34.2820227Z ##[endgroup] 2025-09-07T09:30:34.7860066Z Found existing installation: torch 2.9.0a0+git93fb23d 2025-09-07T09:30:35.9798394Z Uninstalling torch-2.9.0a0+git93fb23d: 2025-09-07T09:30:36.4202274Z Successfully uninstalled torch-2.9.0a0+git93fb23d 2025-09-07T09:30:38.0899714Z Prepare all required actions 2025-09-07T09:30:38.0900099Z Getting action download info 2025-09-07T09:30:38.2647091Z ##[group]Run ./.github/actions/teardown-win 2025-09-07T09:30:38.2647393Z with: 2025-09-07T09:30:38.2647548Z env: 2025-09-07T09:30:38.2647721Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:38.2648072Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:38.2648581Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:38.2649037Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:38.2649423Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:38.2649698Z ##[endgroup] 2025-09-07T09:30:38.2722353Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-09-07T09:30:38.2722749Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-09-07T09:30:38.2739059Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T09:30:38.2739503Z env: 2025-09-07T09:30:38.2739693Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:38.2740049Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:38.2740562Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:38.2741021Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:38.2741413Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:38.2741691Z ##[endgroup] 2025-09-07T09:30:38.6556348Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T09:30:38.6625397Z Finished 2025-09-07T09:30:38.7787406Z Holding runner until all ssh sessions have logged out 2025-09-07T09:30:38.8036245Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-09-07T09:30:38.8036679Z .github\scripts\kill_active_ssh_sessions.ps1 2025-09-07T09:30:38.8053529Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T09:30:38.8053982Z env: 2025-09-07T09:30:38.8054161Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:38.8054620Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:38.8055137Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:38.8055616Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:38.8056020Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:38.8056302Z ##[endgroup] 2025-09-07T09:30:39.1460325Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T09:30:39.1533574Z Finished 2025-09-07T09:30:39.1888735Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-09-07T09:30:39.1889165Z env: 2025-09-07T09:30:39.1889354Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:39.1889737Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:39.1890252Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:39.1890717Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:39.1891119Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:39.1891392Z ##[endgroup] 2025-09-07T09:30:39.1960486Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-09-07T09:30:39.1961351Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-09-07T09:30:39.1962049Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-09-07T09:30:39.1962508Z # handle tool 2025-09-07T09:30:39.1962834Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-09-07T09:30:39.1963253Z Foreach ($process In $processes) { 2025-09-07T09:30:39.1963526Z  Try { 2025-09-07T09:30:39.1965277Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-09-07T09:30:39.1966015Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-09-07T09:30:39.1966400Z  } 2025-09-07T09:30:39.1966583Z  Catch { 2025-09-07T09:30:39.1966876Z  Write-Output "No leftover $process process, continuing" 2025-09-07T09:30:39.1967299Z  Write-Output $_ 2025-09-07T09:30:39.1967527Z  } 2025-09-07T09:30:39.1967708Z } 2025-09-07T09:30:39.1967929Z  2025-09-07T09:30:39.1968383Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-09-07T09:30:39.1968924Z # for hung processes 2025-09-07T09:30:39.1969180Z Foreach ($process In $processes) { 2025-09-07T09:30:39.1969553Z  Try { 2025-09-07T09:30:39.1969938Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-09-07T09:30:39.1970389Z  } 2025-09-07T09:30:39.1970571Z  Catch { 2025-09-07T09:30:39.1970780Z  Write-Output $_ 2025-09-07T09:30:39.1971013Z  } 2025-09-07T09:30:39.1971177Z } 2025-09-07T09:30:39.1971348Z  2025-09-07T09:30:39.1971511Z Try { 2025-09-07T09:30:39.1971737Z  # Print all the processes for debugging 2025-09-07T09:30:39.1972188Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-09-07T09:30:39.1972598Z } 2025-09-07T09:30:39.1972769Z Catch { 2025-09-07T09:30:39.1973153Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-09-07T09:30:39.1973669Z  Write-Output $_ 2025-09-07T09:30:39.1973930Z } 2025-09-07T09:30:39.1990147Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T09:30:39.1990693Z env: 2025-09-07T09:30:39.1990899Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:39.1991293Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:39.1991890Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:39.1992362Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:39.1992750Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:39.1993035Z ##[endgroup] 2025-09-07T09:30:39.5787772Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T09:30:39.5859561Z Finished 2025-09-07T09:30:39.6020765Z No leftover python process, continuing 2025-09-07T09:30:39.6502237Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-09-07T09:30:39.6502940Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:9 char:5 2025-09-07T09:30:39.6503506Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T09:30:39.6503909Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.6504390Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-09-07T09:30:39.6505242Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T09:30:39.6505837Z 2025-09-07T09:30:39.6517367Z No leftover ninja process, continuing 2025-09-07T09:30:39.6528769Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-09-07T09:30:39.6529424Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:9 char:5 2025-09-07T09:30:39.6529971Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T09:30:39.6530372Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.6531661Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-09-07T09:30:39.6532508Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T09:30:39.6533104Z 2025-09-07T09:30:39.6543137Z No leftover cl process, continuing 2025-09-07T09:30:39.6552613Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-09-07T09:30:39.6553267Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:9 char:5 2025-09-07T09:30:39.6553814Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T09:30:39.6554203Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.6554664Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-09-07T09:30:39.6555490Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T09:30:39.6556168Z 2025-09-07T09:30:39.6564391Z No leftover nvcc process, continuing 2025-09-07T09:30:39.6573863Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-09-07T09:30:39.6574526Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:9 char:5 2025-09-07T09:30:39.6575123Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T09:30:39.6575523Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.6575996Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-09-07T09:30:39.6576823Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T09:30:39.6577413Z 2025-09-07T09:30:39.6585521Z No leftover cmd process, continuing 2025-09-07T09:30:39.6594996Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-09-07T09:30:39.6595651Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:9 char:5 2025-09-07T09:30:39.6596182Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T09:30:39.6596674Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.6597130Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-09-07T09:30:39.6597966Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T09:30:39.6598555Z 2025-09-07T09:30:39.6606172Z No leftover sccache process, continuing 2025-09-07T09:30:39.6615572Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-09-07T09:30:39.6616228Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:9 char:5 2025-09-07T09:30:39.6616772Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T09:30:39.6617174Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.6617652Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-09-07T09:30:39.6618506Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T09:30:39.6619089Z 2025-09-07T09:30:39.6629649Z No leftover git process, continuing 2025-09-07T09:30:39.6643045Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-09-07T09:30:39.6643735Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:9 char:5 2025-09-07T09:30:39.6644307Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-09-07T09:30:39.6644702Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.6645180Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-09-07T09:30:39.6646107Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-09-07T09:30:39.6646706Z 2025-09-07T09:30:39.7072544Z You cannot call a method on a null-valued expression. 2025-09-07T09:30:39.7073066Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:21 char:5 2025-09-07T09:30:39.7073632Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T09:30:39.7074051Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.7074451Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T09:30:39.7074851Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T09:30:39.7075140Z 2025-09-07T09:30:39.7202420Z You cannot call a method on a null-valued expression. 2025-09-07T09:30:39.7202904Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:21 char:5 2025-09-07T09:30:39.7203711Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T09:30:39.7204217Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.7204635Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T09:30:39.7205049Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T09:30:39.7205340Z 2025-09-07T09:30:39.7371616Z You cannot call a method on a null-valued expression. 2025-09-07T09:30:39.7372147Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:21 char:5 2025-09-07T09:30:39.7372705Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T09:30:39.7373144Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.7373539Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T09:30:39.7373962Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T09:30:39.7374248Z 2025-09-07T09:30:39.7495275Z You cannot call a method on a null-valued expression. 2025-09-07T09:30:39.7495778Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:21 char:5 2025-09-07T09:30:39.7496459Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T09:30:39.7496894Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.7497287Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T09:30:39.7497693Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T09:30:39.7497969Z 2025-09-07T09:30:39.7618631Z You cannot call a method on a null-valued expression. 2025-09-07T09:30:39.7619152Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:21 char:5 2025-09-07T09:30:39.7619735Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T09:30:39.7620179Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.7620603Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T09:30:39.7620997Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T09:30:39.7621293Z 2025-09-07T09:30:39.7745650Z You cannot call a method on a null-valued expression. 2025-09-07T09:30:39.7746174Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:21 char:5 2025-09-07T09:30:39.7746767Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T09:30:39.7747181Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.7747576Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T09:30:39.7747976Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T09:30:39.7748251Z 2025-09-07T09:30:39.7869848Z You cannot call a method on a null-valued expression. 2025-09-07T09:30:39.7870355Z At C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1:21 char:5 2025-09-07T09:30:39.7871074Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-09-07T09:30:39.7871502Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T09:30:39.7871915Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-09-07T09:30:39.7872332Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-09-07T09:30:39.7872617Z 2025-09-07T09:30:39.8976624Z Caption CommandLine ProcessId 2025-09-07T09:30:39.8977233Z 2025-09-07T09:30:39.8977567Z System Idle Process 0 2025-09-07T09:30:39.8977980Z 2025-09-07T09:30:39.8978627Z System 4 2025-09-07T09:30:39.8978988Z 2025-09-07T09:30:39.8979735Z Registry 168 2025-09-07T09:30:39.8980181Z 2025-09-07T09:30:39.8980825Z smss.exe 408 2025-09-07T09:30:39.8981187Z 2025-09-07T09:30:39.8981941Z csrss.exe 528 2025-09-07T09:30:39.8982307Z 2025-09-07T09:30:39.8983041Z csrss.exe 604 2025-09-07T09:30:39.8983407Z 2025-09-07T09:30:39.8984783Z wininit.exe 628 2025-09-07T09:30:39.8985175Z 2025-09-07T09:30:39.8985510Z winlogon.exe winlogon.exe 676 2025-09-07T09:30:39.8985988Z 2025-09-07T09:30:39.8986363Z services.exe 748 2025-09-07T09:30:39.8986741Z 2025-09-07T09:30:39.8987667Z lsass.exe C:\Windows\system32\lsass.exe 768 2025-09-07T09:30:39.8988133Z 2025-09-07T09:30:39.8988786Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 884 2025-09-07T09:30:39.8989411Z 2025-09-07T09:30:39.8989841Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 908 2025-09-07T09:30:39.8990380Z 2025-09-07T09:30:39.8990823Z fontdrvhost.exe "fontdrvhost.exe" 932 2025-09-07T09:30:39.8991281Z 2025-09-07T09:30:39.8992073Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-09-07T09:30:39.8992535Z 2025-09-07T09:30:39.8993107Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 144 2025-09-07T09:30:39.8993620Z 2025-09-07T09:30:39.8994379Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 472 2025-09-07T09:30:39.8994985Z 2025-09-07T09:30:39.8995266Z dwm.exe "dwm.exe" 832 2025-09-07T09:30:39.8995643Z 2025-09-07T09:30:39.8996676Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 1028 2025-09-07T09:30:39.8997295Z 2025-09-07T09:30:39.8997866Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1116 2025-09-07T09:30:39.8998542Z 2025-09-07T09:30:39.8999105Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1252 2025-09-07T09:30:39.8999776Z 2025-09-07T09:30:39.9000226Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1344 2025-09-07T09:30:39.9000782Z 2025-09-07T09:30:39.9001487Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1372 2025-09-07T09:30:39.9002141Z 2025-09-07T09:30:39.9002581Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1396 2025-09-07T09:30:39.9003125Z 2025-09-07T09:30:39.9003606Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1444 2025-09-07T09:30:39.9004216Z 2025-09-07T09:30:39.9005976Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1476 2025-09-07T09:30:39.9007811Z 2025-09-07T09:30:39.9008283Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1496 2025-09-07T09:30:39.9009211Z 2025-09-07T09:30:39.9009705Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1564 2025-09-07T09:30:39.9010275Z 2025-09-07T09:30:39.9010874Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1628 2025-09-07T09:30:39.9011556Z 2025-09-07T09:30:39.9012016Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1728 2025-09-07T09:30:39.9012561Z 2025-09-07T09:30:39.9013080Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1736 2025-09-07T09:30:39.9013625Z 2025-09-07T09:30:39.9014113Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1744 2025-09-07T09:30:39.9014926Z 2025-09-07T09:30:39.9015366Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1848 2025-09-07T09:30:39.9015903Z 2025-09-07T09:30:39.9016388Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1884 2025-09-07T09:30:39.9016980Z 2025-09-07T09:30:39.9017513Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1892 2025-09-07T09:30:39.9018186Z 2025-09-07T09:30:39.9018678Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1968 2025-09-07T09:30:39.9019272Z 2025-09-07T09:30:39.9019757Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2032 2025-09-07T09:30:39.9020344Z 2025-09-07T09:30:39.9020866Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1368 2025-09-07T09:30:39.9021858Z 2025-09-07T09:30:39.9022483Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2072 2025-09-07T09:30:39.9023196Z 2025-09-07T09:30:39.9023787Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2092 2025-09-07T09:30:39.9024496Z 2025-09-07T09:30:39.9024969Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2272 2025-09-07T09:30:39.9025533Z 2025-09-07T09:30:39.9026072Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2296 2025-09-07T09:30:39.9026691Z 2025-09-07T09:30:39.9027203Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2316 2025-09-07T09:30:39.9027765Z 2025-09-07T09:30:39.9028234Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2408 2025-09-07T09:30:39.9028790Z 2025-09-07T09:30:39.9029167Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2652 2025-09-07T09:30:39.9029646Z 2025-09-07T09:30:39.9030522Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2740 2025-09-07T09:30:39.9031128Z 2025-09-07T09:30:39.9031582Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2748 2025-09-07T09:30:39.9032145Z 2025-09-07T09:30:39.9032614Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2756 2025-09-07T09:30:39.9033223Z 2025-09-07T09:30:39.9033774Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2764 2025-09-07T09:30:39.9034422Z 2025-09-07T09:30:39.9034981Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2780 2025-09-07T09:30:39.9035668Z 2025-09-07T09:30:39.9036134Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2788 2025-09-07T09:30:39.9036700Z 2025-09-07T09:30:39.9037179Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2796 2025-09-07T09:30:39.9037756Z 2025-09-07T09:30:39.9038250Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2804 2025-09-07T09:30:39.9038824Z 2025-09-07T09:30:39.9039277Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3040 2025-09-07T09:30:39.9039877Z 2025-09-07T09:30:39.9040504Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 2120 2025-09-07T09:30:39.9041276Z 2025-09-07T09:30:39.9041763Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 1108 2025-09-07T09:30:39.9042375Z 2025-09-07T09:30:39.9043017Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe 2960 2025-09-07T09:30:39.9043737Z 2025-09-07T09:30:39.9044195Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3128 2025-09-07T09:30:39.9044786Z 2025-09-07T09:30:39.9045440Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3580 2025-09-07T09:30:39.9046217Z 2025-09-07T09:30:39.9046786Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4028 2025-09-07T09:30:39.9047451Z 2025-09-07T09:30:39.9047930Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a73055 /state1:0x41c64e6d 4204 2025-09-07T09:30:39.9048509Z 2025-09-07T09:30:39.9050214Z NVDisplay.Container.exe "C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\NVDisplay.Container.exe" -f %ProgramData%\NVIDIA\DisplaySessionContainer%d.log -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\Display.NvContainer\plugins\Session -r -l 3 -p 30000 -cfg NVDisplay.ContainerLocalSystem\Session /ert -c 4492 2025-09-07T09:30:39.9052065Z 2025-09-07T09:30:39.9052759Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_145e51f5c032bb30\NVWMI\nvWmi64.exe -spawnprovider 4624 2025-09-07T09:30:39.9053600Z 2025-09-07T09:30:39.9053943Z vds.exe C:\Windows\System32\vds.exe 4864 2025-09-07T09:30:39.9054383Z 2025-09-07T09:30:39.9054935Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2336 2025-09-07T09:30:39.9055585Z 2025-09-07T09:30:39.9056281Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 3112 2025-09-07T09:30:39.9057094Z 2025-09-07T09:30:39.9058745Z 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 1640 2025-09-07T09:30:39.9060379Z 2025-09-07T09:30:39.9060777Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1504 2025-09-07T09:30:39.9061267Z 2025-09-07T09:30:39.9061846Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 2868 2025-09-07T09:30:39.9062437Z 2025-09-07T09:30:39.9062802Z msdtc.exe C:\Windows\System32\msdtc.exe 5048 2025-09-07T09:30:39.9063308Z 2025-09-07T09:30:39.9063911Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 2936 2025-09-07T09:30:39.9064605Z 2025-09-07T09:30:39.9065051Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 1484 2025-09-07T09:30:39.9065599Z 2025-09-07T09:30:39.9066129Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 892 2025-09-07T09:30:39.9066784Z 2025-09-07T09:30:39.9067284Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 3240 2025-09-07T09:30:39.9067886Z 2025-09-07T09:30:39.9068360Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4664 2025-09-07T09:30:39.9068931Z 2025-09-07T09:30:39.9069607Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 2136 2025-09-07T09:30:39.9070293Z 2025-09-07T09:30:39.9070748Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3912 2025-09-07T09:30:39.9071229Z 2025-09-07T09:30:39.9071710Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 2676 2025-09-07T09:30:39.9072261Z 2025-09-07T09:30:39.9072776Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4272 2025-09-07T09:30:39.9073404Z 2025-09-07T09:30:39.9073889Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 5012 2025-09-07T09:30:39.9074450Z 2025-09-07T09:30:39.9074981Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 4152 2025-09-07T09:30:39.9075638Z 2025-09-07T09:30:39.9076036Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4604 2025-09-07T09:30:39.9076513Z 2025-09-07T09:30:39.9077019Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2120 2156 3696 2025-09-07T09:30:39.9077626Z 2025-09-07T09:30:39.9078013Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1196 2025-09-07T09:30:39.9078505Z 2025-09-07T09:30:39.9079121Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 1020 2025-09-07T09:30:39.9079763Z 2025-09-07T09:30:39.9080164Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 5728 2025-09-07T09:30:39.9080752Z 2025-09-07T09:30:39.9081645Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\8217ba4b-83b7-4cc0-9189-cf60dff82361.ps1'" 3756 2025-09-07T09:30:39.9082514Z 2025-09-07T09:30:39.9083083Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 1768 2025-09-07T09:30:39.9083751Z 2025-09-07T09:30:39.9083755Z 2025-09-07T09:30:39.9083758Z 2025-09-07T09:30:39.9360783Z ##[group]Run nick-fields/retry@v3.0.0 2025-09-07T09:30:39.9361188Z with: 2025-09-07T09:30:39.9361372Z shell: bash 2025-09-07T09:30:39.9361652Z timeout_minutes: 5 2025-09-07T09:30:39.9361854Z max_attempts: 3 2025-09-07T09:30:39.9362076Z retry_wait_seconds: 90 2025-09-07T09:30:39.9363058Z 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-09-07T09:30:39.9364071Z polling_interval_seconds: 1 2025-09-07T09:30:39.9364322Z warning_on_retry: true 2025-09-07T09:30:39.9364548Z continue_on_error: false 2025-09-07T09:30:39.9364776Z env: 2025-09-07T09:30:39.9364952Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:30:39.9365327Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:30:39.9365843Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:30:39.9366319Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:30:39.9366725Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:30:39.9367021Z EXTRA_DELETE_DIR: 2025-09-07T09:30:39.9367241Z ##[endgroup] 2025-09-07T09:30:40.0532837Z + '[' -n '' ']' 2025-09-07T09:30:40.0544519Z + rm -rf ./AGENTS.md ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./CLAUDE.md ./CMakeLists.txt ./CODEOWNERS ./CODE_OF_CONDUCT.md ./CONTRIBUTING.md ./Dockerfile ./GLOSSARY.md ./LICENSE ./MANIFEST.in ./Makefile ./NOTICE ./README.md ./RELEASE.md ./SECURITY.md ./WORKSPACE ./android ./aten ./aten.bzl ./benchmarks ./binaries ./buckbuild.bzl ./build ./build.bzl ./build_variables.bzl ./c10 ./caffe2 ./cmake ./codex_setup.sh ./defs.bzl ./docker.Makefile ./docs ./functorch ./logs-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip ./mypy-strict.ini ./mypy.ini ./mypy_plugins ./pt_ops.bzl ./pt_template_srcs.bzl ./pyproject.toml ./pyrefly.toml ./pytest.ini ./requirements-build.txt ./requirements.txt ./scripts ./setup.py ./test ./test-jsons-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip ./test-reports ./test-reports-test-default-1-3-lf.windows.4xlarge.nonephemeral_49774387897.zip ./third_party ./tools ./torch ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./usage_log.txt ./version.txt 2025-09-07T09:31:04.1644468Z Command completed after 1 attempt(s). 2025-09-07T09:31:04.1832565Z ##[group]Run handle C:\actions-runner\_work\ 2025-09-07T09:31:04.1832918Z handle C:\actions-runner\_work\ 2025-09-07T09:31:04.1849745Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T09:31:04.1850197Z env: 2025-09-07T09:31:04.1850409Z GIT_DEFAULT_BRANCH: main 2025-09-07T09:31:04.1850780Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-09-07T09:31:04.1851396Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-09-07T09:31:04.1851914Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-09-07T09:31:04.1852309Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-09-07T09:31:04.1852616Z ##[endgroup] 2025-09-07T09:31:04.5574707Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T09:31:04.5648768Z Finished 2025-09-07T09:31:04.6678494Z 2025-09-07T09:31:04.6678844Z Nthandle v5.0 - Handle viewer 2025-09-07T09:31:04.6679183Z Copyright (C) 1997-2022 Mark Russinovich 2025-09-07T09:31:04.6679489Z Sysinternals - www.sysinternals.com 2025-09-07T09:31:04.6954606Z 2025-09-07T09:31:04.6954979Z powershell.exe pid: 5916 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:31:04.6955569Z handle.exe pid: 3428 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:31:04.6956150Z handle.exe pid: 4356 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:31:04.6956738Z handle64.exe pid: 4976 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:31:04.7327596Z Post job cleanup. 2025-09-07T09:31:04.7443600Z Post job cleanup. 2025-09-07T09:31:05.0456127Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-09-07T09:31:05.0676456Z git version 2.51.0.windows.1 2025-09-07T09:31:05.0739833Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\3a9e4c6c-7cbe-49b6-a15e-cd189f444ee0\.gitconfig' 2025-09-07T09:31:05.0756721Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\3a9e4c6c-7cbe-49b6-a15e-cd189f444ee0' before making global git config changes 2025-09-07T09:31:05.0757575Z Adding repository directory to the temporary git global config as a safe directory 2025-09-07T09:31:05.0767682Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-09-07T09:31:05.1025231Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-09-07T09:31:05.1268993Z [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-09-07T09:31:05.6019472Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-09-07T09:31:05.6213618Z http.https://github.com/.extraheader 2025-09-07T09:31:05.6256985Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-09-07T09:31:05.6507326Z [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-09-07T09:31:06.0361678Z A job completed hook has been configured by the self-hosted runner administrator 2025-09-07T09:31:06.0396114Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-09-07T09:31:06.0412172Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-09-07T09:31:06.0412652Z ##[endgroup] 2025-09-07T09:31:06.4147033Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-09-07T09:31:06.4209167Z Finished 2025-09-07T09:31:08.0184184Z Cleaning up orphan processes