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
73415c5a
Unverified
Commit
73415c5a
authored
Jan 31, 2020
by
Ewa Tusień
Committed by
GitHub
Jan 31, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed missed files. (#4257)
Co-authored-by:
Scott Cyphers
<
diyessi@users.noreply.github.com
>
parent
02a8fa95
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
89 deletions
+0
-89
reciprocal.cpp
src/ngraph/op/fused/reciprocal.cpp
+0
-43
reciprocal.hpp
src/ngraph/op/fused/reciprocal.hpp
+0
-46
No files found.
src/ngraph/op/fused/reciprocal.cpp
deleted
100644 → 0
View file @
02a8fa95
//*****************************************************************************
// Copyright 2017-2020 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/op/fused/reciprocal.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/divide.hpp"
using
namespace
std
;
using
namespace
ngraph
;
constexpr
NodeTypeInfo
op
::
Reciprocal
::
type_info
;
op
::
Reciprocal
::
Reciprocal
(
const
Output
<
Node
>&
data
)
:
FusedOp
({
data
})
{
constructor_validate_and_infer_types
();
}
NodeVector
op
::
Reciprocal
::
decompose_op
()
const
{
auto
data
=
input_value
(
0
);
auto
one_node
=
op
::
Constant
::
create
(
data
.
get_element_type
(),
data
.
get_shape
(),
{
1
});
return
{
make_shared
<
op
::
v1
::
Divide
>
(
one_node
,
data
)};
}
shared_ptr
<
Node
>
op
::
Reciprocal
::
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
{
check_new_args_count
(
this
,
new_args
);
return
make_shared
<
Reciprocal
>
(
new_args
.
at
(
0
));
}
src/ngraph/op/fused/reciprocal.hpp
deleted
100644 → 0
View file @
02a8fa95
//*****************************************************************************
// Copyright 2017-2020 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.
//*****************************************************************************
#pragma once
#include "ngraph/node.hpp"
#include "ngraph/op/op.hpp"
#include "ngraph/op/util/fused_op.hpp"
namespace
ngraph
{
namespace
op
{
/// \brief Reciprocal operation
/// f(x) = 1 / x
class
NGRAPH_API
Reciprocal
:
public
ngraph
::
op
::
util
::
FusedOp
{
public
:
static
constexpr
NodeTypeInfo
type_info
{
"Reciprocal"
,
0
};
const
NodeTypeInfo
&
get_type_info
()
const
override
{
return
type_info
;
}
Reciprocal
()
=
default
;
/// \brief Constructs a Reciprocal operation.
///
/// \param data Input tensor
Reciprocal
(
const
Output
<
Node
>&
data
);
virtual
NodeVector
decompose_op
()
const
override
;
virtual
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
};
}
// namespace op
}
// namespace ngraph
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