Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
6d32d4fc
Commit
6d32d4fc
authored
Nov 06, 2017
by
Jaikrishnan Menon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CPU: Disable __cxa_atexit usage for calling destructors
and remove need for the dso_handle symbol
parent
cf3bae10
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
1 deletion
+1
-1
compiler.cpp
src/ngraph/codegen/compiler.cpp
+1
-0
external_function.cpp
src/ngraph/runtime/cpu/external_function.cpp
+0
-1
No files found.
src/ngraph/codegen/compiler.cpp
View file @
6d32d4fc
...
@@ -154,6 +154,7 @@ std::unique_ptr<llvm::Module> execution_state::compile(const string& source, con
...
@@ -154,6 +154,7 @@ std::unique_ptr<llvm::Module> execution_state::compile(const string& source, con
CGO
.
OmitLeafFramePointer
=
1
;
CGO
.
OmitLeafFramePointer
=
1
;
CGO
.
VectorizeLoop
=
1
;
CGO
.
VectorizeLoop
=
1
;
CGO
.
VectorizeSLP
=
1
;
CGO
.
VectorizeSLP
=
1
;
CGO
.
CXAAtExit
=
0
;
if
(
debuginfo_enabled
)
if
(
debuginfo_enabled
)
{
{
...
...
src/ngraph/runtime/cpu/external_function.cpp
View file @
6d32d4fc
...
@@ -225,7 +225,6 @@ using namespace ngraph::element;
...
@@ -225,7 +225,6 @@ using namespace ngraph::element;
using namespace ngraph::runtime;
using namespace ngraph::runtime;
using namespace ngraph::runtime::cpu::eigen;
using namespace ngraph::runtime::cpu::eigen;
void *__dso_handle = 0;
extern "C" void __entrypoint(ngraph::runtime::cpu::CallFrame* call_frame,
extern "C" void __entrypoint(ngraph::runtime::cpu::CallFrame* call_frame,
ngraph::runtime::TensorViewPtrs& tensor_views,
ngraph::runtime::TensorViewPtrs& tensor_views,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment