Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
e90c77da
There was a problem fetching the pipeline summary.
Commit
e90c77da
authored
6 years ago
by
Jö Fahlke
Browse files
Options
Downloads
Patches
Plain Diff
[Simd] Implement broadcast construction function.
parent
2d4e3460
No related branches found
Branches containing commit
No related tags found
2 merge requests
!524
[Simd] Introduce broadcast<V>(s) function.
,
!523
[CI] Optional expensive tests.
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/common/simd/defaults.hh
+8
-0
8 additions, 0 deletions
dune/common/simd/defaults.hh
dune/common/simd/interface.hh
+18
-0
18 additions, 0 deletions
dune/common/simd/interface.hh
with
26 additions
and
0 deletions
dune/common/simd/defaults.hh
+
8
−
0
View file @
e90c77da
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
dune/common/simd/interface.hh
+
18
−
0
View file @
e90c77da
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment