Fixed template struct/class mismatch (#453)
This commit is contained in:
parent
d7b499deff
commit
be4578d517
@ -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_;
|
||||
@ -250,7 +250,7 @@ public:
|
||||
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_;
|
||||
|
@ -44,7 +44,7 @@ template <
|
||||
int ElementCount,
|
||||
typename TransposeShape,
|
||||
typename Element
|
||||
> class Transpose;
|
||||
> struct Transpose;
|
||||
|
||||
/// Specialization for int8_t 4x4 transpose
|
||||
template <int ElementCount_>
|
||||
|
Loading…
Reference in New Issue
Block a user