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
112e74f2
Commit
112e74f2
authored
Jul 23, 2018
by
Jaikrishnan Menon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CPU Direct Execution: Implement Sigmoid and Sigmoid Backprop
parent
df6424b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
117 additions
and
0 deletions
+117
-0
CMakeLists.txt
src/ngraph/runtime/cpu/CMakeLists.txt
+1
-0
sigmoid.cpp
src/ngraph/runtime/cpu/builder/sigmoid.cpp
+116
-0
No files found.
src/ngraph/runtime/cpu/CMakeLists.txt
View file @
112e74f2
...
...
@@ -45,6 +45,7 @@ set(SRC
builder/reverse_sequence.cpp
builder/select.cpp
builder/select_and_scatter.cpp
builder/sigmoid.cpp
builder/sum.cpp
kernel/eigen_thread_pool.cpp
kernel/pad.cpp
...
...
src/ngraph/runtime/cpu/builder/sigmoid.cpp
0 → 100644
View file @
112e74f2
/*******************************************************************************
* Copyright 2018 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
//#include "ngraph/runtime/cpu/kernel/avg_pool.hpp"
#include "ngraph/op/sigmoid.hpp"
#include "ngraph/runtime/cpu/cpu_builder.hpp"
#include "ngraph/runtime/cpu/mkldnn_invoke.hpp"
#include "ngraph/runtime/cpu/mkldnn_utils.hpp"
using
namespace
std
;
using
namespace
ngraph
;
namespace
ngraph
{
namespace
runtime
{
namespace
cpu
{
template
<>
void
Builder
::
BUILDER_DECL
(
ngraph
::
op
::
Sigmoid
)
{
auto
&
functors
=
external_function
->
get_functors
();
auto
&
tensor_data
=
external_function
->
get_tensor_data
();
auto
&
arg0_tensor
=
tensor_data
[
args
[
0
].
get_name
()];
auto
&
out_tensor
=
tensor_data
[
out
[
0
].
get_name
()];
auto
input_shape
=
args
[
0
].
get_shape
();
auto
out_shape
=
out
[
0
].
get_shape
();
auto
input_size
=
static_cast
<
int
>
(
shape_size
(
input_shape
));
auto
out_size
=
static_cast
<
int
>
(
shape_size
(
out_shape
));
auto
&
mkldnn_emitter
=
external_function
->
get_mkldnn_emitter
();
auto
input_desc
=
mkldnn
::
memory
::
desc
(
{
input_size
},
mkldnn_utils
::
get_mkldnn_data_type
(
args
[
0
].
get_element_type
()),
mkldnn
::
memory
::
format
::
x
);
auto
out_desc
=
mkldnn
::
memory
::
desc
(
{
out_size
},
mkldnn_utils
::
get_mkldnn_data_type
(
out
[
0
].
get_element_type
()),
mkldnn
::
memory
::
format
::
x
);
auto
sigmoid_index
=
mkldnn_emitter
->
build_sigmoid_forward
(
input_desc
,
out_desc
);
auto
&
deps
=
mkldnn_emitter
->
get_primitive_deps
(
sigmoid_index
);
auto
functor
=
[
&
,
sigmoid_index
](
CPURuntimeContext
*
ctx
)
{
cpu
::
mkldnn_utils
::
set_memory_ptr
(
ctx
,
deps
[
0
],
arg0_tensor
);
cpu
::
mkldnn_utils
::
set_memory_ptr
(
ctx
,
deps
[
1
],
out_tensor
);
cpu
::
mkldnn_utils
::
mkldnn_invoke_primitive
(
ctx
,
sigmoid_index
);
};
functors
.
emplace_back
(
functor
);
}
template
<>
void
Builder
::
BUILDER_DECL
(
ngraph
::
op
::
SigmoidBackprop
)
{
auto
&
functors
=
external_function
->
get_functors
();
auto
&
tensor_data
=
external_function
->
get_tensor_data
();
auto
&
arg0_tensor
=
tensor_data
[
args
[
0
].
get_name
()];
auto
&
arg1_tensor
=
tensor_data
[
args
[
1
].
get_name
()];
auto
&
out_tensor
=
tensor_data
[
out
[
0
].
get_name
()];
auto
input_shape
=
args
[
0
].
get_shape
();
auto
delta_shape
=
args
[
1
].
get_shape
();
auto
out_shape
=
out
[
0
].
get_shape
();
int
input_size
=
static_cast
<
int
>
(
shape_size
(
input_shape
));
int
delta_size
=
static_cast
<
int
>
(
shape_size
(
delta_shape
));
int
out_size
=
static_cast
<
int
>
(
shape_size
(
out_shape
));
auto
&
mkldnn_emitter
=
external_function
->
get_mkldnn_emitter
();
auto
input_desc
=
mkldnn
::
memory
::
desc
(
{
input_size
},
mkldnn_utils
::
get_mkldnn_data_type
(
args
[
0
].
get_element_type
()),
mkldnn
::
memory
::
format
::
x
);
auto
delta_desc
=
mkldnn
::
memory
::
desc
(
{
delta_size
},
mkldnn_utils
::
get_mkldnn_data_type
(
args
[
1
].
get_element_type
()),
mkldnn
::
memory
::
format
::
x
);
auto
out_desc
=
mkldnn
::
memory
::
desc
(
{
out_size
},
mkldnn_utils
::
get_mkldnn_data_type
(
out
[
0
].
get_element_type
()),
mkldnn
::
memory
::
format
::
x
);
size_t
sigmoid_index
=
mkldnn_emitter
->
build_sigmoid_backward
(
input_desc
,
delta_desc
,
out_desc
);
auto
&
deps
=
mkldnn_emitter
->
get_primitive_deps
(
sigmoid_index
);
auto
functor
=
[
&
,
sigmoid_index
](
CPURuntimeContext
*
ctx
)
{
cpu
::
mkldnn_utils
::
set_memory_ptr
(
ctx
,
deps
[
0
],
arg0_tensor
);
cpu
::
mkldnn_utils
::
set_memory_ptr
(
ctx
,
deps
[
1
],
arg1_tensor
);
cpu
::
mkldnn_utils
::
set_memory_ptr
(
ctx
,
deps
[
2
],
out_tensor
);
cpu
::
mkldnn_utils
::
mkldnn_invoke_primitive
(
ctx
,
sigmoid_index
);
};
functors
.
emplace_back
(
functor
);
}
REGISTER_OP_BUILDER
(
Sigmoid
);
REGISTER_OP_BUILDER
(
SigmoidBackprop
);
}
}
}
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