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
69f3729c
Commit
69f3729c
authored
May 07, 2020
by
Martin Reinecke
Browse files
more fixes
parent
71d4e9ee
Pipeline
#74464
passed with stages
in 9 minutes and 1 second
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
pysharp/pysharp.cc
View file @
69f3729c
...
...
@@ -263,7 +263,7 @@ py::array py_upsample_to_cc(const py::array &in, size_t nrings_out, bool has_np,
auto
out2
=
to_mav
<
double
,
2
>
(
out
,
true
);
MR_assert
(
out2
.
writable
(),
"x1"
);
upsample_to_cc
(
in2
,
has_np
,
has_sp
,
out2
);
return
out
;
return
move
(
out
)
;
}
}
// unnamed namespace
...
...
src/mr_util/sharp/sharp.h
View file @
69f3729c
...
...
@@ -67,7 +67,7 @@ class sharp_geom_info
class
sharp_alm_info
{
public:
~
sharp_alm_info
()
{}
virtual
~
sharp_alm_info
()
{}
virtual
size_t
lmax
()
const
=
0
;
virtual
size_t
mmax
()
const
=
0
;
virtual
size_t
nm
()
const
=
0
;
...
...
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