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
b5723823
Commit
b5723823
authored
2 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
core: add allocator for Eigen::Tensor
parent
c7445082
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/eigenpy/numpy-allocator.hpp
+19
-2
19 additions, 2 deletions
include/eigenpy/numpy-allocator.hpp
with
19 additions
and
2 deletions
include/eigenpy/numpy-allocator.hpp
+
19
−
2
View file @
b5723823
/*
* Copyright 2020-202
2
INRIA
* Copyright 2020-202
3
INRIA
*/
#ifndef __eigenpy_numpy_allocator_hpp__
#define __eigenpy_numpy_allocator_hpp__
#include
"eigenpy/eigen-allocator.hpp"
#include
"eigenpy/fwd.hpp"
#include
"eigenpy/eigen-allocator.hpp"
#include
"eigenpy/numpy-type.hpp"
#include
"eigenpy/register.hpp"
...
...
@@ -29,6 +29,23 @@ struct NumpyAllocator {
return
pyArray
;
}
#ifdef EIGENPY_WITH_TENSOR_SUPPORT
template
<
typename
Scalar
,
int
Rank
,
int
Options
,
typename
IndexType
>
static
PyArrayObject
*
allocate
(
const
Eigen
::
Tensor
<
Scalar
,
Rank
,
Options
,
IndexType
>
&
tensor
,
npy_intp
nd
,
npy_intp
*
shape
)
{
typedef
Eigen
::
Tensor
<
Scalar
,
Rank
,
Options
,
IndexType
>
Tensor
;
const
int
code
=
Register
::
getTypeCode
<
Scalar
>
();
PyArrayObject
*
pyArray
=
(
PyArrayObject
*
)
call_PyArray_SimpleNew
(
static_cast
<
int
>
(
nd
),
shape
,
code
);
// Copy data
EigenAllocator
<
Tensor
>::
copy
(
tensor
,
pyArray
);
return
pyArray
;
}
#endif
};
template
<
typename
MatType
>
...
...
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