simdpp::stream

From cppreference.com
< mem
template<unsigned N, class V>
void stream( void* ptr, const any_vec<N,V>& a );

Performs an aligned store to memory at ptr using a non-temporal memory hint. This means that the caches are not polluted if possible.

V must me a non-mask vector type. ptr must be aligned to vector size.

Parameters

ptr - pointer to location to store data to
a - vector to store

Return value

(none)

See also