Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Martin Reinecke
ducc
Commits
6d45cc1d
Commit
6d45cc1d
authored
Jun 25, 2020
by
Martin Reinecke
Browse files
try to conserve mpre memory
parent
bdd5468c
Pipeline
#77284
passed with stages
in 12 minutes and 59 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
python/totalconvolve.h
View file @
6d45cc1d
...
...
@@ -220,9 +220,13 @@ template<typename T> class Interpolator
mapper
[
itheta
*
ncp
+
iphi
].
push_back
(
i
);
}
size_t
cnt
=
0
;
for
(
const
auto
&
vec
:
mapper
)
for
(
auto
&
vec
:
mapper
)
{
for
(
auto
i
:
vec
)
idx
[
cnt
++
]
=
i
;
vec
.
clear
();
vec
.
shrink_to_fit
();
}
return
idx
;
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment