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
760c46e8
Commit
760c46e8
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
array: better error checking etc
parent
c572cc90
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/action.hpp
+1
-1
1 addition, 1 deletion
src/action.hpp
src/array.hpp
+26
-8
26 additions, 8 deletions
src/array.hpp
src/common.hpp
+0
-2
0 additions, 2 deletions
src/common.hpp
src/main.cpp
+3
-3
3 additions, 3 deletions
src/main.cpp
with
30 additions
and
14 deletions
src/action.hpp
+
1
−
1
View file @
760c46e8
...
@@ -10,7 +10,7 @@ inline Scalar S_2(Array<Scalar,2> Q)
...
@@ -10,7 +10,7 @@ inline Scalar S_2(Array<Scalar,2> Q)
{
{
Q
(
0u
,
0u
)
=
123
;
Q
(
0u
,
0u
)
=
123
;
Q
(
1u
,
1u
)
=
123
;
Q
(
1u
,
1u
)
=
123
;
return
0
;
return
Scalar
(
0
)
;
}
}
...
...
This diff is collapsed.
Click to expand it.
src/array.hpp
+
26
−
8
View file @
760c46e8
#ifndef ARRAY_HPP_
#ifndef ARRAY_HPP_
#define ARRAY_HPP_
#define ARRAY_HPP_
#include
<vector>
#include
<array>
#include
<type_traits>
#include
<stdexcept>
/*! Simple data-by-reference strided array class
/*! Simple data-by-reference strided array class
*/
*/
template
<
typename
Scalar
,
int
NDim
>
template
<
typename
Scalar
,
int
NDim
,
typename
Storage
=
std
::
vector
<
Scalar
>
>
class
Array
class
Array
{
{
private:
private:
std
::
vector
<
Scalar
>
&
data_
;
Storage
&
data_
;
std
::
array
<
size_t
,
NDim
>
shape_
;
std
::
array
<
size_t
,
NDim
>
shape_
;
std
::
array
<
size_t
,
NDim
>
stride_
;
std
::
array
<
size_t
,
NDim
>
stride_
;
size_t
offset_
=
0
;
size_t
offset_
=
0
;
...
@@ -17,11 +23,11 @@ public:
...
@@ -17,11 +23,11 @@ public:
:
data_
(
array
.
data_
),
shape_
(
array
.
shape_
),
stride_
(
array
.
stride_
),
offset_
(
array
.
offset_
)
:
data_
(
array
.
data_
),
shape_
(
array
.
shape_
),
stride_
(
array
.
stride_
),
offset_
(
array
.
offset_
)
{}
{}
Array
(
std
::
vector
<
Scalar
>
&
data
,
const
std
::
array
<
size_t
,
NDim
>
shape
,
const
std
::
array
<
size_t
,
NDim
>
stride
,
const
size_t
offset
=
0
)
Array
(
Storage
&
data
,
const
std
::
array
<
size_t
,
NDim
>
shape
,
const
std
::
array
<
size_t
,
NDim
>
stride
,
const
size_t
offset
=
0
)
:
data_
(
data
),
shape_
(
shape
),
stride_
(
stride
),
offset_
(
offset
)
:
data_
(
data
),
shape_
(
shape
),
stride_
(
stride
),
offset_
(
offset
)
{}
{}
Array
(
std
::
vector
<
Scalar
>
&
data
,
const
std
::
array
<
size_t
,
NDim
>
shape
)
Array
(
Storage
&
data
,
const
std
::
array
<
size_t
,
NDim
>
shape
)
:
data_
(
data
),
shape_
(
shape
),
offset_
(
0
)
:
data_
(
data
),
shape_
(
shape
),
offset_
(
0
)
{
{
// row-major strides
// row-major strides
...
@@ -42,6 +48,8 @@ public:
...
@@ -42,6 +48,8 @@ public:
template
<
size_t
axis
>
template
<
size_t
axis
>
Array
<
Scalar
,
NDim
-
1
>
slice
(
size_t
pos
=
0
)
const
Array
<
Scalar
,
NDim
-
1
>
slice
(
size_t
pos
=
0
)
const
{
{
static_assert
(
axis
<
NDim
,
"invalid slice index"
);
std
::
array
<
size_t
,
NDim
-
1
>
shape
;
std
::
array
<
size_t
,
NDim
-
1
>
shape
;
std
::
array
<
size_t
,
NDim
-
1
>
stride
;
std
::
array
<
size_t
,
NDim
-
1
>
stride
;
size_t
offset
;
size_t
offset
;
...
@@ -56,12 +64,14 @@ public:
...
@@ -56,12 +64,14 @@ public:
++
j
;
++
j
;
}
}
return
Array
<
Scalar
,
NDim
-
1
>
(
data_
,
shape
,
stride
,
offset
)
;
return
{
data_
,
shape
,
stride
,
offset
}
;
}
}
template
<
size_t
axis
>
template
<
size_t
axis
>
Array
<
Scalar
,
NDim
>
slice
(
size_t
begin
,
size_t
end
)
const
Array
<
Scalar
,
NDim
>
slice
(
size_t
begin
,
size_t
end
)
const
{
{
static_assert
(
axis
<
NDim
,
"invalid slice index"
);
std
::
array
<
size_t
,
NDim
>
shape
;
std
::
array
<
size_t
,
NDim
>
shape
;
std
::
array
<
size_t
,
NDim
>
stride
;
std
::
array
<
size_t
,
NDim
>
stride
;
size_t
offset
;
size_t
offset
;
...
@@ -76,10 +86,10 @@ public:
...
@@ -76,10 +86,10 @@ public:
stride
[
i
]
=
stride_
[
i
];
stride
[
i
]
=
stride_
[
i
];
}
}
return
Array
<
Scalar
,
NDim
>
(
data_
,
shape
,
stride
,
offset
)
;
return
{
data_
,
shape
,
stride
,
offset
}
;
}
}
std
::
vector
<
Scalar
>
&
data
()
{
return
data_
;
}
Storage
&
data
()
{
return
data_
;
}
template
<
size_t
axis
>
template
<
size_t
axis
>
const
size_t
shape
()
const
{
return
shape_
[
axis
];
}
const
size_t
shape
()
const
{
return
shape_
[
axis
];
}
...
@@ -92,11 +102,19 @@ public:
...
@@ -92,11 +102,19 @@ public:
template
<
typename
...
Idx
>
template
<
typename
...
Idx
>
size_t
index
(
Idx
...
idxs
)
const
size_t
index
(
Idx
...
idxs
)
const
{
{
static_assert
(
sizeof
...(
idxs
)
==
NDim
,
"number of indices must equal the number of dimensions"
);
const
std
::
array
<
size_t
,
NDim
>
m
{
idxs
...};
const
std
::
array
<
size_t
,
NDim
>
m
{
idxs
...};
size_t
idx
=
offset_
;
size_t
idx
=
offset_
;
for
(
size_t
i
=
0
;
i
<
NDim
;
++
i
)
for
(
size_t
i
=
0
;
i
<
NDim
;
++
i
)
{
idx
+=
stride_
[
i
]
*
m
[
i
];
idx
+=
stride_
[
i
]
*
m
[
i
];
#ifndef NO_BOUNDS_CHECK
if
(
m
[
i
]
>=
shape_
[
i
])
throw
std
::
out_of_range
(
"index out of bounds"
);
#endif
}
return
idx
;
return
idx
;
}
}
...
...
This diff is collapsed.
Click to expand it.
src/common.hpp
+
0
−
2
View file @
760c46e8
#ifndef COMMON_HPP_
#ifndef COMMON_HPP_
#define COMMON_HPP_
#define COMMON_HPP_
#include
<array>
#include
<tuple>
#include
<iostream>
#include
<iostream>
#include
<cppad/cppad.hpp>
#include
<cppad/cppad.hpp>
...
...
This diff is collapsed.
Click to expand it.
src/main.cpp
+
3
−
3
View file @
760c46e8
...
@@ -4,10 +4,10 @@
...
@@ -4,10 +4,10 @@
int
main
()
int
main
()
{
{
std
::
vector
<
doub
le
>
v
(
2
*
2
*
2
);
std
::
vector
<
ADComp
le
x
>
v
(
2
*
2
*
2
);
Array
<
doub
le
,
3
>
Q
(
v
,{
2
,
2
,
2
});
Array
<
ADComp
le
x
,
3
>
Q
(
v
,{
2
,
2
,
2
});
S_2
(
Q
.
slice
<
3
>
());
S_2
(
Q
.
slice
<
2
>
());
for
(
size_t
i
=
0
;
i
<
Q
.
shape
<
0
>
();
++
i
)
{
for
(
size_t
i
=
0
;
i
<
Q
.
shape
<
0
>
();
++
i
)
{
for
(
size_t
j
=
0
;
j
<
Q
.
shape
<
1
>
();
++
j
)
{
for
(
size_t
j
=
0
;
j
<
Q
.
shape
<
1
>
();
++
j
)
{
...
...
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