From 4e66d707a292b90a344e32c59eb1dacb67a0e4c1 Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Mon, 7 Mar 2022 18:20:12 +0000 Subject: Added windows native build support Resolves MLCE-739 Signed-off-by: Pablo Tello Change-Id: I30a11393e928061c82a5c93d8ec195c04a0e838b Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7279 Tested-by: Arm Jenkins Reviewed-by: Giorgio Arena Comments-Addressed: Arm Jenkins --- support/ToolchainSupport.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'support') diff --git a/support/ToolchainSupport.h b/support/ToolchainSupport.h index cddcd542c8..8ea50ebe15 100644 --- a/support/ToolchainSupport.h +++ b/support/ToolchainSupport.h @@ -310,6 +310,7 @@ inline bool isfinite(bfloat16 value) return std::isfinite(float(value)); } +#if !defined(_WIN64) // std::signbit template ::value>::type> inline bool signbit(T value) @@ -326,6 +327,7 @@ inline bool signbit(bfloat16 value) { return std::signbit(float(value)); } +#endif // !defined(_WIN64) } // namespace cpp11 } // namespace support } // namespace arm_compute -- cgit v1.2.1