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
0a77fad3
Commit
0a77fad3
authored
Mar 07, 2019
by
pruthvi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename cpu_mkl_alloctor.hpp/.cpp to cpu_allocator.hpp/.cpp
parent
65525f3a
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
9 additions
and
9 deletions
+9
-9
aligned_buffer.cpp
src/ngraph/runtime/aligned_buffer.cpp
+1
-1
CMakeLists.txt
src/ngraph/runtime/cpu/CMakeLists.txt
+1
-1
cpu_aligned_buffer.cpp
src/ngraph/runtime/cpu/cpu_aligned_buffer.cpp
+1
-1
cpu_aligned_buffer.hpp
src/ngraph/runtime/cpu/cpu_aligned_buffer.hpp
+1
-1
cpu_allocator.cpp
src/ngraph/runtime/cpu/cpu_allocator.cpp
+1
-1
cpu_allocator.hpp
src/ngraph/runtime/cpu/cpu_allocator.hpp
+0
-0
cpu_backend.hpp
src/ngraph/runtime/cpu/cpu_backend.hpp
+1
-1
cpu_call_frame.hpp
src/ngraph/runtime/cpu/cpu_call_frame.hpp
+1
-1
cpu_external_function.cpp
src/ngraph/runtime/cpu/cpu_external_function.cpp
+1
-1
cpu_external_function.hpp
src/ngraph/runtime/cpu/cpu_external_function.hpp
+1
-1
No files found.
src/ngraph/runtime/aligned_buffer.cpp
View file @
0a77fad3
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
#include <memory>
#include <memory>
#include "ngraph/runtime/aligned_buffer.hpp"
#include "ngraph/runtime/aligned_buffer.hpp"
#include "ngraph/runtime/cpu/cpu_
mkl_
allocator.hpp"
#include "ngraph/runtime/cpu/cpu_allocator.hpp"
#include "ngraph/util.hpp"
#include "ngraph/util.hpp"
using
namespace
ngraph
;
using
namespace
ngraph
;
...
...
src/ngraph/runtime/cpu/CMakeLists.txt
View file @
0a77fad3
...
@@ -24,7 +24,7 @@ set(SRC
...
@@ -24,7 +24,7 @@ set(SRC
cpu_executor.cpp
cpu_executor.cpp
cpu_external_function.cpp
cpu_external_function.cpp
cpu_kernels.cpp
cpu_kernels.cpp
cpu_
mkl_
allocator.cpp
cpu_allocator.cpp
cpu_layout_descriptor.cpp
cpu_layout_descriptor.cpp
cpu_op_annotations.cpp
cpu_op_annotations.cpp
cpu_tensor_view_wrapper.cpp
cpu_tensor_view_wrapper.cpp
...
...
src/ngraph/runtime/cpu/cpu_aligned_buffer.cpp
View file @
0a77fad3
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
#include <memory>
#include <memory>
#include "ngraph/runtime/cpu/cpu_aligned_buffer.hpp"
#include "ngraph/runtime/cpu/cpu_aligned_buffer.hpp"
#include "ngraph/runtime/cpu/cpu_
mkl_
allocator.hpp"
#include "ngraph/runtime/cpu/cpu_allocator.hpp"
#include "ngraph/util.hpp"
#include "ngraph/util.hpp"
using
namespace
ngraph
;
using
namespace
ngraph
;
...
...
src/ngraph/runtime/cpu/cpu_aligned_buffer.hpp
View file @
0a77fad3
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
#pragma once
#pragma once
#include <cstddef>
#include <cstddef>
#include "ngraph/runtime/cpu/cpu_
mkl_
allocator.hpp"
#include "ngraph/runtime/cpu/cpu_allocator.hpp"
namespace
ngraph
namespace
ngraph
{
{
...
...
src/ngraph/runtime/cpu/cpu_
mkl_
allocator.cpp
→
src/ngraph/runtime/cpu/cpu_allocator.cpp
View file @
0a77fad3
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
// limitations under the License.
// limitations under the License.
//*****************************************************************************
//*****************************************************************************
#include "ngraph/runtime/cpu/cpu_
mkl_
allocator.hpp"
#include "ngraph/runtime/cpu/cpu_allocator.hpp"
#include <string>
#include <string>
#include "ngraph/runtime/cpu/cpu_external_function.hpp"
#include "ngraph/runtime/cpu/cpu_external_function.hpp"
...
...
src/ngraph/runtime/cpu/cpu_
mkl_
allocator.hpp
→
src/ngraph/runtime/cpu/cpu_allocator.hpp
View file @
0a77fad3
File moved
src/ngraph/runtime/cpu/cpu_backend.hpp
View file @
0a77fad3
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
#include "cpu_backend_visibility.h"
#include "cpu_backend_visibility.h"
#include "ngraph/pass/pass_config.hpp"
#include "ngraph/pass/pass_config.hpp"
#include "ngraph/runtime/backend.hpp"
#include "ngraph/runtime/backend.hpp"
#include "ngraph/runtime/cpu/cpu_
mkl_
allocator.hpp"
#include "ngraph/runtime/cpu/cpu_allocator.hpp"
namespace
ngraph
namespace
ngraph
{
{
...
...
src/ngraph/runtime/cpu/cpu_call_frame.hpp
View file @
0a77fad3
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
#include "ngraph/function.hpp"
#include "ngraph/function.hpp"
#include "ngraph/runtime/cpu/cpu_layout_descriptor.hpp"
#include "ngraph/runtime/cpu/cpu_layout_descriptor.hpp"
#include "ngraph/runtime/cpu/cpu_
mkl_
allocator.hpp"
#include "ngraph/runtime/cpu/cpu_allocator.hpp"
#include "ngraph/runtime/cpu/cpu_runtime_context.hpp"
#include "ngraph/runtime/cpu/cpu_runtime_context.hpp"
#include "ngraph/runtime/tensor.hpp"
#include "ngraph/runtime/tensor.hpp"
...
...
src/ngraph/runtime/cpu/cpu_external_function.cpp
View file @
0a77fad3
...
@@ -141,7 +141,7 @@
...
@@ -141,7 +141,7 @@
#include "ngraph/runtime/cpu/cpu_emitter.hpp"
#include "ngraph/runtime/cpu/cpu_emitter.hpp"
#include "ngraph/runtime/cpu/cpu_executor.hpp"
#include "ngraph/runtime/cpu/cpu_executor.hpp"
#include "ngraph/runtime/cpu/cpu_external_function.hpp"
#include "ngraph/runtime/cpu/cpu_external_function.hpp"
#include "ngraph/runtime/cpu/cpu_
mkl_
allocator.hpp"
#include "ngraph/runtime/cpu/cpu_allocator.hpp"
#include "ngraph/runtime/cpu/cpu_op_annotations.hpp"
#include "ngraph/runtime/cpu/cpu_op_annotations.hpp"
#include "ngraph/runtime/cpu/cpu_tensor_view.hpp"
#include "ngraph/runtime/cpu/cpu_tensor_view.hpp"
#include "ngraph/runtime/cpu/cpu_tracing.hpp"
#include "ngraph/runtime/cpu/cpu_tracing.hpp"
...
...
src/ngraph/runtime/cpu/cpu_external_function.hpp
View file @
0a77fad3
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
#include "ngraph/pass/pass_config.hpp"
#include "ngraph/pass/pass_config.hpp"
#include "ngraph/runtime/cpu/cpu_call_frame.hpp"
#include "ngraph/runtime/cpu/cpu_call_frame.hpp"
#include "ngraph/runtime/cpu/cpu_layout_descriptor.hpp"
#include "ngraph/runtime/cpu/cpu_layout_descriptor.hpp"
#include "ngraph/runtime/cpu/cpu_
mkl_
allocator.hpp"
#include "ngraph/runtime/cpu/cpu_allocator.hpp"
#include "ngraph/runtime/cpu/cpu_tensor_view_wrapper.hpp"
#include "ngraph/runtime/cpu/cpu_tensor_view_wrapper.hpp"
#include "ngraph/runtime/cpu/mkldnn_emitter.hpp"
#include "ngraph/runtime/cpu/mkldnn_emitter.hpp"
#include "ngraph/runtime/performance_counter.hpp"
#include "ngraph/runtime/performance_counter.hpp"
...
...
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