Commit 3caeb7d7 authored by Adam Osewski's avatar Adam Osewski
Browse files

Fix pipeline version type logging.

parent c5893dc6
......@@ -737,7 +737,7 @@ struct DeviceGroupedGemmXdlSplitKCShuffle : public DeviceGroupedGemmSplitK<ALayo
<< CShuffleNXdlPerWavePerShuffle << ", "
<< ABlockTransferThreadClusterLengths_K0_M_K1{} << ", "
<< getGemmSpecializationString(GemmSpec) << ", "
<< PipelineVer{}
<< PipelineVer
<< ">";
// clang-format on
......
......@@ -56,8 +56,8 @@ std::string getPipelineVersionString(const PipelineVersion& pv)
} // namespace ck
std::ostream& operator<<(std::ostream& os, const PipelineVersion pv)
std::ostream& operator<<(std::ostream& os, const ck::PipelineVersion pv)
{
os << getPipelineVersionString(pv);
os << ck::getPipelineVersionString(pv);
return os;
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment