Fixed template struct/class mismatch (#453)
This commit is contained in:
parent
d7b499deff
commit
be4578d517
@ -64,7 +64,7 @@ struct TileIteratorVoltaTensorOp;
|
|||||||
template <
|
template <
|
||||||
typename WarpShape_ ///< shape of warp-level GEMM (concept: MatrixShape)
|
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:
|
public:
|
||||||
|
|
||||||
using WarpShape = WarpShape_;
|
using WarpShape = WarpShape_;
|
||||||
@ -250,7 +250,7 @@ public:
|
|||||||
template <
|
template <
|
||||||
typename WarpShape_ ///< shape of warp-level GEMM (concept: MatrixShape)
|
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:
|
public:
|
||||||
|
|
||||||
using WarpShape = WarpShape_;
|
using WarpShape = WarpShape_;
|
||||||
|
@ -44,7 +44,7 @@ template <
|
|||||||
int ElementCount,
|
int ElementCount,
|
||||||
typename TransposeShape,
|
typename TransposeShape,
|
||||||
typename Element
|
typename Element
|
||||||
> class Transpose;
|
> struct Transpose;
|
||||||
|
|
||||||
/// Specialization for int8_t 4x4 transpose
|
/// Specialization for int8_t 4x4 transpose
|
||||||
template <int ElementCount_>
|
template <int ElementCount_>
|
||||||
|
Loading…
Reference in New Issue
Block a user