Skip to content

Commit

Permalink
Add vector-types back to platform.h (#2026)
Browse files Browse the repository at this point in the history
  • Loading branch information
drisspg authored Jan 8, 2025
1 parent 7de6a59 commit 51b25e7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions include/cutlass/platform/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
#include <type_traits> // For integral constants, conditional metaprogramming, and type traits
#endif

#include <vector_types.h>
#include <cutlass/cutlass.h>

#endif
Expand Down Expand Up @@ -374,7 +375,7 @@ using remove_cvref_t = typename remove_cvref<T>::type;
// Type relationships <type_traits>
//-----------------------------------------------------------------------------

using CUTLASS_STL_NAMESPACE::is_same;
using CUTLASS_STL_NAMESPACE::is_same;
using CUTLASS_STL_NAMESPACE::is_same_v;

#if defined(__CUDACC_RTC__) || (!defined(_MSC_VER) && (__cplusplus < 201103L)) || (defined(_MSC_VER) && (_MSC_VER < 1500))
Expand Down Expand Up @@ -536,7 +537,7 @@ using CUTLASS_STL_NAMESPACE::is_unsigned_v;
//-----------------------------------------------------------------------------

using CUTLASS_STL_NAMESPACE::declval;

//-----------------------------------------------------------------------------
// bit_cast <bit>
//-----------------------------------------------------------------------------
Expand Down

0 comments on commit 51b25e7

Please sign in to comment.