// The Construct // // Copyright (C) The Construct Developers, Authors & Contributors // Copyright (C) 2016-2020 Jason Volk // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice is present in all copies. The // full license for this software is available in the LICENSE file. #pragma once #define HAVE_IRCD_SIMD_SCATTER_H namespace ircd::simd { template void scatter(value *, const index_vector, const u64, const value_vector) noexcept; } /// Scatter values to memory locations from the argument vector. /// /// Each lane in the index vector corresponds to each lane in the operand vector. /// Each bit in the mask corresponds to each lane as well. /// template inline void ircd::simd::scatter(value *const __restrict__ base, const index_vector index, const u64 mask, const value_vector val) noexcept { static_assert ( lanes() == lanes() ); const auto *const in { reinterpret_cast *>(&val) }; const auto *const idx { reinterpret_cast *>(&index) }; #if defined(__AVX512F__) #pragma clang loop unroll(disable) #endif for(size_t i(0); i < lanes(); ++i) if(mask & (1UL << i)) base[idx[i] * scale] = in[i]; }