vir-simd 0.4.189
Parallelism TS 2 extensions and simd fallback implementation
Loading...
Searching...
No Matches
simd_cast.h
1/* SPDX-License-Identifier: LGPL-3.0-or-later */
2/* Copyright © 2022–2024 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
3 * Matthias Kretz <m.kretz@gsi.de>
4 */
5
6#ifndef VIR_SIMD_CAST_H
7#define VIR_SIMD_CAST_H
8
9#include "simd.h"
10#include "detail.h"
11
12namespace vir
13{
14#if VIR_GLIBCXX_STDX_SIMD
15 using std::experimental::parallelism_v2::__proposed::static_simd_cast;
16#else
17 using vir::stdx::static_simd_cast;
18#endif
19}
20
21#endif // VIR_SIMD_CAST_H
This namespace collects libraries and tools authored by Matthias Kretz.
Definition constexpr_wrapper.h:21