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
0d002c5a
Commit
0d002c5a
authored
1 week ago
by
Simon Praetorius
Browse files
Options
Downloads
Patches
Plain Diff
Rename TensorTraits into TensorStorageType
parent
f78afcab
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/common/tensor.hh
+4
-4
4 additions, 4 deletions
dune/common/tensor.hh
with
4 additions
and
4 deletions
dune/common/tensor.hh
+
4
−
4
View file @
0d002c5a
...
...
@@ -26,12 +26,12 @@ static constexpr inline std::size_t dynamic = Std::dynamic_extent;
namespace
Impl
{
template
<
class
Element
,
std
::
size_t
...
extents
>
struct
Tensor
Traits
struct
Tensor
StorageType
{
using
container_type
=
std
::
conditional_t
<
((
extents
==
Dune
::
dynamic
)
||
...),
std
::
vector
<
Element
>
,
std
::
array
<
Element
,
(
extents
*
...
*
std
::
size_t
(
1
))
>>
;
using
extents_type
=
Std
::
extents
<
typename
container_type
::
size_type
,
extents
...
>
;
using
storage_
type
=
Std
::
mdarray
<
Element
,
extents_type
,
Std
::
layout_right
,
container_type
>
;
using
type
=
Std
::
mdarray
<
Element
,
extents_type
,
Std
::
layout_right
,
container_type
>
;
};
}
// end namespace Impl
...
...
@@ -51,10 +51,10 @@ struct TensorTraits
template
<
class
Element
,
std
::
size_t
...
extents
>
class
Tensor
:
public
TensorMixin
<
Tensor
<
Element
,
extents
...
>
,
typename
Impl
::
Tensor
Traits
<
Element
,
extents
...
>::
storage_
type
>
typename
Impl
::
Tensor
StorageType
<
Element
,
extents
...
>::
type
>
{
using
self_type
=
Tensor
;
using
storage_type
=
typename
Impl
::
Tensor
Traits
<
Element
,
extents
...
>::
storage_
type
;
using
storage_type
=
typename
Impl
::
Tensor
StorageType
<
Element
,
extents
...
>::
type
;
using
base_type
=
TensorMixin
<
self_type
,
storage_type
>
;
public:
...
...
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