mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-11 17:00:18 +00:00
8 lines
291 B
C++
8 lines
291 B
C++
|
|
using Builder = ckb::ConvBuilder<SIGNATURE, ALGORITHM>;
|
|
using Instance = Builder::Instance;
|
|
|
|
auto conv = Instance{};
|
|
ckt::RunResult result = ckt::run(conv, args, inputs, outputs, s_conf);
|
|
return std::make_tuple(result.is_supported(), result.runtime, conv.GetInstanceString());
|