aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/BUILD.bazel3
-rw-r--r--src/graph/backends/NEON/NEFunctionFactory.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/BUILD.bazel b/src/BUILD.bazel
index d4d1fc8add..b989bd1963 100644
--- a/src/BUILD.bazel
+++ b/src/BUILD.bazel
@@ -96,7 +96,8 @@ filegroup(
"graph/nodes/SplitLayerNode.cpp",
"graph/nodes/StackLayerNode.cpp",
"graph/nodes/StridedSliceLayerNode.cpp",
- "graph/printers/DotGraphPrinter.cpp"] +
+ "graph/printers/DotGraphPrinter.cpp",
+ "//utils:CommonGraphOptions.cpp"] +
glob(["**/*.h",
"**/*.hpp",
"**/*.inl"]),
diff --git a/src/graph/backends/NEON/NEFunctionFactory.cpp b/src/graph/backends/NEON/NEFunctionFactory.cpp
index 57c64475ec..d7ed5f9ecb 100644
--- a/src/graph/backends/NEON/NEFunctionFactory.cpp
+++ b/src/graph/backends/NEON/NEFunctionFactory.cpp
@@ -114,7 +114,7 @@ std::unique_ptr<IFunction> create_normalization_layer<NENormalizationLayer, NETa
<< " Normalization info: " << norm_info.type()
<< std::endl);
- return std::move(func);
+ return func;
}
} // namespace detail