Skip to content
Snippets Groups Projects
Commit e90c77da authored by Jö Fahlke's avatar Jö Fahlke
Browse files

[Simd] Implement broadcast construction function.

parent 2d4e3460
No related branches found
No related tags found
2 merge requests!524[Simd] Introduce broadcast<V>(s) function.,!523[CI] Optional expensive tests.
Pipeline #
......@@ -18,6 +18,7 @@
#include <dune/common/rangeutilities.hh>
#include <dune/common/simd/base.hh>
#include <dune/common/simd/interface.hh>
#include <dune/common/typelist.hh>
#include <dune/common/typetraits.hh>
namespace Dune {
......@@ -134,6 +135,13 @@ namespace Dune {
return Simd::mask(v1) && Simd::mask(v2);
}
//! implements Simd::broadcast<V>()
template<class V, class S>
auto broadcast(ADLTag<0>, MetaType<V>, S s)
{
return V(Simd::Scalar<V>(s));
}
//! @} Overloadable and default functions
//! @} Group SIMDAbstract
} // namespace Overloads
......
......@@ -18,6 +18,7 @@
#include <utility>
#include <dune/common/simd/base.hh>
#include <dune/common/typelist.hh>
namespace Dune {
......@@ -413,6 +414,23 @@ namespace Dune {
return maskAnd(Overloads::ADLTag<7>{}, v1, v2);
}
//! Broadcast a scalar to a vector explicitly
/**
* Implemented by `Overloads::broadcast()`
*
* This is useful because the syntax for broadcasting can vary wildly
* between implementations.
*
* \note One of the few functions that explicitly take a template
* argument (`V` in this case).
*/
template<class V, class S>
constexpr V broadcast(S s)
{
return broadcast(Overloads::ADLTag<7>{}, MetaType<std::decay_t<V> >{},
std::move(s));
}
//! @}
/** @name Syntactic Sugar
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment