simdpp::stream

From libsimdpp-docs
< 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[edit]

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

Return value[edit]

(none)

See also[edit]