mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-11 03:08:41 +00:00
25 lines
497 B
C
25 lines
497 B
C
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef TOS_STDLIB_SIMD_H
|
|
#define TOS_STDLIB_SIMD_H
|
|
|
|
#if __aarch64__
|
|
|
|
#else
|
|
// @todo Should get moved to architecture/x86/simd directory
|
|
#include "simd/SIMD_F32.h"
|
|
#include "simd/SIMD_F64.h"
|
|
#include "simd/SIMD_I8.h"
|
|
#include "simd/SIMD_I16.h"
|
|
#include "simd/SIMD_I32.h"
|
|
#include "simd/SIMD_I64.h"
|
|
#include "simd/SIMD_SVML.h"
|
|
#endif
|
|
|
|
#endif |