Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / tests / unit / engines / mkldnn / dumper_test.cpp
index 383a1e7..0fc2eff 100644 (file)
@@ -1,5 +1,17 @@
-// Copyright (C) 2018 Intel Corporation
-// SPDX-License-Identifier: Apache-2.0
+//
+// Copyright 2016-2018 Intel Corporation.
+//
+// This software and the related documents are Intel copyrighted materials,
+// and your use of them is governed by the express license under which they
+// were provided to you (End User License Agreement for the Intel(R) Software
+// Development Products (Version May 2017)). Unless the License provides
+// otherwise, you may not use, modify, copy, publish, distribute, disclose or
+// transmit this software or the related documents without Intel's prior
+// written permission.
+//
+// This software and the related documents are provided as is, with no
+// express or implied warranties, other than those that are expressly
+// stated in the License.
 //
 
 #include <gtest/gtest.h>
@@ -29,7 +41,7 @@ public:
             "SomeNet", {2,3,16,16}, "FP32")) {
         using prm_t = map<string, string>;
 
-        testing::InOutData inout = {{{2,3,16,16}},{{2,16,16,16}}};
+        testing::InOutShapes inout = {{{2,3,16,16}},{{2,16,16,16}}};
 
         prm_t conv_prm = {
                 {"stride-x", std::to_string(1)},
@@ -96,4 +108,4 @@ TEST(MKLDNNLayersTests, DumpSimpleGraphToDot) {
     ASSERT_EQ(std::count(dot.begin(), dot.end(), '['), 10); // 4-node 3-data 3-shape
     ASSERT_EQ(std::count(dot.begin(), dot.end(), ']'), 10);
     ASSERT_EQ(std::count(dot.begin(), dot.end(), '>'), 6); // connection
-}
\ No newline at end of file
+}