Fix AIX build

This commit is contained in:
Ayappan Perumal 2024-10-21 07:38:03 -05:00
parent 8a0cd5fcef
commit b6ec73e77c
1 changed files with 5 additions and 0 deletions

View File

@ -28,7 +28,12 @@
#define USE_VECTOR_PAIRS
#endif
#ifdef _AIX
#include<stdbool.h>
typedef __vector unsigned short vec_bf16;
#else
typedef __vector IFLOAT vec_bf16;
#endif
typedef __vector FLOAT vec_f32;
typedef __vector unsigned char vec_uc8;