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
8c50402d
Commit
8c50402d
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
array: handle 0/1 dim array instantiation
parent
16ab933a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/action.hpp
+30
-3
30 additions, 3 deletions
src/action.hpp
src/array.hpp
+4
-2
4 additions, 2 deletions
src/array.hpp
src/main.cpp
+3
-3
3 additions, 3 deletions
src/main.cpp
with
37 additions
and
8 deletions
src/action.hpp
+
30
−
3
View file @
8c50402d
...
...
@@ -8,9 +8,36 @@
template
<
typename
Scalar
,
typename
Shape
>
inline
Scalar
S_2
(
Array
<
Scalar
,
Shape
>
Q
)
{
Q
(
0u
,
0u
)
=
1
;
Q
(
0u
,
1u
)
=
2
;
Q
(
1u
,
1u
)
=
3
;
size_t
nx
=
Q
.
dim
(
0
);
size_t
ny
=
Q
.
dim
(
1
);
for
(
size_t
i
=
0
;
i
<
nx
;
++
i
)
{
for
(
size_t
j
=
0
;
j
<
ny
;
++
j
)
{
auto
Q1
=
Q
.
part
(
i
,
j
).
matrix
();
/* Sum over neighbors */
for
(
int
di
=
-
1
;
di
<=
1
;
++
di
)
{
for
(
int
dj
=
-
1
;
dj
<=
1
;
++
dj
)
{
if
(
i
==
0
&&
di
<
0
)
continue
;
if
(
i
==
nx
-
1
&&
di
>
0
)
continue
;
if
(
j
==
0
&&
dj
<
0
)
continue
;
if
(
j
==
ny
-
1
&&
dj
>
0
)
continue
;
if
(
di
==
0
&&
dj
==
0
)
continue
;
size_t
i2
=
i
+
di
;
size_t
j2
=
j
+
dj
;
auto
Q2
=
Q
.
part
(
i2
,
j2
).
matrix
();
}
}
}
}
return
Scalar
(
0
);
}
...
...
This diff is collapsed.
Click to expand it.
src/array.hpp
+
4
−
2
View file @
8c50402d
...
...
@@ -21,6 +21,7 @@ struct Shape<>
static
const
size_t
ndim
=
0
;
static
const
size_t
size
=
1
;
static
const
bool
fixed
=
true
;
typedef
Shape
<>
Tail
;
static
constexpr
size_t
dim
(
size_t
i
)
{
return
0
;
}
static
constexpr
size_t
stride
(
size_t
i
)
{
return
1
;
}
};
...
...
@@ -192,7 +193,8 @@ private:
template
<
size_t
axis
>
static
constexpr
Eigen
::
Index
eigen_shape
()
{
size_t
n
=
(
axis
==
0
)
?
Shape
::
head
:
Shape
::
Tail
::
head
;
/* bad Shape handled in matrix() */
size_t
n
=
(
axis
==
0
||
Shape
::
ndim
<
2
)
?
Shape
::
head
:
Shape
::
Tail
::
head
;
return
(
n
==
Dynamic
)
?
Eigen
::
Dynamic
:
n
;
}
...
...
@@ -289,7 +291,7 @@ public:
{
constexpr
size_t
nidxs
=
sizeof
...(
Idx
);
static_assert
(
nidxs
<
Shape
::
ndim
,
"number of indices must be small than the number of dimensions"
);
"number of indices must be small
er
than the number of dimensions"
);
size_t
offset
=
index
(
idxs
...);
return
{
data_
+
offset
,
Base
::
size
()
-
offset
};
...
...
This diff is collapsed.
Click to expand it.
src/main.cpp
+
3
−
3
View file @
8c50402d
...
...
@@ -24,11 +24,11 @@ void dump(Array<Scalar,Shape> Q)
int
main
()
{
std
::
vector
<
double
>
v
(
1
*
2
*
2
*
2
);
Array
<
double
,
Shape
<
Dynamic
,
Dynamic
,
2
,
2
>
>
Q0
(
v
.
data
(),
v
.
size
(),
{
1
,
2
,
2
,
2
});
std
::
vector
<
double
>
v
(
1
0
*
10
*
2
*
2
);
Array
<
double
,
Shape
<
Dynamic
,
Dynamic
,
2
,
2
>
>
Q0
(
v
.
data
(),
v
.
size
(),
{
1
0
,
10
,
2
,
2
});
auto
Q
=
Q0
.
part
(
0u
,
1u
);
S_2
(
Q
);
S_2
(
Q
0
);
std
::
cout
<<
"size = "
<<
Q
.
size
()
<<
std
::
endl
;
...
...
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