HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
SIMD.hpp
1// Copyright Take Vos 2023.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
4
5#pragma once
6
7#include "array_generic.hpp" // export
8#ifndef HI_GENERIC
9#include "array_intrinsic_f32x4_x86.hpp" // export
10#endif
11#include "array_intrinsic.hpp" // export
12#include "simd_intf.hpp" // export
13#if defined(HI_HAS_X86)
14#include "cpu_id_x86.hpp" // export
15#else
16#include "cpu_id_generic.hpp" // export
17#endif
18#include "half.hpp" // export
19#include "half_to_float.hpp" // export
20#include "float_to_half.hpp" // export
21
22hi_export_module(hikogui.SIMD);