SIMDConvert.hpp 248 B

1234567891011
  1. // Copyright (c) 2020 Nicholas Corgan
  2. // SPDX-License-Identifier: BSL-1.0
  3. #pragma once
  4. #include <complex>
  5. #include <cstdlib>
  6. #include <type_traits>
  7. template <typename InType, typename OutType>
  8. void simdConvertBuffer(const void*, void*, size_t);