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
690ecfe9
Unverified
Commit
690ecfe9
authored
Aug 01, 2019
by
Adam Procter
Committed by
GitHub
Aug 01, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix deprecation messages
parent
23f838e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
broadcasting.hpp
src/ngraph/op/util/broadcasting.hpp
+3
-3
No files found.
src/ngraph/op/util/broadcasting.hpp
View file @
690ecfe9
...
...
@@ -33,7 +33,7 @@ namespace ngraph
///
/// \return Numpy-style broadcasted list of nodes.
NodeVector
numpy_style_broadcast
(
const
NodeVector
&
inputs
)
NGRAPH_DEPRECATED
(
"Replace with numpy_style_
value_broadcast
"
);
NGRAPH_DEPRECATED
(
"Replace with numpy_style_
broadcast_values
"
);
/// \brief Cast shape of all input nodes for an element-wise operation that requires shape-compatibility
///
...
...
@@ -68,7 +68,7 @@ namespace ngraph
NodeVector
legacy_style_broadcast_for_binary_operation
(
const
std
::
shared_ptr
<
Node
>&
left
,
const
std
::
shared_ptr
<
Node
>&
right
,
size_t
start_match_axis
)
NGRAPH_DEPRECATED
(
"Replace with legacy_style_
value_broadcast
_for_binary_operation"
);
NGRAPH_DEPRECATED
(
"Replace with legacy_style_
broadcast_values
_for_binary_operation"
);
/// \brief Cast shape of two outputs to make them compatible for an element-wise binary operation.
///
...
...
@@ -103,7 +103,7 @@ namespace ngraph
///
NodeVector
numpy_style_broadcast_for_matmul_operation
(
const
std
::
shared_ptr
<
Node
>&
left
,
const
std
::
shared_ptr
<
Node
>&
right
)
NGRAPH_DEPRECATED
(
"Replace with numpy_style_broadcast_value_for_matmul_operation."
);
NGRAPH_DEPRECATED
(
"Replace with numpy_style_broadcast_value
s
_for_matmul_operation."
);
/// \brief Broadcast shape of two nodes to make them compatible for a matrix multiplication.
///
...
...
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