Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
aidge_core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Cyril Moineau
aidge_core
Commits
ba4f14bc
Commit
ba4f14bc
authored
1 year ago
by
Maxence Naud
Browse files
Options
Downloads
Patches
Plain Diff
[Fix] add getAttr function for const ref to Operator
parent
b0a7acb8
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/aidge/utils/StaticAttributes.hpp
+33
-2
33 additions, 2 deletions
include/aidge/utils/StaticAttributes.hpp
with
33 additions
and
2 deletions
include/aidge/utils/StaticAttributes.hpp
+
33
−
2
View file @
ba4f14bc
...
@@ -22,8 +22,8 @@
...
@@ -22,8 +22,8 @@
namespace
Aidge
{
namespace
Aidge
{
/**
/**
* @brief This class is designed to handle static attributes (i.e. known at compile-time)
* @brief This class is designed to handle static attributes (i.e. known at compile-time)
* with named accessors, with minimal overhead (the name strings are not stored in each object
* with named accessors, with minimal overhead (the name strings are not stored in each object
* instance and it remains possible to access attribute without overhead at compile-time).
* instance and it remains possible to access attribute without overhead at compile-time).
*/
*/
template
<
class
ATTRS_ENUM
,
class
...
T
>
template
<
class
ATTRS_ENUM
,
class
...
T
>
...
@@ -97,6 +97,17 @@ public:
...
@@ -97,6 +97,17 @@ public:
AIDGE_THROW_OR_ABORT
(
std
::
runtime_error
,
"attribute
\"
%s
\"
not found"
,
name
);
AIDGE_THROW_OR_ABORT
(
std
::
runtime_error
,
"attribute
\"
%s
\"
not found"
,
name
);
}
}
template
<
typename
R
>
const
R
&
getAttr
(
const
char
*
name
)
const
{
for
(
std
::
size_t
i
=
0
;
i
<
size
(
EnumStrings
<
ATTRS_ENUM
>::
data
);
++
i
)
{
if
(
strcmp
(
EnumStrings
<
ATTRS_ENUM
>::
data
[
i
],
name
)
==
0
)
{
return
getAttr
<
R
>
(
i
);
}
}
AIDGE_THROW_OR_ABORT
(
std
::
runtime_error
,
"attribute
\"
%s
\"
not found"
,
name
);
}
template
<
typename
R
,
std
::
size_t
SIZE
=
std
::
tuple_size
<
std
::
tuple
<
T
...>
>::
value
>
template
<
typename
R
,
std
::
size_t
SIZE
=
std
::
tuple_size
<
std
::
tuple
<
T
...>
>::
value
>
typename
std
::
enable_if
<
(
SIZE
>
0
),
R
&>::
type
getAttr
(
std
::
size_t
i
)
{
typename
std
::
enable_if
<
(
SIZE
>
0
),
R
&>::
type
getAttr
(
std
::
size_t
i
)
{
if
(
i
==
SIZE
-
1
)
{
if
(
i
==
SIZE
-
1
)
{
...
@@ -117,6 +128,26 @@ public:
...
@@ -117,6 +128,26 @@ public:
AIDGE_THROW_OR_ABORT
(
std
::
runtime_error
,
"attribute not found"
);
AIDGE_THROW_OR_ABORT
(
std
::
runtime_error
,
"attribute not found"
);
}
}
template
<
typename
R
,
std
::
size_t
SIZE
=
std
::
tuple_size
<
std
::
tuple
<
T
...>
>::
value
>
typename
std
::
enable_if
<
(
SIZE
>
0
),
const
R
&>::
type
getAttr
(
std
::
size_t
i
)
const
{
if
(
i
==
SIZE
-
1
)
{
if
(
std
::
is_same
<
R
,
typename
std
::
tuple_element
<
SIZE
-
1
,
std
::
tuple
<
T
...
>>::
type
>::
value
)
{
return
reinterpret_cast
<
const
R
&>
(
std
::
get
<
SIZE
-
1
>
(
mAttrs
));
}
else
{
AIDGE_THROW_OR_ABORT
(
std
::
runtime_error
,
"wrong type for attribute with index %lu"
,
i
);
}
}
else
{
return
getAttr
<
R
,
SIZE
-
1
>
(
i
);
}
}
template
<
typename
R
,
std
::
size_t
SIZE
=
std
::
tuple_size
<
std
::
tuple
<
T
...>
>::
value
>
[[
noreturn
]]
typename
std
::
enable_if
<
(
SIZE
==
0
),
const
R
&>::
type
getAttr
(
std
::
size_t
/*i*/
)
const
{
AIDGE_THROW_OR_ABORT
(
std
::
runtime_error
,
"attribute not found"
);
}
template
<
std
::
size_t
SIZE
=
std
::
tuple_size
<
std
::
tuple
<
T
...>
>::
value
>
template
<
std
::
size_t
SIZE
=
std
::
tuple_size
<
std
::
tuple
<
T
...>
>::
value
>
constexpr
typename
std
::
enable_if
<
(
SIZE
>
0
),
const
std
::
type_info
&>::
type
getAttrType
(
std
::
size_t
i
)
const
{
constexpr
typename
std
::
enable_if
<
(
SIZE
>
0
),
const
std
::
type_info
&>::
type
getAttrType
(
std
::
size_t
i
)
const
{
if
(
i
==
SIZE
-
1
)
{
if
(
i
==
SIZE
-
1
)
{
...
...
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