prevent warning in filter mode

This commit is contained in:
rocking
2024-04-08 21:43:35 +00:00
parent 525b89e538
commit b64d3f6eec

View File

@@ -167,6 +167,10 @@ using fmha_fwd_args_{F_idx} = fmha_fwd_args<{F_element_func}>;
template<>
float fmha_fwd<fmha_fwd_args_{F_idx}>(fmha_fwd_traits t, fmha_fwd_args_{F_idx} a, const ck_tile::stream_config& s){{
float r = -1;
(void) r;
(void) t;
(void) a;
(void) s;
{F_dispatch}
return r;
}}