Qualify calls to make_fragment_? from templated base class. (#1196)

Fixes clang build error.
This commit is contained in:
Christian Sigg 2023-12-01 15:52:57 +01:00 committed by GitHub
parent 60c8251b72
commit 2375a07d01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -554,7 +554,7 @@ struct ThrMMA : TiledMMA
auto auto
partition_fragment_C(CTensor&& ctensor) const partition_fragment_C(CTensor&& ctensor) const
{ {
return make_fragment_C(partition_C(ctensor)); return TiledMMA::make_fragment_C(partition_C(ctensor));
} }
template <class ATensor> template <class ATensor>
@ -562,7 +562,7 @@ struct ThrMMA : TiledMMA
auto auto
partition_fragment_A(ATensor&& atensor) const partition_fragment_A(ATensor&& atensor) const
{ {
return make_fragment_A(partition_A(atensor)); return TiledMMA::make_fragment_A(partition_A(atensor));
} }
template <class BTensor> template <class BTensor>
@ -570,7 +570,7 @@ struct ThrMMA : TiledMMA
auto auto
partition_fragment_B(BTensor&& btensor) const partition_fragment_B(BTensor&& btensor) const
{ {
return make_fragment_B(partition_B(btensor)); return TiledMMA::make_fragment_B(partition_B(btensor));
} }
}; };