ck-builder: ck factory grouped conv fwd

This commit is contained in:
Robin Voetter
2025-10-24 14:21:54 +02:00
parent 16db75fadf
commit d15334ed0d
4 changed files with 2357 additions and 4 deletions

View File

@@ -252,7 +252,14 @@ bool InstanceMatcher::MatchAndExplain(InstanceSet actual,
*listener << " Missing: " << instances.size() << "\n";
for(const auto& instance : instances)
{
*listener << "- " << instance << "\n";
if(instance == "")
{
*listener << "- (empty string)\n";
}
else
{
*listener << "- " << instance << "\n";
}
}
}
@@ -270,8 +277,7 @@ bool InstanceMatcher::MatchAndExplain(InstanceSet actual,
{
if(instance == "")
{
*listener << "- (empty string; indicates missing GetInstanceString() overload)"
<< "\n";
*listener << "- (empty string)\n";
}
else
{