usingElementA=hytlass::half_t;// Element type for A matrix operand
usingLayoutA=hytlass::layout::RowMajor;// Layout type for A matrix operand
constexprintAlignmentA=128/hytlass::sizeof_bits<ElementA>::value;// Memory access granularity/alignment of A matrix in units of elements (up to 16 bytes)
// B matrix configuration
usingElementB=hytlass::half_t;// Element type for B matrix operand
usingLayoutB=hytlass::layout::RowMajor;// Layout type for B matrix operand
constexprintAlignmentB=128/hytlass::sizeof_bits<ElementB>::value;// Memory access granularity/alignment of B matrix in units of elements (up to 16 bytes)
// C1/C2/D matrix configuration
usingElementC=hytlass::half_t;// Element type for C matrix operands
usingLayoutC=hytlass::layout::RowMajor;// Layout type for C matrix operands
constexprintAlignmentC=128/hytlass::sizeof_bits<ElementC>::value;// Memory access granularity/alignment of C matrices in units of elements (up to 16 bytes)
// Output matrix configuration
usingElementOutput=hytlass::half_t;// Element type for output matrix operands
usingLayoutOutput=hytlass::layout::RowMajor;// Layout type for output matrix operands
// constexpr int AlignmentOutput = 128 / hytlass::sizeof_bits<ElementOutput>::value; // Memory access granularity/alignment of output matrices in units of elements (up to 16 bytes)
usingElementA=hytlass::half_t;// Element type for A matrix operand
usingLayoutA=hytlass::layout::ColumnMajor;// Layout type for A matrix operand
constexprintAlignmentA=128/hytlass::sizeof_bits<ElementA>::value;// Memory access granularity/alignment of A matrix in units of elements (up to 16 bytes)
// B matrix configuration
usingElementB=hytlass::half_t;// Element type for B matrix operand
usingLayoutB=hytlass::layout::ColumnMajor;// Layout type for B matrix operand
constexprintAlignmentB=128/hytlass::sizeof_bits<ElementB>::value;// Memory access granularity/alignment of B matrix in units of elements (up to 16 bytes)
// C/D matrix configuration
usingElementC=hytlass::half_t;// Element type for C and D matrix operands
usingLayoutC=hytlass::layout::RowMajor;// Layout type for C and D matrix operands
constexprintAlignmentC=128/hytlass::sizeof_bits<ElementC>::value;// Memory access granularity/alignment of C/D matrices in units of elements (up to 16 bytes)