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
c405c3bc
Commit
c405c3bc
authored
Jan 31, 2018
by
Jaikrishnan Menon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WIP
parent
93a2efda
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
39 additions
and
15 deletions
+39
-15
cpu_backend.cpp
src/ngraph/runtime/cpu/cpu_backend.cpp
+2
-2
cpu_call_frame.cpp
src/ngraph/runtime/cpu/cpu_call_frame.cpp
+5
-5
cpu_tensor_view.cpp
src/ngraph/runtime/cpu/cpu_tensor_view.cpp
+22
-7
cpu_tensor_view.hpp
src/ngraph/runtime/cpu/cpu_tensor_view.hpp
+2
-0
tensor_view.cpp
src/ngraph/runtime/tensor_view.cpp
+5
-0
tensor_view.hpp
src/ngraph/runtime/tensor_view.hpp
+2
-0
test_tools.hpp
test/util/test_tools.hpp
+1
-1
No files found.
src/ngraph/runtime/cpu/cpu_backend.cpp
View file @
c405c3bc
...
...
@@ -15,7 +15,7 @@
#include "ngraph/runtime/cpu/cpu_backend.hpp"
#include "ngraph/log.hpp"
#include "ngraph/runtime/external_function.hpp"
#include "ngraph/runtime/
host
_tensor_view.hpp"
#include "ngraph/runtime/
cpu/cpu
_tensor_view.hpp"
using
namespace
ngraph
;
using
namespace
std
;
...
...
@@ -30,6 +30,6 @@ std::shared_ptr<ngraph::runtime::TensorView>
runtime
::
cpu
::
CPU_Backend
::
make_primary_tensor_view
(
const
ngraph
::
element
::
Type
&
element_type
,
const
Shape
&
shape
)
{
auto
rc
=
make_shared
<
runtime
::
Host
TensorView
>
(
element_type
,
shape
);
auto
rc
=
make_shared
<
runtime
::
cpu
::
CPU
TensorView
>
(
element_type
,
shape
);
return
dynamic_pointer_cast
<
runtime
::
TensorView
>
(
rc
);
}
src/ngraph/runtime/cpu/cpu_call_frame.cpp
View file @
c405c3bc
...
...
@@ -16,7 +16,7 @@
#include "ngraph/runtime/cpu/cpu_call_frame.hpp"
#include "ngraph/runtime/cpu/cpu_external_function.hpp"
#include "ngraph/runtime/
host
_tensor_view.hpp"
#include "ngraph/runtime/
cpu/cpu
_tensor_view.hpp"
using
namespace
std
;
using
namespace
ngraph
;
...
...
@@ -36,14 +36,14 @@ void runtime::cpu::CPU_CallFrame::tensor_call(
vector
<
void
*>
outputs
;
for
(
size_t
i
=
0
;
i
<
input_tvs
.
size
();
i
++
)
{
shared_ptr
<
runtime
::
Host
TensorView
>
tv
=
static_pointer_cast
<
runtime
::
Host
TensorView
>
(
input_tvs
[
i
]);
shared_ptr
<
runtime
::
cpu
::
CPU
TensorView
>
tv
=
static_pointer_cast
<
runtime
::
cpu
::
CPU
TensorView
>
(
input_tvs
[
i
]);
inputs
.
push_back
(
tv
->
get_data_ptr
());
}
for
(
size_t
i
=
0
;
i
<
output_tvs
.
size
();
i
++
)
{
shared_ptr
<
runtime
::
Host
TensorView
>
tv
=
static_pointer_cast
<
runtime
::
Host
TensorView
>
(
output_tvs
[
i
]);
shared_ptr
<
runtime
::
cpu
::
CPU
TensorView
>
tv
=
static_pointer_cast
<
runtime
::
cpu
::
CPU
TensorView
>
(
output_tvs
[
i
]);
outputs
.
push_back
(
tv
->
get_data_ptr
());
}
...
...
src/ngraph/runtime/cpu/cpu_tensor_view.cpp
View file @
c405c3bc
...
...
@@ -15,13 +15,20 @@
#include <cstring>
#include <memory>
#include "cpu_tensor_view.hpp"
#include "ngraph/except.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/descriptor/layout/tensor_view_layout.hpp"
#include "ngraph/descriptor/primary_tensor_view.hpp"
#include "cpu_tensor_view.hpp"
using
namespace
ngraph
;
using
namespace
std
;
// TODO(jmenon): Refactor all the alignment specifications into
// a single place and allow lower or no alignment when possible
const
size_t
runtime
::
cpu
::
CPUTensorView
::
BufferAlignment
=
64
;
runtime
::
cpu
::
CPUTensorView
::
CPUTensorView
(
const
ngraph
::
element
::
Type
&
element_type
,
const
Shape
&
shape
,
const
string
&
name
)
...
...
@@ -30,6 +37,19 @@ runtime::cpu::CPUTensorView::CPUTensorView(const ngraph::element::Type& element_
,
buffer
(
nullptr
)
,
aligned_buffer
(
nullptr
)
{
buffer_size
=
shape_size
(
shape
)
*
element_type
.
size
();
if
(
buffer_size
)
{
size_t
allocation_size
=
buffer_size
+
BufferAlignment
;
auto
ptr
=
malloc
(
allocation_size
);
if
(
!
ptr
)
{
throw
ngraph_error
(
"Error allocating CPU Tensor View memory"
);
}
buffer
=
static_cast
<
char
*>
(
ptr
);
std
::
align
(
BufferAlignment
,
buffer_size
,
ptr
,
allocation_size
);
aligned_buffer
=
static_cast
<
char
*>
(
ptr
);
}
}
runtime
::
cpu
::
CPUTensorView
::~
CPUTensorView
()
...
...
@@ -69,10 +89,5 @@ void runtime::cpu::CPUTensorView::read(void* target, size_t tensor_offset, size_
size_t
runtime
::
cpu
::
CPUTensorView
::
get_size
()
const
{
return
get_tensor_view_layout
()
->
get_size
();
}
const
element
::
Type
&
runtime
::
cpu
::
CPUTensorView
::
get_element_type
()
const
{
return
get_tensor_view_layout
()
->
get_element_type
();
return
get_element_count
();
}
src/ngraph/runtime/cpu/cpu_tensor_view.hpp
View file @
c405c3bc
...
...
@@ -52,6 +52,8 @@ namespace ngraph
void
read
(
void
*
p
,
size_t
tensor_offset
,
size_t
n
)
const
override
;
private
:
static
const
size_t
BufferAlignment
;
char
*
buffer
;
char
*
aligned_buffer
;
size_t
buffer_size
;
...
...
src/ngraph/runtime/tensor_view.cpp
View file @
c405c3bc
...
...
@@ -47,6 +47,11 @@ const Strides& runtime::TensorView::get_strides() const
return
m_descriptor
->
get_tensor_view_layout
()
->
get_strides
();
}
const
element
::
Type
&
runtime
::
TensorView
::
get_element_type
()
const
{
return
m_descriptor
->
get_tensor_view_type
()
->
get_element_type
();
}
shared_ptr
<
descriptor
::
layout
::
TensorViewLayout
>
runtime
::
TensorView
::
get_tensor_view_layout
()
const
{
return
m_descriptor
->
get_tensor_view_layout
();
...
...
src/ngraph/runtime/tensor_view.hpp
View file @
c405c3bc
...
...
@@ -20,6 +20,7 @@
#include "ngraph/descriptor/tensor_view.hpp"
#include "ngraph/shape.hpp"
#include "ngraph/util.hpp"
#include "ngraph/types/element_type.hpp"
namespace
ngraph
{
...
...
@@ -52,6 +53,7 @@ namespace ngraph
const
ngraph
::
Shape
&
get_shape
()
const
;
const
ngraph
::
Strides
&
get_strides
()
const
;
const
ngraph
::
element
::
Type
&
get_element_type
()
const
;
size_t
get_element_count
()
const
;
const
ngraph
::
descriptor
::
Tensor
&
get_tensor
()
const
;
...
...
test/util/test_tools.hpp
View file @
c405c3bc
...
...
@@ -40,7 +40,7 @@ void copy_data(std::shared_ptr<ngraph::runtime::TensorView> tv, const std::vecto
template
<
typename
T
>
std
::
vector
<
T
>
read_vector
(
std
::
shared_ptr
<
ngraph
::
runtime
::
TensorView
>
tv
)
{
if
(
ngraph
::
element
::
from
<
T
>
()
!=
tv
->
get_
tensor_view_layout
()
->
get_
element_type
())
if
(
ngraph
::
element
::
from
<
T
>
()
!=
tv
->
get_element_type
())
{
throw
std
::
invalid_argument
(
"read_vector type must match TensorView type"
);
}
...
...
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