fix: external_test_gpu_crash on python 3.14 (#17739)
Autogen / In-tree Autogen (comgr 2) (push) Successful in 1m38s
Unit Tests / Linters (push) Successful in 2m49s
Unit Tests / Torch Backend Training (push) Failing after 2m50s
Unit Tests / Fuzzing (push) Successful in 4m51s
Unit Tests / AMD ASM IDE (push) Failing after 4m58s
Deploy Docs / deploy (push) Successful in 5m7s
Unit Tests / Test LLM (push) Failing after 5m7s
Unit Tests / hcq2 (push) Failing after 5m13s
Unit Tests / Python Backend (push) Failing after 6m34s
Unit Tests / Null Tests (push) Successful in 6m42s
Unit Tests / Unit Tests (push) Successful in 7m38s
Unit Tests / Linux (am) (push) Successful in 8m33s
Unit Tests / Docs (push) Failing after 9m23s
Unit Tests / Linux (DSP) (push) Successful in 12m30s
Unit Tests / SPEC=2 (1) (push) Failing after 12m40s
Unit Tests / Linux (ptx) (push) Failing after 8m20s
Unit Tests / Compile-only (DEV=NULL:QCOMCL:a630) (push) Failing after 21m15s
Unit Tests / Compile-only (DEV=NULL:NAK:sm_120) (push) Failing after 21m23s
Unit Tests / Compile-only (DEV=NULL:IR3:a630) (push) Failing after 21m24s
Unit Tests / Linux (nv) (push) Failing after 21m39s
Unit Tests / Linux (amdllvm gfx950) (push) Failing after 23m41s
Unit Tests / Linux (amd gfx950) (push) Failing after 23m42s
Unit Tests / Linux (amdllvm gfx1201) (push) Failing after 24m52s
Unit Tests / Linux (amd gfx1201) (push) Failing after 26m29s
Unit Tests / Linux (amdllvm gfx1100) (push) Failing after 26m29s
Unit Tests / Linux (amd gfx1100) (push) Failing after 26m29s
Unit Tests / Linux (DEV=WEBGPU) (push) Failing after 26m29s
Unit Tests / Linux (DEV=CPU:X86) (push) Failing after 26m29s
Unit Tests / Linux (DEV=CPU:LVP) (push) Failing after 26m29s
Unit Tests / Linux (DEV=CPU:LLVM) (push) Failing after 26m30s
Unit Tests / Linux (DEV=CPU:CLANG) (push) Failing after 26m30s
Unit Tests / Linux (DEV=CL) (push) Failing after 26m30s
Unit Tests / Models (push) Failing after 26m30s
Unit Tests / Optimization Tests (push) Failing after 26m30s
Unit Tests / ONNX (CPU) Tests (push) Failing after 26m30s
Unit Tests / openpilot Compile Tests (push) Failing after 26m31s
Unit Tests / CL IMAGE Tests (push) Failing after 26m31s
Unit Tests / SPEC=2 (2) (push) Failing after 26m31s
Unit Tests / Torch Backend Tests (push) Failing after 26m32s
Autogen / In-tree Autogen (push) Failing after 26m32s
Autogen / In-tree Autogen (macos) (push) Canceled after 0s
Benchmarks / Mac pytest (push) Canceled after 0s
Benchmarks / LLM (DEV=AMD) (push) Canceled after 0s
Benchmarks / LLM (DEV=METAL) (push) Canceled after 0s
Benchmarks / LLM (DEV=NV) (push) Canceled after 0s
Benchmarks / HLB-CIFAR10 (DEV=AMD) (push) Canceled after 0s
Benchmarks / HLB-CIFAR10 (DEV=METAL) (push) Canceled after 0s
Benchmarks / HLB-CIFAR10 (DEV=NV) (push) Canceled after 0s
Benchmarks / MLPerf (AMD) (push) Canceled after 0s
Benchmarks / MLPerf (NV) (push) Canceled after 0s
Benchmarks / Stable Diffusion (DEV=AMD) (push) Canceled after 0s
Benchmarks / Stable Diffusion (DEV=METAL) (push) Canceled after 0s
Benchmarks / Stable Diffusion (DEV=NV) (push) Canceled after 0s
Benchmarks / Multi-GPU Benchmarks (DEV=AMD) (push) Canceled after 0s
Benchmarks / Multi-GPU Benchmarks (DEV=NV) (push) Canceled after 0s
Benchmarks / Tests (DEV=AMD) (push) Canceled after 0s
Benchmarks / Tests (DEV=METAL) (push) Canceled after 0s
Benchmarks / Tests (DEV=NV) (push) Canceled after 0s
Benchmarks / UsbGPU Benchmark (push) Canceled after 0s
Benchmarks / comma Benchmark (0.11.2) (push) Canceled after 0s
Benchmarks / comma Benchmark (0.11.0) (push) Canceled after 0s
Benchmarks / DSP Benchmark (push) Canceled after 0s
Benchmarks / UsbGPU Benchmark (comma) (push) Canceled after 0s
Benchmarks / PCI Driver Benchmark (DEV=AMD) (push) Canceled after 0s
Benchmarks / PCI Driver Benchmark (DEV=NV) (push) Canceled after 0s
Benchmarks / LLVM Speed (push) Canceled after 0s
Platform Tests / MacOS (unit) (push) Canceled after 0s
Platform Tests / MacOS (unit, mock) (push) Canceled after 0s
Platform Tests / MacOS (DEV=METAL) (1) (push) Canceled after 0s
Platform Tests / MacOS (DEV=METAL) (2) (push) Canceled after 0s
Platform Tests / MacOS (DEV=CPU:CLANG) (push) Canceled after 0s
Platform Tests / MacOS (DEV=CPU:LLVM) (push) Canceled after 0s
Platform Tests / MacOS (DEV=CPU:LVP) (push) Canceled after 0s
Platform Tests / MacOS (DEV=WEBGPU) (push) Canceled after 0s
Platform Tests / Windows (DEV=CPU:CLANG) (push) Canceled after 0s
Platform Tests / Windows (DEV=CPU:LLVM) (push) Canceled after 0s
Platform Tests / Windows (DEV=CPU:X86) (push) Canceled after 0s
Platform Tests / Windows (DEV=WEBGPU) (push) Canceled after 0s

This commit is contained in:
wozeparrot
2026-08-25 15:43:30 -07:00
committed by GitHub
parent 55032514ce
commit 07268b724f
+1 -1
View File
@@ -23,7 +23,7 @@ class TestGPUCrash(unittest.TestCase):
cls.is_cdna = cls.dev.target[0] < 10
ins = importlib.import_module('tinygrad.runtime.autogen.amd.' + ('cdna' if cls.is_cdna else 'rdna3') + '.ins')
for rdna3_name, cdna3_name in RDNA3_CDNA3_MAP.items():
setattr(cls, rdna3_name, getattr(ins, cdna3_name if cls.is_cdna else rdna3_name))
setattr(cls, rdna3_name, staticmethod(getattr(ins, cdna3_name if cls.is_cdna else rdna3_name)))
def setUp(self):
# Verify device works before each test