1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Cordell Bloor <cgmb@slerp.xyz>
Date: Sun, 16 Jul 2023 03:40:38 -0600
Subject: mark known bugs
In ROCm 5.5, the FP16 High-Precision Accumulate checks are also offset
from the correct answer by margins slightly greater than those allowed.
Forwarded: not-needed
---
clients/gtest/known_bugs.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/clients/gtest/known_bugs.yaml b/clients/gtest/known_bugs.yaml
index ca6c115..c9a7310 100644
--- a/clients/gtest/known_bugs.yaml
+++ b/clients/gtest/known_bugs.yaml
@@ -20,3 +20,5 @@ Known bugs:
#- { function: gemm, a_type: f16_r, b_type: f16_r, c_type: f16_r, d_type: f16_r, transA: N, transB: N, M: 3136, N: 256, K: 256, lda: 3136, ldb: 256, ldc: 3136, ldd: 3136, alpha: 1.0, alphai: 0.0, beta: 0.0, betai: 0.0 }
# current known bugs list below (tests should only be listed here for the short term)
+# Minor discrepences in FP16 High-Precision Accumulate
+- { function: "gemm_*ex", alpha: 0.001, beta: 1.0, stride_a: 128000, stride_b: 128000, stride_c: 16384, stride_d: 16384, K: 1000, lda: 128, ldb: 1000, ldc: 128, ldd: 128, a_type: f16_r, b_type: f16_r, c_type: f16_r, d_type: f16_r, initialization: rand_int, transA: 'N', transB: 'N' }
|