From 37e9547a2932aaf327e577350e647af37ca92619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Pietil=C3=A4?= <> Date: Wed, 7 Jan 2026 03:56:50 -0500 Subject: [PATCH] Fix ref algorithm dispatching. --- .../builder/include/ck_tile/builder/factory/conv_dispatcher.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experimental/builder/include/ck_tile/builder/factory/conv_dispatcher.hpp b/experimental/builder/include/ck_tile/builder/factory/conv_dispatcher.hpp index 319293cff1..e235db4bb0 100644 --- a/experimental/builder/include/ck_tile/builder/factory/conv_dispatcher.hpp +++ b/experimental/builder/include/ck_tile/builder/factory/conv_dispatcher.hpp @@ -112,7 +112,7 @@ constexpr auto make_conv_instance() return typename ReferenceFactory::Instance{}; } // CK Tile supports common factory for each direction - if constexpr(TileAlgorithm) + else if constexpr(TileAlgorithm) { return typename ConvTileFactory::Instance{}; }