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
484c0a0d
Unverified
Commit
484c0a0d
authored
Jan 28, 2019
by
Robert Kimball
Committed by
GitHub
Jan 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add method to Function to get the size of a graph (#2367)
parent
122754c1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
65 additions
and
0 deletions
+65
-0
function.cpp
src/ngraph/function.cpp
+23
-0
function.hpp
src/ngraph/function.hpp
+5
-0
CMakeLists.txt
test/CMakeLists.txt
+1
-0
core.cpp
test/core.cpp
+36
-0
No files found.
src/ngraph/function.cpp
View file @
484c0a0d
...
...
@@ -191,3 +191,26 @@ void Function::replace_node(std::shared_ptr<Node> old, std::shared_ptr<Node> rep
{
ngraph
::
replace_node
(
old
,
repl
);
}
size_t
Function
::
get_graph_size
()
const
{
size_t
total_size
=
0
;
for
(
auto
node
:
get_ops
())
{
total_size
+=
sizeof
(
*
node
);
if
(
node
->
description
()
==
"Constant"
)
{
const
Shape
&
shape
=
node
->
get_outputs
()[
0
].
get_shape
();
size_t
const_size
=
node
->
get_outputs
()[
0
].
get_element_type
().
size
();
if
(
shape
.
size
()
==
0
)
{
total_size
+=
const_size
;
}
else
{
total_size
+=
(
const_size
*
shape_size
(
node
->
get_outputs
()[
0
].
get_shape
()));
}
}
}
return
total_size
;
}
src/ngraph/function.hpp
View file @
484c0a0d
...
...
@@ -85,6 +85,11 @@ namespace ngraph
void
validate_nodes_and_infer_types
();
/// \brief Returns the sum of the size of all nodes in the graph plus the size of
/// all constant data. This has little value beyond comparing the relative size of
/// graphs and should not be considered the actual memory consumption of a graph.
size_t
get_graph_size
()
const
;
protected
:
ResultVector
m_results
;
ParameterVector
m_parameters
;
...
...
test/CMakeLists.txt
View file @
484c0a0d
...
...
@@ -32,6 +32,7 @@ set(SRC
control_dependencies.cpp
coordinate.cpp
copy.cpp
core.cpp
cpio.cpp
cse.cpp
element_type.cpp
...
...
test/core.cpp
0 → 100644
View file @
484c0a0d
//*****************************************************************************
// Copyright 2017-2019 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 "gtest/gtest.h"
#include "ngraph/file_util.hpp"
#include "ngraph/ngraph.hpp"
#include "ngraph/serializer.hpp"
using
namespace
ngraph
;
using
namespace
std
;
TEST
(
core
,
function_size
)
{
const
string
m1
=
file_util
::
path_join
(
SERIALIZED_ZOO
,
"mxnet/mnist_mlp_forward.json"
);
const
string
m2
=
file_util
::
path_join
(
SERIALIZED_ZOO
,
"mxnet/10_bucket_LSTM.json"
);
auto
f1
=
deserialize
(
m1
);
auto
f2
=
deserialize
(
m2
);
auto
s1
=
f1
->
get_graph_size
();
auto
s2
=
f2
->
get_graph_size
();
EXPECT_GT
(
s2
,
s1
);
}
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