I was wondering could a explicit alignment attribute for Vec3f improve code generation for SIMD instructions? ``` #ifdef _WIN32 __declspec(align(16)) #else __attribute__ ((aligned (16))) #endif typedef Vec<3, float> Vec3f; ```