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
Guilhem Saurel
eigenpy
Commits
d27dad7c
Verified
Commit
d27dad7c
authored
2 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
core: fix alignement issues for Eigen::Tensor
parent
437e02ef
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/eigenpy/alignment.hpp
+18
-1
18 additions, 1 deletion
include/eigenpy/alignment.hpp
with
18 additions
and
1 deletion
include/eigenpy/alignment.hpp
+
18
−
1
View file @
d27dad7c
/*
/*
* Copyright 2023
,
INRIA
* Copyright 2023 INRIA
*/
*/
#ifndef __eigenpy_alignment_hpp__
#ifndef __eigenpy_alignment_hpp__
...
@@ -67,6 +67,23 @@ struct referent_storage<
...
@@ -67,6 +67,23 @@ struct referent_storage<
typename
eigenpy
::
aligned_storage
<
referent_size
<
T
&>::
value
>::
type
type
;
typename
eigenpy
::
aligned_storage
<
referent_size
<
T
&>::
value
>::
type
type
;
};
};
#ifdef EIGENPY_WITH_TENSOR_SUPPORT
template
<
typename
Scalar
,
int
Rank
,
int
Options
,
typename
IndexType
>
struct
referent_storage
<
Eigen
::
Tensor
<
Scalar
,
Rank
,
Options
,
IndexType
>
&>
{
typedef
Eigen
::
Tensor
<
Scalar
,
Rank
,
Options
,
IndexType
>
T
;
typedef
typename
eigenpy
::
aligned_storage
<
referent_size
<
T
&>::
value
>::
type
type
;
};
template
<
typename
Scalar
,
int
Rank
,
int
Options
,
typename
IndexType
>
struct
referent_storage
<
const
Eigen
::
Tensor
<
Scalar
,
Rank
,
Options
,
IndexType
>
&>
{
typedef
Eigen
::
Tensor
<
Scalar
,
Rank
,
Options
,
IndexType
>
T
;
typedef
typename
eigenpy
::
aligned_storage
<
referent_size
<
T
&>::
value
>::
type
type
;
};
#endif
template
<
typename
Scalar
,
int
Options
>
template
<
typename
Scalar
,
int
Options
>
struct
referent_storage
<
Eigen
::
Quaternion
<
Scalar
,
Options
>
&>
{
struct
referent_storage
<
Eigen
::
Quaternion
<
Scalar
,
Options
>
&>
{
typedef
Eigen
::
Quaternion
<
Scalar
,
Options
>
T
;
typedef
Eigen
::
Quaternion
<
Scalar
,
Options
>
T
;
...
...
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