File tree Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Expand file tree Collapse file tree 5 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ if (NOT WIN32)
42
42
target_link_libraries (ngraph_backend PRIVATE dl )
43
43
endif ()
44
44
target_compile_definitions (ngraph_backend PRIVATE BACKEND_DLL_EXPORTS )
45
- target_include_directories (ngraph_backend INTERFACE ${CMAKE_CURRENT_SOURCE_DIR} )
45
+ target_include_directories (ngraph_backend PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} )
46
46
47
47
add_subdirectory (interpreter )
48
48
Original file line number Diff line number Diff line change 15
15
// *****************************************************************************
16
16
17
17
#include " dynamic_backend.hpp"
18
- #include " ../opset0_downgrade.hpp"
19
18
#include " ngraph/graph_util.hpp"
20
19
#include " ngraph/op/avg_pool.hpp"
21
20
#include " ngraph/op/broadcast.hpp"
34
33
#include " ngraph/pass/shape_relevance.hpp"
35
34
#include " ngraph/specialize_function.hpp"
36
35
#include " ngraph/util.hpp"
36
+ #include " opset0_downgrade.hpp"
37
37
38
38
using namespace std ;
39
39
using namespace ngraph ;
Original file line number Diff line number Diff line change 21
21
#include < string>
22
22
#include < vector>
23
23
24
- #include " ../ backend.hpp"
25
- #include " ../ cache.hpp"
24
+ #include " backend.hpp"
25
+ #include " cache.hpp"
26
26
#include " ngraph/runtime/host_tensor.hpp"
27
27
#include " ngraph/runtime/tensor.hpp"
28
28
Original file line number Diff line number Diff line change 16
16
17
17
#pragma once
18
18
19
+ #include " backend_visibility.hpp"
19
20
#include " ngraph/op/op.hpp"
20
21
#include " ngraph/op/util/attr_types.hpp"
21
22
@@ -27,7 +28,7 @@ namespace ngraph
27
28
{
28
29
// / \brief Batched average pooling operation, with optional padding and window stride.
29
30
// /
30
- class NGRAPH_API AvgPool : public Op
31
+ class BACKEND_API AvgPool : public Op
31
32
{
32
33
public:
33
34
static constexpr NodeTypeInfo type_info{" AvgPool" , 0 };
Original file line number Diff line number Diff line change 16
16
17
17
#pragma once
18
18
19
+ #include " backend_visibility.hpp"
19
20
#include " ngraph/pass/pass.hpp"
20
21
21
22
namespace ngraph
22
23
{
23
24
namespace pass
24
25
{
25
- class NGRAPH_API Opset0Downgrade : public NodePass
26
+ class BACKEND_API Opset0Downgrade : public NodePass
26
27
{
27
28
public:
28
29
// /
You can’t perform that action at this time.
0 commit comments