Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Stack Of Tasks
eigenpy
Commits
c506bed8
Verified
Commit
c506bed8
authored
2 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
core: fix type
parent
bbb129d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#18399
passed with warnings
2 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/eigenpy/numpy.hpp
+3
-3
3 additions, 3 deletions
include/eigenpy/numpy.hpp
src/numpy.cpp
+1
-1
1 addition, 1 deletion
src/numpy.cpp
with
4 additions
and
4 deletions
include/eigenpy/numpy.hpp
+
3
−
3
View file @
c506bed8
...
...
@@ -111,8 +111,8 @@ EIGENPY_DLLAPI PyObject* call_PyArray_New(PyTypeObject* py_type_ptr, int nd,
EIGENPY_DLLAPI
PyObject
*
call_PyArray_New
(
PyTypeObject
*
py_type_ptr
,
int
nd
,
npy_intp
*
shape
,
int
np_type
,
npy_intp
const
*
strides
,
void
*
data_ptr
,
int
options
);
npy_intp
*
strides
,
void
*
data_ptr
,
int
options
);
EIGENPY_DLLAPI
int
call_PyArray_ObjectType
(
PyObject
*
,
int
);
...
...
@@ -150,7 +150,7 @@ inline PyObject* call_PyArray_New(PyTypeObject* py_type_ptr, int nd,
inline
PyObject
*
call_PyArray_New
(
PyTypeObject
*
py_type_ptr
,
int
nd
,
npy_intp
*
shape
,
int
np_type
,
npy_intp
const
*
strides
,
void
*
data_ptr
,
npy_intp
*
strides
,
void
*
data_ptr
,
int
options
)
{
return
PyArray_New
(
py_type_ptr
,
nd
,
shape
,
np_type
,
strides
,
data_ptr
,
0
,
options
,
NULL
);
...
...
This diff is collapsed.
Click to expand it.
src/numpy.cpp
+
1
−
1
View file @
c506bed8
...
...
@@ -32,7 +32,7 @@ PyObject* call_PyArray_New(PyTypeObject* py_type_ptr, int nd, npy_intp* shape,
}
PyObject
*
call_PyArray_New
(
PyTypeObject
*
py_type_ptr
,
int
nd
,
npy_intp
*
shape
,
int
np_type
,
npy_intp
const
*
strides
,
void
*
data_ptr
,
int
np_type
,
npy_intp
*
strides
,
void
*
data_ptr
,
int
options
)
{
return
PyArray_New
(
py_type_ptr
,
nd
,
shape
,
np_type
,
strides
,
data_ptr
,
0
,
options
,
NULL
);
...
...
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