mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-21 13:29:20 +00:00
Fix the DL kernel issues on Navi3x. (#998)
* apply the patch for dl kernels on gfx11
* build DL kernels on navi32 CI
[ROCm/composable_kernel commit: f7331c603b]
This commit is contained in:
@@ -192,6 +192,8 @@ inner_product<int8x4_t, int8x4_t, int32_t>(const int8x4_t& a, const int8x4_t& b,
|
||||
#else
|
||||
c = __builtin_amdgcn_sdot4(bit_cast<int32_t>(a), bit_cast<int32_t>(b), c, false);
|
||||
#endif
|
||||
#elif defined(CK_USE_AMD_V_DOT4_I32_I8_GFX11)
|
||||
c = __builtin_amdgcn_sudot4(true, bit_cast<int32_t>(a), true, bit_cast<int32_t>(b), c, false);
|
||||
#else
|
||||
const vector_type<int8_t, 4> a_vector{a};
|
||||
const vector_type<int8_t, 4> b_vector{b};
|
||||
|
||||
Reference in New Issue
Block a user