|
|
|
|
|
by chillitom
156 days ago
|
|
Initial example takes array pointers without the __restrict__ keyword/extension so compiler might assume they could be aliased to same address space and will code defensively. Would be interesting to see if auto vec performs better with that addition. |
|
auto aligned_p = std::assume_aligned<16>(p)