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
2769e04c
Commit
2769e04c
authored
1 week ago
by
Simon Praetorius
Browse files
Options
Downloads
Patches
Plain Diff
Make IsLAyoutMapping a proper concept
parent
b611aa61
No related branches found
Branches containing commit
No related tags found
1 merge request
!1433
Add Tensor container based on mdarray and a TensorSpan based of mdspan
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/common/tensor.hh
+25
-27
25 additions, 27 deletions
dune/common/tensor.hh
with
25 additions
and
27 deletions
dune/common/tensor.hh
+
25
−
27
View file @
2769e04c
...
...
@@ -296,11 +296,17 @@ public:
/// @}
};
namespace
Impl
{
namespace
Concept
{
template
<
class
M
>
using
IsLayoutMapping
=
std
::
is_same
<
M
,
typename
M
::
layout_type
::
template
mapping
<
typename
M
::
extents_type
>
>
;
concept
LayoutMapping
=
std
::
same_as
<
M
,
typename
M
::
layout_type
::
template
mapping
<
typename
M
::
extents_type
>
>
;
}
// end namespace Concept
namespace
Impl
{
template
<
class
V
,
class
E
>
struct
TensorFromExtents
;
...
...
@@ -327,29 +333,25 @@ Tensor (Std::extents<index_type, exts...>, value_type)
// ranks. This is done up to tensor rank 3. Higher order ranks cannot rely
// on CTAD.
template
<
class
Mapping
,
class
value_type
>
requires
(
Impl
::
IsLayoutMapping
<
Mapping
>::
value
&&
(
Mapping
::
extents_type
::
rank
()
==
0
))
template
<
Concept
::
LayoutMapping
Mapping
,
class
value_type
>
requires
(
Mapping
::
extents_type
::
rank
()
==
0
)
Tensor
(
Mapping
,
value_type
)
->
Tensor
<
value_type
>
;
template
<
class
Mapping
,
class
value_type
>
requires
(
Impl
::
IsLayoutMapping
<
Mapping
>::
value
&&
(
Mapping
::
extents_type
::
rank
()
==
1
))
template
<
Concept
::
LayoutMapping
Mapping
,
class
value_type
>
requires
(
Mapping
::
extents_type
::
rank
()
==
1
)
Tensor
(
Mapping
,
value_type
)
->
Tensor
<
value_type
,
Mapping
::
extents_type
::
static_extent
(
0
)
>
;
template
<
class
Mapping
,
class
value_type
>
requires
(
Impl
::
IsLayoutMapping
<
Mapping
>::
value
&&
(
Mapping
::
extents_type
::
rank
()
==
2
))
template
<
Concept
::
LayoutMapping
Mapping
,
class
value_type
>
requires
(
Mapping
::
extents_type
::
rank
()
==
2
)
Tensor
(
Mapping
,
value_type
)
->
Tensor
<
value_type
,
Mapping
::
extents_type
::
static_extent
(
0
),
Mapping
::
extents_type
::
static_extent
(
1
)
>
;
template
<
class
Mapping
,
class
value_type
>
requires
(
Impl
::
IsLayoutMapping
<
Mapping
>::
value
&&
(
Mapping
::
extents_type
::
rank
()
==
3
))
template
<
Concept
::
LayoutMapping
Mapping
,
class
value_type
>
requires
(
Mapping
::
extents_type
::
rank
()
==
3
)
Tensor
(
Mapping
,
value_type
)
->
Tensor
<
value_type
,
Mapping
::
extents_type
::
static_extent
(
0
),
...
...
@@ -360,29 +362,25 @@ template <class index_type, std::size_t... exts, class value_type, class Alloc>
Tensor
(
Std
::
extents
<
index_type
,
exts
...
>
,
value_type
,
const
Alloc
&
)
->
Tensor
<
value_type
,
exts
...
>
;
template
<
class
Mapping
,
class
value_type
,
class
Alloc
>
requires
(
Impl
::
IsLayoutMapping
<
Mapping
>::
value
&&
(
Mapping
::
extents_type
::
rank
()
==
0
))
template
<
Concept
::
LayoutMapping
Mapping
,
class
value_type
,
class
Alloc
>
requires
(
Mapping
::
extents_type
::
rank
()
==
0
)
Tensor
(
Mapping
,
value_type
,
const
Alloc
&
)
->
Tensor
<
value_type
>
;
template
<
class
Mapping
,
class
value_type
,
class
Alloc
>
requires
(
Impl
::
IsLayoutMapping
<
Mapping
>::
value
&&
(
Mapping
::
extents_type
::
rank
()
==
1
))
template
<
Concept
::
LayoutMapping
Mapping
,
class
value_type
,
class
Alloc
>
requires
(
Mapping
::
extents_type
::
rank
()
==
1
)
Tensor
(
Mapping
,
value_type
,
const
Alloc
&
)
->
Tensor
<
value_type
,
Mapping
::
extents_type
::
static_extent
(
0
)
>
;
template
<
class
Mapping
,
class
value_type
,
class
Alloc
>
requires
(
Impl
::
IsLayoutMapping
<
Mapping
>::
value
&&
(
Mapping
::
extents_type
::
rank
()
==
2
))
template
<
Concept
::
LayoutMapping
Mapping
,
class
value_type
,
class
Alloc
>
requires
(
Mapping
::
extents_type
::
rank
()
==
2
)
Tensor
(
Mapping
,
value_type
,
const
Alloc
&
)
->
Tensor
<
value_type
,
Mapping
::
extents_type
::
static_extent
(
0
),
Mapping
::
extents_type
::
static_extent
(
1
)
>
;
template
<
class
Mapping
,
class
value_type
,
class
Alloc
>
requires
(
Impl
::
IsLayoutMapping
<
Mapping
>::
value
&&
(
Mapping
::
extents_type
::
rank
()
==
3
))
template
<
Concept
::
LayoutMapping
Mapping
,
class
value_type
,
class
Alloc
>
requires
(
Mapping
::
extents_type
::
rank
()
==
3
)
Tensor
(
Mapping
,
value_type
,
const
Alloc
&
)
->
Tensor
<
value_type
,
Mapping
::
extents_type
::
static_extent
(
0
),
...
...
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