File indexing completed on 2025-01-26 04:07:17

0001 /*
0002  * SPDX-FileCopyrightText: 2022 L. E. Segovia <amy@amyspark.me>
0003  *
0004  * SPDX-License-Identifier: BSD-3-Clause
0005  */
0006 
0007 #ifndef XSIMD_EXTENSIONS_H
0008 #define XSIMD_EXTENSIONS_H
0009 
0010 // xsimd detection and architecture setup.
0011 #include "config/xsimd_arch.hpp"
0012 
0013 #if defined(HAVE_XSIMD) && !defined(XSIMD_NO_SUPPORTED_ARCHITECTURE)
0014 // xsimd extensions.
0015 #include "arch/xsimd_isa.hpp"
0016 #endif // HAVE_XSIMD
0017 
0018 #endif // XSIMD_EXTENSIONS_H