From fc7d6e65a1ba9c7b33a80a03932e2f6d64f220bf Mon Sep 17 00:00:00 2001 From: Chip Kerchner Date: Tue, 23 Sep 2025 20:26:44 +0000 Subject: [PATCH] Change BF16 warning message. --- driver/others/dynamic_riscv64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/others/dynamic_riscv64.c b/driver/others/dynamic_riscv64.c index 249804664..726f76d79 100644 --- a/driver/others/dynamic_riscv64.c +++ b/driver/others/dynamic_riscv64.c @@ -184,7 +184,7 @@ static gotoblas_t* get_coretype(void) { openblas_warning(1, coremsg); return NULL; #elif defined(BUILD_BFLOAT16) - snprintf(coremsg, sizeof(coremsg), "Cpu support for Zfbfmin+Zvfbfmin+Zvfbfwma extensions required due to BUILD_BFLOAT16=1\n"); + snprintf(coremsg, sizeof(coremsg), "Cpu support for Zvfbfwma extensions required due to BUILD_BFLOAT16=1\n"); openblas_warning(1, coremsg); return NULL; #else