From 3742611aa9b9a09ea678d2338d4cb4274712eac4 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Fri, 10 Sep 2021 13:38:16 +0200 Subject: [PATCH] remove BFLOAT16 from FLOAT_TYPES to avoid creating bogus objects for unimplemented functions --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0330b2ce7..ef7457135 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -132,7 +132,7 @@ endif () if (BUILD_BFLOAT16) message(STATUS "Building Half Precision") - list(APPEND FLOAT_TYPES "BFLOAT16") # defines nothing + # list(APPEND FLOAT_TYPES "BFLOAT16") # defines nothing endif () if (NOT DEFINED CORE OR "${CORE}" STREQUAL "UNKNOWN")