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
787e93a4
Commit
787e93a4
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
array: move asserts to right place
parent
53ed2f1d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/array.hpp
+3
-6
3 additions, 6 deletions
src/array.hpp
src/main.cpp
+2
-2
2 additions, 2 deletions
src/main.cpp
with
5 additions
and
8 deletions
src/array.hpp
+
3
−
6
View file @
787e93a4
...
...
@@ -99,10 +99,7 @@ namespace detail
}
public
:
fixed_base
()
{
static_assert
(
Shape
::
fixed
,
"array shape must be compile-time fixed"
);
}
fixed_base
()
{}
constexpr
size_t
dim
(
size_t
i
)
const
{
return
Shape
::
dim
(
i
);
}
constexpr
size_t
stride
(
size_t
i
)
const
{
return
Shape
::
stride
(
i
);
}
...
...
@@ -140,8 +137,6 @@ namespace detail
dynamic_base
(
const
std
::
array
<
size_t
,
Shape
::
ndim
>
shape
)
:
shape_
(
shape
)
{
static_assert
(
!
Shape
::
fixed
,
"array shape must not be compile-time fixed"
);
for
(
size_t
i
=
Shape
::
ndim
;
i
>
0
;
--
i
)
{
if
(
Shape
::
stride
(
i
-
1
)
!=
Dynamic
)
strides_
[
i
-
1
]
=
Shape
::
stride
(
i
-
1
);
...
...
@@ -205,12 +200,14 @@ public:
Array
(
Scalar
*
data
,
size_t
size
,
const
std
::
array
<
size_t
,
Shape
::
ndim
>
shape
)
:
Base
(
shape
),
data_
(
data
)
{
static_assert
(
!
Shape
::
fixed
,
"array shape must not be compile-time fixed"
);
Base
::
data_bounds_check
(
size
);
}
Array
(
Scalar
*
data
,
size_t
size
)
:
Base
(),
data_
(
data
)
{
static_assert
(
Shape
::
fixed
,
"array shape must be compile-time fixed"
);
Base
::
data_bounds_check
(
size
);
}
...
...
This diff is collapsed.
Click to expand it.
src/main.cpp
+
2
−
2
View file @
787e93a4
...
...
@@ -24,8 +24,8 @@ void dump(Array<Scalar,Shape> Q)
int
main
()
{
std
::
vector
<
double
>
v
(
7
*
2
*
2
*
2
);
Array
<
double
,
Shape
<
Dynamic
,
Dynamic
,
2
,
2
>
>
Q0
(
v
.
data
(),
v
.
size
(),
{
7
,
2
,
2
,
2
});
std
::
vector
<
double
>
v
(
1
*
2
*
2
*
2
);
Array
<
double
,
Shape
<
Dynamic
,
Dynamic
,
2
,
2
>
>
Q0
(
v
.
data
(),
v
.
size
(),
{
1
,
2
,
2
,
2
});
auto
Q
=
Q0
.
part
(
0u
,
1u
);
S_2
(
Q
);
...
...
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