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
8afccd76
Commit
8afccd76
authored
1 year ago
by
Cyril Moineau
Browse files
Options
Downloads
Patches
Plain Diff
[PyBind] Remove env variable and use Py_IsInitialized() function.
parent
610ef01a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/aidge/utils/Registrar.hpp
+2
-2
2 additions, 2 deletions
include/aidge/utils/Registrar.hpp
python_binding/pybind_core.cpp
+0
-6
0 additions, 6 deletions
python_binding/pybind_core.cpp
with
2 additions
and
8 deletions
include/aidge/utils/Registrar.hpp
+
2
−
2
View file @
8afccd76
...
@@ -35,7 +35,7 @@ public:
...
@@ -35,7 +35,7 @@ public:
{
{
#ifdef PYBIND
#ifdef PYBIND
#define _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
if
(
std
::
getenv
(
"AIDGE_CORE_WITH_PYBIND"
)){
if
(
Py_IsInitialized
(
)){
std
::
string
name
=
std
::
string
(
"registrar_"
)
+
typeid
(
Registrable
<
DerivedClass
,
Key
,
Func
>
).
name
();
std
::
string
name
=
std
::
string
(
"registrar_"
)
+
typeid
(
Registrable
<
DerivedClass
,
Key
,
Func
>
).
name
();
static
auto
shared_data
=
reinterpret_cast
<
std
::
map
<
Key
,
std
::
function
<
Func
>>
*>
(
py
::
get_shared_data
(
name
));
static
auto
shared_data
=
reinterpret_cast
<
std
::
map
<
Key
,
std
::
function
<
Func
>>
*>
(
py
::
get_shared_data
(
name
));
if
(
!
shared_data
)
if
(
!
shared_data
)
...
@@ -73,4 +73,4 @@ struct Registrar {
...
@@ -73,4 +73,4 @@ struct Registrar {
};
};
}
}
#endif //AIDGE_CORE_UTILS_REGISTRAR_H_
#endif //AIDGE_CORE_UTILS_REGISTRAR_H_
\ No newline at end of file
This diff is collapsed.
Click to expand it.
python_binding/pybind_core.cpp
+
0
−
6
View file @
8afccd76
...
@@ -48,14 +48,8 @@ void init_Recipies(py::module&);
...
@@ -48,14 +48,8 @@ void init_Recipies(py::module&);
void
init_Scheduler
(
py
::
module
&
);
void
init_Scheduler
(
py
::
module
&
);
void
init_TensorUtils
(
py
::
module
&
);
void
init_TensorUtils
(
py
::
module
&
);
void
set_python_flag
(){
// Set an env variable to know if we run with ypthon or cpp
py
::
module
os_module
=
py
::
module
::
import
(
"os"
);
os_module
.
attr
(
"environ"
)[
"AIDGE_CORE_WITH_PYBIND"
]
=
"1"
;
}
void
init_Aidge
(
py
::
module
&
m
){
void
init_Aidge
(
py
::
module
&
m
){
set_python_flag
();
init_Data
(
m
);
init_Data
(
m
);
init_Tensor
(
m
);
init_Tensor
(
m
);
...
...
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