From 78adbe984638b32e209becd4caf07dc5ea74726d Mon Sep 17 00:00:00 2001 From: "Field G. Van Zee" Date: Fri, 7 Jun 2019 11:34:08 -0500 Subject: [PATCH] Added missing #include "bli_family_thunderx2.h". Details: - Added a cpp-conditional directive block to bli_arch_config.h that #includes "bli_family_thunderx2.h". The code has been missing since adf5c17f. However, this never manifested as an error because the file is virtually empty and not needed for thunderx2 (or most subconfigs). Thanks to Jeff Diamond for helping to spot this. --- frame/include/bli_arch_config.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frame/include/bli_arch_config.h b/frame/include/bli_arch_config.h index 9f9eee19b..12cc01852 100644 --- a/frame/include/bli_arch_config.h +++ b/frame/include/bli_arch_config.h @@ -177,6 +177,9 @@ CNTX_INIT_PROTS( generic ) // -- ARM architectures -- +#ifdef BLIS_FAMILY_THUNDERX2 +#include "bli_family_thunderx2.h" +#endif #ifdef BLIS_FAMILY_CORTEXA57 #include "bli_family_cortexa57.h" #endif