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
72890154
Commit
72890154
authored
Jun 10, 2019
by
Adam Procter
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master' into aprocter/dyn-slice
parents
3f888583
40c73f54
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
23 additions
and
23 deletions
+23
-23
CMakeLists.txt
CMakeLists.txt
+0
-4
CMakeLists.txt
src/ngraph/CMakeLists.txt
+4
-0
serialize.cpp
src/ngraph/pass/serialize.cpp
+2
-2
cpu_tracing.cpp
src/ngraph/runtime/cpu/cpu_tracing.cpp
+1
-1
cpu_tracing.hpp
src/ngraph/runtime/cpu/cpu_tracing.hpp
+2
-2
serializer.hpp
src/ngraph/serializer.hpp
+1
-1
backend_api.cpp
test/backend_api.cpp
+1
-1
backend_broadcast.in.cpp
test/backend_broadcast.in.cpp
+1
-1
backend_test.in.cpp
test/backend_test.in.cpp
+1
-1
control_dependencies.cpp
test/control_dependencies.cpp
+1
-1
core_fusion.cpp
test/core_fusion.cpp
+1
-1
cpu_fusion.cpp
test/cpu_fusion.cpp
+2
-2
gpu_fusion.cpp
test/gpu_fusion.cpp
+2
-2
reshape_elimination.cpp
test/reshape_elimination.cpp
+1
-1
reshape_sinking.cpp
test/reshape_sinking.cpp
+1
-1
test_tools.cpp
test/util/test_tools.cpp
+1
-1
test_tools.hpp
test/util/test_tools.hpp
+1
-1
No files found.
CMakeLists.txt
View file @
72890154
...
...
@@ -427,10 +427,6 @@ if(NGRAPH_DEPRECATED_ENABLE)
add_definitions
(
-DNGRAPH_DEPRECATED_ENABLE
)
endif
()
if
(
NGRAPH_JSON_ENABLE
)
add_definitions
(
-DNGRAPH_JSON_ENABLE
)
endif
()
add_definitions
(
-DPROJECT_ROOT_DIR=
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
)
#-----------------------------------------------------------------------------------------------
...
...
src/ngraph/CMakeLists.txt
View file @
72890154
...
...
@@ -503,6 +503,10 @@ else()
add_library
(
ngraph SHARED
${
SRC
}
)
endif
()
if
(
NOT NGRAPH_JSON_ENABLE
)
target_compile_definitions
(
ngraph PUBLIC NGRAPH_JSON_DISABLE
)
endif
()
if
(
NGRAPH_DISTRIBUTED_ENABLE
)
if
(
NGRAPH_DISTRIBUTED_MLSL_ENABLE
)
target_include_directories
(
ngraph SYSTEM PRIVATE libmlsl
)
...
...
src/ngraph/pass/serialize.cpp
View file @
72890154
...
...
@@ -19,7 +19,7 @@
#include "ngraph/file_util.hpp"
#include "ngraph/pass/serialize.hpp"
#include "ngraph/util.hpp"
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
#include "ngraph/serializer.hpp"
#include "nlohmann/json.hpp"
#endif
...
...
@@ -34,7 +34,7 @@ pass::Serialization::Serialization(const string& name)
bool
pass
::
Serialization
::
run_on_module
(
vector
<
shared_ptr
<
Function
>>&
functions
)
{
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
// serializing the outermost functions
// also implicitly serializes any inner functions
serialize
(
m_name
,
functions
.
at
(
0
),
4
);
...
...
src/ngraph/runtime/cpu/cpu_tracing.cpp
View file @
72890154
...
...
@@ -19,7 +19,7 @@
#include "cpu_tracing.hpp"
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
void
ngraph
::
runtime
::
cpu
::
to_json
(
nlohmann
::
json
&
json
,
const
TraceEvent
&
event
)
{
std
::
map
<
std
::
string
,
std
::
string
>
args
;
...
...
src/ngraph/runtime/cpu/cpu_tracing.hpp
View file @
72890154
...
...
@@ -21,7 +21,7 @@
#include <vector>
#include "ngraph/runtime/cpu/cpu_external_function.hpp"
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
#include "nlohmann/json.hpp"
#endif
...
...
@@ -67,7 +67,7 @@ namespace ngraph
{
}
};
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
void
to_json
(
nlohmann
::
json
&
json
,
const
TraceEvent
&
event
);
#endif
...
...
src/ngraph/serializer.hpp
View file @
72890154
...
...
@@ -63,7 +63,7 @@ namespace ngraph
void
set_serialize_output_shapes
(
bool
enable
);
}
#if
ndef NGRAPH_JSON_EN
ABLE
#if
def NGRAPH_JSON_DIS
ABLE
// Rather than making every reference to the serializer conditionally compile here we just
// provide some null stubs to resolve link issues
// The `inline` is so we don't get multiple definitions of function
...
...
test/backend_api.cpp
View file @
72890154
...
...
@@ -37,7 +37,7 @@ TEST(backend_api, invalid_name)
ASSERT_ANY_THROW
(
ngraph
::
runtime
::
Backend
::
create
(
"COMPLETELY-BOGUS-NAME"
));
}
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
TEST
(
backend_api
,
save_load
)
{
Shape
shape
{
2
,
2
};
...
...
test/backend_broadcast.in.cpp
View file @
72890154
...
...
@@ -462,7 +462,7 @@ NGRAPH_TEST(${BACKEND_NAME}, broadcast_matrix_2)
MIN_FLOAT_TOLERANCE_BITS
));
}
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
NGRAPH_TEST
(
$
{
BACKEND_NAME
},
constant_broadcast
)
{
const
string
js
=
...
...
test/backend_test.in.cpp
View file @
72890154
...
...
@@ -6070,7 +6070,7 @@ NGRAPH_TEST(${BACKEND_NAME}, batch_norm_bprop_n4c3h2w2)
auto
df
=
make_shared
<
Function
>
(
NodeVector
{
dinput
,
dgamma
,
dbeta
},
ParameterVector
{
mean
,
var
,
input
,
gamma
,
beta
,
C
});
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
// roundtrip serialization
string
js
=
serialize
(
df
,
4
);
istringstream
in
(
js
);
...
...
test/control_dependencies.cpp
View file @
72890154
...
...
@@ -162,7 +162,7 @@ TEST(control_dependencies, clone_function_cdop_abs)
}
}
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
TEST
(
control_dependencies
,
serialize_cdop
)
{
auto
A
=
make_shared
<
op
::
Parameter
>
(
element
::
f32
,
Shape
{});
...
...
test/core_fusion.cpp
View file @
72890154
...
...
@@ -62,7 +62,7 @@ TEST(core_fusion, core_fusion_pass_basic)
ASSERT_NE
(
std
::
dynamic_pointer_cast
<
op
::
Relu
>
(
graph
->
get_argument
(
0
)),
nullptr
);
}
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
TEST
(
core_fusion
,
sigmoid_fprop_fusion
)
{
pass
::
Manager
pass_manager
;
...
...
test/cpu_fusion.cpp
View file @
72890154
...
...
@@ -3607,7 +3607,7 @@ TEST(cpu_quant_fusion, qconvba)
EXPECT_TRUE
(
test
::
all_close
(
cpu1_results
.
at
(
0
),
cpu2_results
.
at
(
0
)));
}
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
// Tests that rely on deserializing json files
TEST
(
cpu_fusion
,
fuse_conv_bias
)
{
...
...
@@ -3973,7 +3973,7 @@ TEST(cpu_fusion, validate_fuse_gru_inputs)
}
}
#if defined(AUTODIFF_BACKEND_CPU) &&
defined(NGRAPH_JSON_EN
ABLE)
#if defined(AUTODIFF_BACKEND_CPU) &&
!defined(NGRAPH_JSON_DIS
ABLE)
NGRAPH_TEST
(
cpu_fusion
,
backwards_batchmatmultranspose_tensor2_tensor2
)
{
auto
backend
=
runtime
::
Backend
::
create
(
"CPU"
);
...
...
test/gpu_fusion.cpp
View file @
72890154
...
...
@@ -128,7 +128,7 @@ TEST(gpu_fusion, rnn_fprop_1_lstm_cell)
}
#endif
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
TEST
(
gpu_fusion
,
fuse_lstm_cells
)
{
pass
::
Manager
pass_manager
;
...
...
@@ -421,7 +421,7 @@ TEST(gpu_fusion, fuse_2_layer_rnn_1lstm_analytic)
EXPECT_TRUE
(
test
::
all_close
(
std
::
vector
<
float
>
{
ct_val_second
},
read_vector
<
float
>
(
result_ct
)));
}
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
TEST
(
gpu_fusion
,
rnn_fusion_inter_vs_gpu_1lstm_cell
)
{
const
std
::
string
file_name
(
"mxnet/1_lstm_cell_forward.json"
);
...
...
test/reshape_elimination.cpp
View file @
72890154
...
...
@@ -44,7 +44,7 @@
using
namespace
ngraph
;
using
namespace
std
;
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
TEST
(
reshape_elimination
,
remove_reshape
)
{
pass
::
Manager
pass_manager
;
...
...
test/reshape_sinking.cpp
View file @
72890154
...
...
@@ -110,7 +110,7 @@ TEST(reshape_sinking, broadcast_swimming)
ASSERT_EQ
(
add
->
get_argument
(
1
),
conv
);
}
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
TEST
(
reshape_sinking
,
mnist_conv
)
{
const
string
json_path
=
file_util
::
path_join
(
SERIALIZED_ZOO
,
"tf_conv_mnist_nhwc.json"
);
...
...
test/util/test_tools.cpp
View file @
72890154
...
...
@@ -303,7 +303,7 @@ string get_results_str(const std::vector<char>& ref_data,
return
ss
.
str
();
}
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
std
::
shared_ptr
<
Function
>
make_function_from_file
(
const
std
::
string
&
file_name
)
{
const
string
json_path
=
file_util
::
path_join
(
SERIALIZED_ZOO
,
file_name
);
...
...
test/util/test_tools.hpp
View file @
72890154
...
...
@@ -40,7 +40,7 @@ namespace ngraph
bool
validate_list
(
const
std
::
list
<
std
::
shared_ptr
<
ngraph
::
Node
>>&
nodes
);
std
::
shared_ptr
<
ngraph
::
Function
>
make_test_graph
();
#if
def NGRAPH_JSON_EN
ABLE
#if
ndef NGRAPH_JSON_DIS
ABLE
std
::
shared_ptr
<
ngraph
::
Function
>
make_function_from_file
(
const
std
::
string
&
file_name
);
#endif
...
...
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