Is SIMD template
Manu
turkeyman at gmail.com
Mon Jan 23 10:58:21 PST 2012
So I've been fiddling, but I can't work it out.
Trying to make something like isStaticArray to match a vector...
template isVector(T : __vector(U[N]), U, size_t N) { enum bool isVector =
true; }
template isVector(T) { enum bool isVector = false; }
Complains:
test.d:122: Error: Integer constant expression expected instead of N
test.d:122: Error: size of type U is not known
test.d:122: Error: base type of __vector must be a 16 byte static array,
not U[N]
A size_t template arg should be an integer constant expression, and
consequently, the size of U should be known... Bug?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.puremagic.com/pipermail/digitalmars-d/attachments/20120123/f70acc04/attachment.html>
More information about the Digitalmars-d
mailing list