From 2375a07d01c62472268163299fb90d97d809a6d7 Mon Sep 17 00:00:00 2001 From: Christian Sigg Date: Fri, 1 Dec 2023 15:52:57 +0100 Subject: [PATCH] Qualify calls to make_fragment_? from templated base class. (#1196) Fixes clang build error. --- include/cute/atom/mma_atom.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/cute/atom/mma_atom.hpp b/include/cute/atom/mma_atom.hpp index 94e8a875..80468914 100644 --- a/include/cute/atom/mma_atom.hpp +++ b/include/cute/atom/mma_atom.hpp @@ -554,7 +554,7 @@ struct ThrMMA : TiledMMA auto partition_fragment_C(CTensor&& ctensor) const { - return make_fragment_C(partition_C(ctensor)); + return TiledMMA::make_fragment_C(partition_C(ctensor)); } template @@ -562,7 +562,7 @@ struct ThrMMA : TiledMMA auto partition_fragment_A(ATensor&& atensor) const { - return make_fragment_A(partition_A(atensor)); + return TiledMMA::make_fragment_A(partition_A(atensor)); } template @@ -570,7 +570,7 @@ struct ThrMMA : TiledMMA auto partition_fragment_B(BTensor&& btensor) const { - return make_fragment_B(partition_B(btensor)); + return TiledMMA::make_fragment_B(partition_B(btensor)); } };