Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
usadelndsoc
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JYU Condensed Matter Theory
usadelndsoc
Commits
60c7d6f3
Commit
60c7d6f3
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
array: add size()
parent
40e0f62e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/array.hpp
+11
-3
11 additions, 3 deletions
src/array.hpp
src/main.cpp
+9
-11
9 additions, 11 deletions
src/main.cpp
with
20 additions
and
14 deletions
src/array.hpp
+
11
−
3
View file @
60c7d6f3
...
...
@@ -113,6 +113,7 @@ namespace detail
constexpr
std
::
array
<
size_t
,
Shape
::
ndim
>
shape
()
const
{
return
Shape
::
shape
();
}
constexpr
std
::
array
<
size_t
,
Shape
::
ndim
>
strides
()
const
{
return
Shape
::
strides
();
}
constexpr
size_t
offset
()
const
{
return
offset_
;
}
constexpr
size_t
size
()
const
{
return
Shape
::
size
;
}
};
/*! Base class for compile-time dynamic size arrays
...
...
@@ -178,9 +179,16 @@ namespace detail
return
n
==
Dynamic
?
strides_
[
axis
]
:
n
;
}
constexpr
std
::
array
<
size_t
,
Shape
::
ndim
>&
shape
()
const
{
return
shape_
;
}
constexpr
std
::
array
<
size_t
,
Shape
::
ndim
>&
strides
()
const
{
return
strides_
;
}
constexpr
size_t
offset
()
const
{
return
offset_
;
}
const
std
::
array
<
size_t
,
Shape
::
ndim
>&
shape
()
const
{
return
shape_
;
}
const
std
::
array
<
size_t
,
Shape
::
ndim
>&
strides
()
const
{
return
strides_
;
}
size_t
offset
()
const
{
return
offset_
;
}
size_t
size
()
const
{
size_t
size
=
1
;
for
(
size_t
i
=
0
;
i
<
Shape
::
ndim
;
++
i
)
size
*=
dim
(
i
);
return
size
;
}
};
}
...
...
This diff is collapsed.
Click to expand it.
src/main.cpp
+
9
−
11
View file @
60c7d6f3
...
...
@@ -6,12 +6,13 @@ using namespace std::complex_literals;
template
<
typename
Scalar
,
typename
Shape
>
void
dump
(
Array
<
Scalar
,
Shape
>
Q
)
#if 1
{
for
(
size_t
i
=
0
;
i
<
Q
.
dim
(
0
);
++
i
)
{
for
(
size_t
j
=
0
;
j
<
Q
.
dim
(
1
);
++
j
)
{
for
(
size_t
k
=
0
;
k
<
Q
.
dim
(
2
);
++
k
)
{
std
::
cout
<<
i
<<
","
<<
j
<<
","
<<
k
<<
" = "
<<
Q
(
i
,
j
,
k
)
<<
std
::
endl
;
for
(
size_t
l
=
0
;
l
<
Q
.
dim
(
3
);
++
l
)
{
std
::
cout
<<
i
<<
","
<<
j
<<
","
<<
k
<<
","
<<
l
<<
" = "
<<
Q
(
i
,
j
,
k
,
l
)
<<
std
::
endl
;
}
}
}
}
...
...
@@ -20,28 +21,25 @@ void dump(Array<Scalar,Shape> Q)
std
::
cout
<<
Q
.
data
()[
i
]
<<
std
::
endl
;
}
}
#else
;
#endif
int
main
()
{
std
::
vector
<
double
>
v
(
2
*
2
*
2
);
Array
<
double
,
Shape
<
Dynamic
,
2
,
2
>
>
Q0
(
v
,{
2
,
2
,
2
});
auto
Q
=
Q0
.
part
(
0u
);
std
::
vector
<
double
>
v
(
7
*
2
*
2
*
2
);
Array
<
double
,
Shape
<
Dynamic
,
Dynamic
,
2
,
2
>
>
Q0
(
v
,{
7
,
2
,
2
,
2
});
auto
Q
=
Q0
.
part
(
0u
,
1u
);
S_2
(
Q
);
std
::
cout
<<
"size = "
<<
Q
.
size
()
<<
std
::
endl
;
dump
(
Q0
);
auto
mat
=
Q
.
matrix
();
mat
=
mat
*
mat
*
mat
;
if
constexpr
(
true
)
{
}
static_assert
(
std
::
is_same
<
decltype
(
mat
),
Eigen
::
Map
<
Eigen
::
Matrix
<
double
,
2
,
2
,
Eigen
::
RowMajor
>
>
>::
value
,
"wrong type"
);
dump
(
Q0
);
return
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