-
Notifications
You must be signed in to change notification settings - Fork 301
Expand file tree
/
Copy pathtest_explicit_batch_instantiation.cpp
More file actions
32 lines (29 loc) · 1.31 KB
/
test_explicit_batch_instantiation.cpp
File metadata and controls
32 lines (29 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/***************************************************************************
* Copyright (c) Johan Mabille, Sylvain Corlay, Wolf Vollprecht and *
* Martin Renou *
* Copyright (c) QuantStack *
* Copyright (c) Serge Guelton *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* *
* The full license is in the file LICENSE, distributed with this software. *
****************************************************************************/
#include "xsimd/xsimd.hpp"
#ifndef XSIMD_NO_SUPPORTED_ARCHITECTURE
namespace xsimd
{
template class batch<char>;
template class batch<unsigned char>;
template class batch<signed char>;
template class batch<unsigned short>;
template class batch<signed short>;
template class batch<unsigned int>;
template class batch<signed int>;
template class batch<unsigned long>;
template class batch<signed long>;
template class batch<float>;
#if !XSIMD_WITH_NEON || XSIMD_WITH_NEON64
template class batch<double>;
#endif
}
#endif