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
f2e462c7
Commit
f2e462c7
authored
Apr 01, 2019
by
pruthvi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix style error
parent
9b70a473
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
aligned_buffer.cpp
src/ngraph/runtime/aligned_buffer.cpp
+2
-2
backend.hpp
src/ngraph/runtime/backend.hpp
+2
-2
No files found.
src/ngraph/runtime/aligned_buffer.cpp
View file @
f2e462c7
...
...
@@ -23,9 +23,9 @@
using
namespace
ngraph
;
runtime
::
AlignedBuffer
::
AlignedBuffer
()
:
m_allocated_buffer
(
nullptr
)
:
m_allocator
(
nullptr
)
,
m_allocated_buffer
(
nullptr
)
,
m_aligned_buffer
(
nullptr
)
,
m_allocator
(
nullptr
)
,
m_byte_size
(
0
)
{
}
...
...
src/ngraph/runtime/backend.hpp
View file @
f2e462c7
...
...
@@ -123,8 +123,8 @@ public:
// \param op_name is the name of the backend specific op
// \returns a shared pointer to the op if found, else nullptr
virtual
std
::
shared_ptr
<
ngraph
::
Node
>
get_backend_op
(
const
std
::
string
&
op_name
,
...);
/// \brief method which returns the framework passed memory allocator
/// \brief method which returns the framework passed memory allocator
virtual
std
::
shared_ptr
<
ngraph
::
runtime
::
Allocator
>
get_framework_memory_allocator
();
/// \brief method for the framework to set its memory allocator object in the backend.
...
...
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