Commit f2e462c7 authored by pruthvi's avatar pruthvi

fix style error

parent 9b70a473
......@@ -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)
{
}
......
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment