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
c1b08b42
Unverified
Commit
c1b08b42
authored
5 years ago
by
Diego Caballero
Committed by
GitHub
5 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MLIR] Move subgraph extraction pass to contrib (#42)
parent
7c68d855
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
10 deletions
+5
-10
CMakeLists.txt
src/contrib/mlir/CMakeLists.txt
+2
-0
mlir_subgraph_extraction.cpp
src/contrib/mlir/pass/mlir_subgraph_extraction.cpp
+1
-1
mlir_subgraph_extraction.hpp
src/contrib/mlir/pass/mlir_subgraph_extraction.hpp
+1
-1
CMakeLists.txt
src/ngraph/CMakeLists.txt
+0
-7
cpu_external_function.cpp
src/ngraph/runtime/cpu/cpu_external_function.cpp
+1
-1
No files found.
src/contrib/mlir/CMakeLists.txt
View file @
c1b08b42
...
...
@@ -21,6 +21,8 @@ set(SRC
compiler.cpp
lowerer.cpp
memory_manager.cpp
pass/mlir_subgraph_extraction.cpp
pass/mlir_subgraph_extraction.hpp
)
if
(
NGRAPH_MLIR_ENABLE
)
...
...
This diff is collapsed.
Click to expand it.
src/
ngraph
/pass/mlir_subgraph_extraction.cpp
→
src/
contrib/mlir
/pass/mlir_subgraph_extraction.cpp
View file @
c1b08b42
//*****************************************************************************
// Copyright 201
7-201
9 Intel Corporation
// Copyright 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.
...
...
This diff is collapsed.
Click to expand it.
src/
ngraph
/pass/mlir_subgraph_extraction.hpp
→
src/
contrib/mlir
/pass/mlir_subgraph_extraction.hpp
View file @
c1b08b42
//*****************************************************************************
// Copyright 201
7-201
9 Intel Corporation
// Copyright 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.
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/CMakeLists.txt
View file @
c1b08b42
...
...
@@ -493,13 +493,6 @@ set(SRC ${SRC}
runtime/dynamic/dynamic_backend.hpp
)
# MLIR specific files
set
(
SRC
${
SRC
}
pass/mlir_subgraph_extraction.cpp
pass/mlir_subgraph_extraction.hpp
)
if
(
NGRAPH_JSON_ENABLE
)
list
(
APPEND SRC serializer.cpp serializer.hpp event_tracing.cpp event_tracing.hpp
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
src/ngraph/runtime/cpu/cpu_external_function.cpp
View file @
c1b08b42
...
...
@@ -33,6 +33,7 @@
#include "ngraph/codegen/execution_engine.hpp"
#endif
#include "contrib/mlir/pass/mlir_subgraph_extraction.hpp"
#include "ngraph/descriptor/input.hpp"
#include "ngraph/descriptor/output.hpp"
#include "ngraph/file_util.hpp"
...
...
@@ -141,7 +142,6 @@
#include "ngraph/pass/liveness.hpp"
#include "ngraph/pass/manager.hpp"
#include "ngraph/pass/memory_layout.hpp"
#include "ngraph/pass/mlir_subgraph_extraction.hpp"
#include "ngraph/pass/nop_elimination.hpp"
#include "ngraph/pass/propagate_cacheability.hpp"
#include "ngraph/pass/reshape_elimination.hpp"
...
...
This diff is collapsed.
Click to expand it.
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