Is this a typo? #1621
bluebabyxp
started this conversation in
General
Is this a typo?
#1621
Replies: 1 comment
-
yes, typo. CC @ccecka |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
why DstRef is using srcEngine as template arg?
max_common_layout(Tensor<SrcEngine,SrcLayout> const& a,
Tensor<DstEngine,DstLayout> const& b)
{
using SrcType = typename Tensor<SrcEngine,SrcLayout>::value_type;
using DstType = typename Tensor<DstEngine,DstLayout>::value_type;
using SrcRef = typename Tensor<SrcEngine,SrcLayout>::reference;
using DstRef = typename Tensor<SrcEngine,SrcLayout>::reference;
}
Beta Was this translation helpful? Give feedback.
All reactions