mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 13:41:24 +00:00
fix wmma gemm int8; add grouped conv int8 example (#716)
This commit is contained in:
@@ -262,12 +262,12 @@ struct wmma_type<WmmaInstr::wmma_i32_16x16x16_iu8,
|
||||
|
||||
template <index_t MPerWmma,
|
||||
index_t NPerWmma,
|
||||
bool neg_a,
|
||||
bool neg_b,
|
||||
bool clamp,
|
||||
class FloatA,
|
||||
class FloatB,
|
||||
class FloatC>
|
||||
class FloatC,
|
||||
bool neg_a = false,
|
||||
bool neg_b = false,
|
||||
bool clamp = false>
|
||||
__device__ void run(const FloatA& a, const FloatB& b, FloatC& reg_c) const
|
||||
{
|
||||
if constexpr(wave_size == 32)
|
||||
|
||||
Reference in New Issue
Block a user