Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-xt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ag-ohlberger
dune-community
dune-xt
Commits
8cd3178f
Commit
8cd3178f
authored
4 years ago
by
Dr. Felix Tobias Schindler
Browse files
Options
Downloads
Patches
Plain Diff
fix previous merge
parent
69b56d3d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!41
Fix compilation with icc, several other changes
,
!39
Make functions copyable
,
!35
dailywork-ftschindler
Pipeline
#63820
failed
4 years ago
Stage: images
Stage: cpp
Stage: python
Stage: headercheck
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
python/dune/xt/la/container/matrix-interface.hh
+0
-2
0 additions, 2 deletions
python/dune/xt/la/container/matrix-interface.hh
python/dune/xt/la/container/vector-interface.hh
+0
-1
0 additions, 1 deletion
python/dune/xt/la/container/vector-interface.hh
with
0 additions
and
3 deletions
python/dune/xt/la/container/matrix-interface.hh
+
0
−
2
View file @
8cd3178f
...
@@ -97,8 +97,6 @@ auto bind_Matrix(pybind11::module& m)
...
@@ -97,8 +97,6 @@ auto bind_Matrix(pybind11::module& m)
py
::
class_
<
C
>
c
=
bind_ProvidesDataAccess
<
C
>
(
m
,
ClassName
,
ClassName
);
py
::
class_
<
C
>
c
=
bind_ProvidesDataAccess
<
C
>
(
m
,
ClassName
,
ClassName
);
addbind_ProvidesBackend
(
c
);
internal
::
addbind_Matrix
<
C
,
sparse
>::
template
ctor
<
S
>(
c
);
internal
::
addbind_Matrix
<
C
,
sparse
>::
template
ctor
<
S
>(
c
);
c
.
def
(
py
::
init
([](
const
ssize_t
rows
,
const
ssize_t
cols
,
const
SparsityPatternDefault
&
pattern
)
{
c
.
def
(
py
::
init
([](
const
ssize_t
rows
,
const
ssize_t
cols
,
const
SparsityPatternDefault
&
pattern
)
{
return
new
C
(
Common
::
numeric_cast
<
size_t
>
(
rows
),
Common
::
numeric_cast
<
size_t
>
(
cols
),
pattern
);
return
new
C
(
Common
::
numeric_cast
<
size_t
>
(
rows
),
Common
::
numeric_cast
<
size_t
>
(
cols
),
pattern
);
...
...
This diff is collapsed.
Click to expand it.
python/dune/xt/la/container/vector-interface.hh
+
0
−
1
View file @
8cd3178f
...
@@ -46,7 +46,6 @@ auto bind_Vector(pybind11::module& m)
...
@@ -46,7 +46,6 @@ auto bind_Vector(pybind11::module& m)
const
auto
ClassName
=
Common
::
to_camel_case
(
bindings
::
container_name
<
C
>::
value
());
const
auto
ClassName
=
Common
::
to_camel_case
(
bindings
::
container_name
<
C
>::
value
());
py
::
class_
<
C
>
c
=
bind_ProvidesDataAccess
<
C
>
(
m
,
ClassName
,
ClassName
);
py
::
class_
<
C
>
c
=
bind_ProvidesDataAccess
<
C
>
(
m
,
ClassName
,
ClassName
);
addbind_ProvidesBackend
(
c
);
c
.
def
(
py
::
init
([](
const
ssize_t
size
,
const
S
&
value
)
{
return
new
C
(
Common
::
numeric_cast
<
size_t
>
(
size
),
value
);
}),
c
.
def
(
py
::
init
([](
const
ssize_t
size
,
const
S
&
value
)
{
return
new
C
(
Common
::
numeric_cast
<
size_t
>
(
size
),
value
);
}),
"size"
_a
=
0
,
"size"
_a
=
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