From 61a38f83dcf8ff6e1101d8edcfc53d846587fc97 Mon Sep 17 00:00:00 2001 From: Kyle Gerard Felker Date: Mon, 2 Oct 2023 20:41:25 -0500 Subject: [PATCH] Add #include to platform.h (#1121) Closes #1118 --- include/cutlass/platform/platform.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/cutlass/platform/platform.h b/include/cutlass/platform/platform.h index 4e8ee96f..f782c9ed 100644 --- a/include/cutlass/platform/platform.h +++ b/include/cutlass/platform/platform.h @@ -55,7 +55,7 @@ * (2) Re-implementations of STL functions and types: * - C++ features that need the \p __device__ annotation. These are * placed into the \p platform namespace. - * - \p abs + * - \p abs * - \p plus * - \p less * - \p greater @@ -127,6 +127,7 @@ #include // Minimum/maximum operations #include // nullptr_t #include // Arithmetic operations +#include // float_round_style, float_denorm_style #include // For methods on std::pair #if (!defined(_MSC_VER) && (__cplusplus >= 201103L)) || (defined(_MSC_VER) && (_MS_VER >= 1500)) #include // For integral constants, conditional metaprogramming, and type traits