mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-13 02:37:53 +01:00
8 lines
219 B
C
8 lines
219 B
C
#include <xmmintrin.h>
|
|
#include <immintrin.h>
|
|
|
|
int main(void)
|
|
{
|
|
__m256 a = _mm256_fmadd_ps(_mm256_setzero_ps(), _mm256_setzero_ps(), _mm256_setzero_ps());
|
|
return (int)_mm_cvtss_f32(_mm256_castps256_ps128(a));
|
|
}
|