Skip to content

change int_v multiplication in simdwrapper

Niklas Stefan Nolte requested to merge mul2mullo into master

(avx2)
right now:
int_v{2} * int_v{3} -> {6,0,6,0,6,0,6,0}
after:
int_v{2} * int_v{3} -> {6,6,6,6,6,6,6,6}

Edited by Marco Cattaneo

Merge request reports