Merge commit 'dd0b4294afcf188f4a9154b7eea19f8e786c9539' into develop

This commit is contained in:
assistant-librarian[bot]
2026-01-22 05:20:00 +00:00
parent 4d2856612c
commit 45e2275fc4
14 changed files with 667 additions and 84 deletions

View File

@@ -37,6 +37,13 @@ struct scales
return lhs_ * rhs;
}
template <typename OtherScale>
CK_TILE_HOST_DEVICE constexpr auto operator*(OtherScale other) const
{
auto new_scale = lhs_ * other;
return scales<std::decay_t<decltype(new_scale)>>(new_scale);
}
private:
Scale lhs_;
};