Skip to content

Commit

Permalink
Fixed template struct/class mismatch (NVIDIA#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroburg authored Apr 24, 2022
1 parent d7b499d commit be4578d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ struct TileIteratorVoltaTensorOp;
template <
typename WarpShape_ ///< shape of warp-level GEMM (concept: MatrixShape)
>
class TileIteratorVoltaTensorOp<WarpShape_, gemm::GemmShape<32, 32, 4>, half_t, layout::RowMajor> {
struct TileIteratorVoltaTensorOp<WarpShape_, gemm::GemmShape<32, 32, 4>, half_t, layout::RowMajor> {
public:

using WarpShape = WarpShape_;
Expand Down Expand Up @@ -250,7 +250,7 @@ class TileIteratorVoltaTensorOp<WarpShape_, gemm::GemmShape<32, 32, 4>, half_t,
template <
typename WarpShape_ ///< shape of warp-level GEMM (concept: MatrixShape)
>
class TileIteratorVoltaTensorOp<WarpShape_, gemm::GemmShape<32, 32, 4>, float, layout::RowMajor> {
struct TileIteratorVoltaTensorOp<WarpShape_, gemm::GemmShape<32, 32, 4>, float, layout::RowMajor> {
public:

using WarpShape = WarpShape_;
Expand Down
2 changes: 1 addition & 1 deletion include/cutlass/transform/thread/transpose.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ template <
int ElementCount,
typename TransposeShape,
typename Element
> class Transpose;
> struct Transpose;

/// Specialization for int8_t 4x4 transpose
template <int ElementCount_>
Expand Down

0 comments on commit be4578d

Please sign in to comment.