From be4578d5179a15d4faa3d5dc104437f75da3defd Mon Sep 17 00:00:00 2001 From: Stepan Tezyunichev Date: Sun, 24 Apr 2022 23:30:21 +0300 Subject: [PATCH] Fixed template struct/class mismatch (#453) --- include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h | 4 ++-- include/cutlass/transform/thread/transpose.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h b/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h index 403f7d89..a5035b61 100644 --- a/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h +++ b/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h @@ -64,7 +64,7 @@ struct TileIteratorVoltaTensorOp; template < typename WarpShape_ ///< shape of warp-level GEMM (concept: MatrixShape) > -class TileIteratorVoltaTensorOp, half_t, layout::RowMajor> { +struct TileIteratorVoltaTensorOp, half_t, layout::RowMajor> { public: using WarpShape = WarpShape_; @@ -250,7 +250,7 @@ public: template < typename WarpShape_ ///< shape of warp-level GEMM (concept: MatrixShape) > -class TileIteratorVoltaTensorOp, float, layout::RowMajor> { +struct TileIteratorVoltaTensorOp, float, layout::RowMajor> { public: using WarpShape = WarpShape_; diff --git a/include/cutlass/transform/thread/transpose.h b/include/cutlass/transform/thread/transpose.h index 8e529c41..f1f992f8 100644 --- a/include/cutlass/transform/thread/transpose.h +++ b/include/cutlass/transform/thread/transpose.h @@ -44,7 +44,7 @@ template < int ElementCount, typename TransposeShape, typename Element -> class Transpose; +> struct Transpose; /// Specialization for int8_t 4x4 transpose template