New failing test case test_vjpvmap_nn_functional_conv3d_xpu_float32
- Dominant language
- Python
- Stars
- 113
- Forks
- 128
- Avg merge
- 5d 13h
- Merged PRs (30d)
- 107
Description
### 🐛 Describe the bug
New failing test cases appeared in the latest Nightly / Build-from-source and in some pull workflows:
https://github.com/intel/torch-xpu-ops/actions/runs/25439279276
Cases:
op_ut,third_party.torch-xpu-ops.test.xpu.functorch.test_ops_xpu.TestOperatorsXPU,test_vjpvmap_nn_functional_conv3d_xpu_float32
### Likely root cause
Many similar test cases related to convolution operations that call oneDNN kernels under the hood are failing due to default non deterministic behavior of the oneDNN kernels. That causes slightly different results between consecutive kernel launches with exactly the same inputs, which makes the tests fail as they expect more exact results.
Quick test if that is the root cause is to launch the same tests with `DeterministicGuard(True)` context manager that changes oneDNN kernels into deterministic mode.
Error log
```text
2026-05-06T23:42:16.5652446Z ________ TestOperatorsXPU.test_vjpvmap_nn_functional_conv3d_xpu_float32 ________
2026-05-06T23:42:16.5652907Z [gw3] linux -- Python 3.10.20 /tmp/xpu-tool/Python/3.10.20/x64/bin/python
2026-05-06T23:42:16.5706096Z Traceback (most recent call last):
2026-05-06T23:42:16.5706711Z File "/tmp/xpu-tool/Python/3.10.20/x64/lib/python3.10/site-packages/torch/testing/_internal/common_device_type.py", line 1263, in test_wrapper
2026-05-06T23:42:16.5707314Z return test(*args, **kwargs)
2026-05-06T23:42:16.5707879Z File "/__w/torch-xpu-ops/torch-xpu-ops/pytorch/third_party/torch-xpu-ops/test/xpu/functorch/test_ops_xpu.py", line 1775, in test_vjpvmap
2026-05-06T23:42:16.5708472Z self.assertEqual(result_vjps, expected_vjps)
2026-05-06T23:42:16.5709047Z File "/tmp/xpu-tool/Python/3.10.20/x64/lib/python3.10/site-packages/torch/testing/_internal/common_utils.py", line 4535, in assertEqual
2026-05-06T23:42:16.5709713Z raise error_metas.pop()[0].to_error( # type: ignore[index]
2026-05-06T23:42:16.5710066Z AssertionError: Tensor-likes are not close!
2026-05-06T23:42:16.5710254Z
2026-05-06T23:42:16.5710353Z Mismatched elements: 1 / 20 (5.0%)
2026-05-06T23:42:16.5710777Z Greatest absolute difference: 0.00013065338134765625 at index (0, 0, 0, 1, 1, 1) (up to 5e-05 allowed)
2026-05-06T23:42:16.5711366Z Greatest relative difference: 8.252372026618104e-06 at index (0, 0, 0, 1, 1, 1) (up to 5e-06 allowed)
2026-05-06T23:42:16.5711714Z
2026-05-06T23:42:16.5711814Z The failure occurred for item [1]
2026-05-06T23:42:16.5711979Z
2026-05-06T23:42:16.5712170Z The above exception was the direct cause of the following exception:
2026-05-06T23:42:16.5712425Z
2026-05-06T23:42:16.5712533Z Traceback (most recent call last):
2026-05-06T23:42:16.5713064Z File "/tmp/xpu-tool/Python/3.10.20/x64/lib/python3.10/site-packages/torch/testing/_internal/common_utils.py", line 3538, in wrapper
2026-05-06T23:42:16.5713589Z method(*args, **kwargs)
2026-05-06T23:42:16.5714206Z File "/tmp/xpu-tool/Python/3.10.20/x64/lib/python3.10/site-packages/torch/testing/_internal/common_device_type.py", line 515, in instantiated_test
2026-05-06T23:42:16.5714789Z result = test(self, **param_kwargs)
2026-05-06T23:42:16.5715327Z File "/tmp/xpu-tool/Python/3.10.20/x64/lib/python3.10/site-packages/torch/testing/_internal/common_utils.py", line 1897, in wrapper
2026-05-06T23:42:16.5715849Z fn(*args, **kwargs)
2026-05-06T23:42:16.5716383Z File "/tmp/xpu-tool/Python/3.10.20/x64/lib/python3.10/site-packages/torch/testing/_internal/common_device_type.py", line 1275, in test_wrapper
2026-05-06T23:42:16.5716952Z raise e_tracked from e
2026-05-06T23:42:16.5717214Z Exception: Tensor-likes are not close!
2026-05-06T23:42:16.5717390Z
2026-05-06T23:42:16.5717495Z Mismatched elements: 1 / 20 (5.0%)
2026-05-06T23:42:16.5717918Z Greatest absolute difference: 0.00013065338134765625 at index (0, 0, 0, 1, 1, 1) (up to 5e-05 allowed)
2026-05-06T23:42:16.5718508Z Greatest relative difference: 8.252372026618104e-06 at index (0, 0, 0, 1, 1, 1) (up to 5e-06 allowed)
2026-05-06T23:42:16.5718854Z
2026-05-06T23:42:16.5718952Z The failure occurred for item [1]
2026-05-06T23:42:16.5719126Z
2026-05-06T23:42:16.5719838Z Caused by sample input at index 10: SampleInput(input=Tensor[size=(1, 1, 10, 11, 12), device="xpu:0", dtype=torch.float32], args=(Tensor[size=(1, 1, 1, 2, 5), device="xpu:0", dtype=torch.float32],None), kwargs={'padding': "'same'", 'dilation': '2'}, broadcasts_input=False, name='')
2026-05-06T23:42:16.5720621Z
2026-05-06T23:42:16.5720818Z To execute this test, run the following from the base repo dir:
2026-05-06T23:42:16.5721576Z PYTORCH_OPINFO_SAMPLE_INPUT_INDEX=10 PYTORCH_TEST_WITH_SLOW=1 python test/xpu/functorch/test_ops_xpu.py TestOperatorsXPU.test_vjpvmap_nn_functional_conv3d_xpu_float32
```
### Versions
Versions
```text
2026-05-06T23:29:13.1629442Z Collecting environment information...
2026-05-06T23:29:13.1629771Z PyTorch version: 2.13.0a0+git4037885
2026-05-06T23:29:13.1630366Z Is debug build: False
2026-05-06T23:29:13.1630618Z CUDA used to build PyTorch: None
2026-05-06T23:29:13.1630895Z ROCM used to build PyTorch: N/A
2026-05-06T23:29:13.1631072Z
2026-05-06T23:29:13.1631167Z OS: Ubuntu 24.04.4 LTS (x86_64)
2026-05-06T23:29:13.1631448Z GCC version: (Ubuntu 13.3.0-6ubuntu2~24.04.1) 13.3.0
2026-05-06T23:29:13.1631750Z Clang version: Could not collect
2026-05-06T23:29:13.1632005Z CMake version: version 3.31.6
2026-05-06T23:29:13.1632317Z Libc version: glibc-2.39
2026-05-06T23:29:13.1632460Z
2026-05-06T23:29:13.1632683Z Python version: 3.10.20 (main, Mar 3 2026, 15:36:40) [GCC 13.3.0] (64-bit runtime)
2026-05-06T23:29:13.1633132Z Python platform: Linux-6.8.0-110-generic-x86_64-with-glibc2.39
2026-05-06T23:29:13.1633470Z Is CUDA available: False
2026-05-06T23:29:13.1633711Z CUDA runtime version: No CUDA
2026-05-06T23:29:13.1634113Z CUDA_MODULE_LOADING set to: N/A
2026-05-06T23:29:13.1634378Z GPU models and configuration: No CUDA
2026-05-06T23:29:13.1634687Z Nvidia driver version: No CUDA
2026-05-06T23:29:13.1634935Z cuDNN version: No CUDA
2026-05-06T23:29:13.1635169Z Is XPU available: True
2026-05-06T23:29:13.1635408Z XPU used to build PyTorch: 20250302
2026-05-06T23:29:13.1635668Z Intel GPU driver version:
2026-05-06T23:29:13.1635914Z * libze1: 1.24.0.0-1146~24.04
2026-05-06T23:29:13.1636177Z * intel-opencl-icd: 25.18.33578.51-1146~24.04
2026-05-06T23:29:13.1636455Z Intel GPU models onboard:
2026-05-06T23:29:13.1636694Z * Intel(R) Data Center GPU Max 1550
2026-05-06T23:29:13.1636943Z * Intel(R) Data Center GPU Max 1550
2026-05-06T23:29:13.1637197Z * Intel(R) Data Center GPU Max 1550
2026-05-06T23:29:13.1637562Z * Intel(R) Data Center GPU Max 1550
2026-05-06T23:29:13.1637817Z * Intel(R) Data Center GPU Max 1550
2026-05-06T23:29:13.1638067Z * Intel(R) Data Center GPU Max 1550
2026-05-06T23:29:13.1638316Z * Intel(R) Data Center GPU Max 1550
2026-05-06T23:29:13.1638559Z * Intel(R) Data Center GPU Max 1550
2026-05-06T23:29:13.1638819Z Intel GPU models detected:
2026-05-06T23:29:13.1640410Z * [0] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-1a00-000000000001, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1643297Z * [1] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-1a00-000000000002, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1646225Z * [2] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-2c00-000000000001, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1651208Z * [3] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-2c00-000000000002, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1654160Z * [4] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-3c00-000000000001, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1657015Z * [5] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-3c00-000000000002, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1659955Z * [6] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-5f00-000000000001, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1662931Z * [7] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-5f00-000000000002, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1665817Z * [8] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-8600-000000000001, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1668613Z * [9] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-8600-000000000002, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1671429Z * [10] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-9000-000000000001, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1674243Z * [11] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-9000-000000000002, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1677093Z * [12] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-9900-000000000001, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1679891Z * [13] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-9900-000000000002, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1682758Z * [14] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-e300-000000000001, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1685575Z * [15] _XpuDeviceProperties(name='Intel(R) Data Center GPU Max 1550', platform_name='Intel(R) oneAPI Unified Runtime over Level-Zero', type='gpu', device_id=0xBD5, uuid=8680d50b-2f00-0000-e300-000000000002, driver_version='1.6.33578+51', total_memory=65520MB, local_mem_size=128KB, max_compute_units=512, memory_clock_rate=3200MHz, memory_bus_width=64-bit, gpu_eu_count=512, gpu_subslice_count=64, max_work_group_size=1024, max_num_sub_groups=64, sub_group_sizes=[16 32], has_fp16=1, has_fp64=1, has_atomic64=1)
2026-05-06T23:29:13.1687112Z HIP runtime version: N/A
2026-05-06T23:29:13.1687357Z MIOpen runtime version: N/A
2026-05-06T23:29:13.1687606Z Is XNNPACK available: True
2026-05-06T23:29:13.1687845Z Caching allocator config: N/A
2026-05-06T23:29:13.1688007Z
2026-05-06T23:29:13.1688083Z CPU:
2026-05-06T23:29:13.1688302Z Architecture: x86_64
2026-05-06T23:29:13.1688623Z CPU op-mode(s): 32-bit, 64-bit
2026-05-06T23:29:13.1688991Z Address sizes: 52 bits physical, 57 bits virtual
2026-05-06T23:29:13.1689355Z Byte Order: Little Endian
2026-05-06T23:29:13.1689659Z CPU(s): 192
2026-05-06T23:29:13.1689944Z On-line CPU(s) list: 0-191
2026-05-06T23:29:13.1690247Z Vendor ID: GenuineIntel
2026-05-06T23:29:13.1690586Z Model name: Intel(R) Xeon(R) Platinum 8468V
2026-05-06T23:29:13.1690917Z CPU family: 6
2026-05-06T23:29:13.1691178Z Model: 143
2026-05-06T23:29:13.1691450Z Thread(s) per core: 2
2026-05-06T23:29:13.1691725Z Core(s) per socket: 48
2026-05-06T23:29:13.1691995Z Socket(s): 2
2026-05-06T23:29:13.1692255Z Stepping: 8
2026-05-06T23:29:13.1692524Z CPU(s) scaling MHz: 99%
2026-05-06T23:29:13.1692802Z CPU max MHz: 3800.0000
2026-05-06T23:29:13.1693167Z CPU min MHz: 800.0000
2026-05-06T23:29:13.1693465Z BogoMIPS: 4800.00
2026-05-06T23:29:13.1697200Z Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 intel_ppin cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect user_shstk avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg tme avx512_vpopcntdq la57 rdpid bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 amx_tile amx_int8 flush_l1d arch_capabilities ibpb_exit_to_user
2026-05-06T23:29:13.1701182Z L1d cache: 4.5 MiB (96 instances)
2026-05-06T23:29:13.1701534Z L1i cache: 3 MiB (96 instances)
2026-05-06T23:29:13.1701872Z L2 cache: 192 MiB (96 instances)
2026-05-06T23:29:13.1702266Z L3 cache: 195 MiB (2 instances)
2026-05-06T23:29:13.1702565Z NUMA node(s): 2
2026-05-06T23:29:13.1702855Z NUMA node0 CPU(s): 0-47,96-143
2026-05-06T23:29:13.1703165Z NUMA node1 CPU(s): 48-95,144-191
2026-05-06T23:29:13.1703506Z Vulnerability Gather data sampling: Not affected
2026-05-06T23:29:13.1703847Z Vulnerability Indirect target selection: Not affected
2026-05-06T23:29:13.1704204Z Vulnerability Itlb multihit: Not affected
2026-05-06T23:29:13.1704529Z Vulnerability L1tf: Not affected
2026-05-06T23:29:13.1704845Z Vulnerability Mds: Not affected
2026-05-06T23:29:13.1705155Z Vulnerability Meltdown: Not affected
2026-05-06T23:29:13.1705480Z Vulnerability Mmio stale data: Not affected
2026-05-06T23:29:13.1705813Z Vulnerability Reg file data sampling: Not affected
2026-05-06T23:29:13.1706143Z Vulnerability Retbleed: Not affected
2026-05-06T23:29:13.1706470Z Vulnerability Spec rstack overflow: Not affected
2026-05-06T23:29:13.1706915Z Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl
2026-05-06T23:29:13.1707517Z Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
2026-05-06T23:29:13.1708231Z Vulnerability Spectre v2: Mitigation; Enhanced / Automatic IBRS; IBPB conditional; PBRSB-eIBRS SW sequence; BHI BHI_DIS_S
2026-05-06T23:29:13.1708784Z Vulnerability Srbds: Not affected
2026-05-06T23:29:13.1709105Z Vulnerability Tsa: Not affected
2026-05-06T23:29:13.1709428Z Vulnerability Tsx async abort: Not affected
2026-05-06T23:29:13.1709819Z Vulnerability Vmscape: Mitigation; IBPB before exit to userspace
2026-05-06T23:29:13.1710092Z
2026-05-06T23:29:13.1710200Z Versions of relevant libraries:
2026-05-06T23:29:13.1710462Z [pip3] dpcpp-cpp-rt==2025.3.2
2026-05-06T23:29:13.1710715Z [pip3] impi-rt==2021.17.2
2026-05-06T23:29:13.1710964Z [pip3] intel-cmplr-lib-rt==2025.3.2
2026-05-06T23:29:13.1711239Z [pip3] intel-cmplr-lib-ur==2025.3.2
2026-05-06T23:29:13.1711501Z [pip3] intel-cmplr-lic-rt==2025.3.2
2026-05-06T23:29:13.1711764Z [pip3] intel-opencl-rt==2025.3.2
2026-05-06T23:29:13.1712087Z [pip3] intel-openmp==2025.3.2
2026-05-06T23:29:13.1712335Z [pip3] intel-pti==0.16.0
2026-05-06T23:29:13.1712581Z [pip3] intel-sycl-rt==2025.3.2
2026-05-06T23:29:13.1712823Z [pip3] mkl==2025.3.1
2026-05-06T23:29:13.1713040Z [pip3] mypy==1.16.0
2026-05-06T23:29:13.1713257Z [pip3] mypy_extensions==1.1.0
2026-05-06T23:29:13.1713496Z [pip3] numpy==1.23.2
2026-05-06T23:29:13.1713716Z [pip3] oneccl==2021.17.2
2026-05-06T23:29:13.1713973Z [pip3] oneccl-devel==2021.17.2
2026-05-06T23:29:13.1714225Z [pip3] onemkl-license==2025.3.1
2026-05-06T23:29:13.1714476Z [pip3] onemkl-sycl-blas==2025.3.1
2026-05-06T23:29:13.1714745Z [pip3] onemkl-sycl-dft==2025.3.1
2026-05-06T23:29:13.1715005Z [pip3] onemkl-sycl-lapack==2025.3.1
2026-05-06T23:29:13.1715271Z [pip3] onemkl-sycl-rng==2025.3.1
2026-05-06T23:29:13.1715526Z [pip3] onemkl-sycl-sparse==2025.3.1
2026-05-06T23:29:13.1715772Z [pip3] onnx==1.21.0
2026-05-06T23:29:13.1715978Z [pip3] onnx-ir==0.1.16
2026-05-06T23:29:13.1716203Z [pip3] onnxscript==0.6.2
2026-05-06T23:29:13.1716436Z [pip3] optree==0.13.0
2026-05-06T23:29:13.1716646Z [pip3] tbb==2022.3.1
2026-05-06T23:29:13.1716853Z [pip3] tcmlib==1.4.1
2026-05-06T23:29:13.1717064Z [pip3] torch==2.13.0a0+git4037885
2026-05-06T23:29:13.1717321Z [pip3] torchao==0.18.0.dev20260506+xpu
2026-05-06T23:29:13.1717581Z [pip3] torchaudio==2.11.0a0+c0cbdb9
2026-05-06T23:29:13.1717835Z [pip3] torchvision==0.27.0a0+499ca51
2026-05-06T23:29:13.1718140Z [pip3] triton-xpu==3.7.1+git21033c4e
2026-05-06T23:29:13.1718393Z [pip3] umf==1.0.3
2026-05-06T23:29:13.1718617Z [conda] No relevant packages
2026-05-06T23:29:13.7029733Z + pip list
2026-05-06T23:29:13.7030063Z + grep -E 'torch|intel'
2026-05-06T23:29:14.0028154Z intel-cmplr-lib-rt 2025.3.2
2026-05-06T23:29:14.0028433Z intel-cmplr-lib-ur 2025.3.2
2026-05-06T23:29:14.0028709Z intel-cmplr-lic-rt 2025.3.2
2026-05-06T23:29:14.0028973Z intel-opencl-rt 2025.3.2
2026-05-06T23:29:14.0029227Z intel-openmp 2025.3.2
2026-05-06T23:29:14.0029474Z intel-pti 0.16.0
2026-05-06T23:29:14.0029726Z intel-sycl-rt 2025.3.2
2026-05-06T23:29:14.0029991Z torch 2.13.0a0+git4037885
2026-05-06T23:29:14.0030286Z torchao 0.18.0.dev20260506+xpu
2026-05-06T23:29:14.0030574Z torchaudio 2.11.0a0+c0cbdb9
2026-05-06T23:29:14.0030850Z torchvision 0.27.0a0+499ca51
```
Contributor guide
Assessment
This issue has not been assessed yet.