Skip to content

Commit c145e30

Browse files
committed
simplify ov cpp
1 parent f906f90 commit c145e30

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+278
-9805
lines changed

.vscode/c_cpp_properties.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"/opt/intel/openvino_2024.0.0/runtime/include",
8+
"${workspaceFolder}/openvino_/cpp/libtorch",
9+
"${workspaceFolder}/openvino_/cpp/include"
10+
],
11+
"defines": [],
12+
"compilerPath": "/usr/bin/gcc",
13+
"cStandard": "c17",
14+
"cppStandard": "c++20",
15+
"intelliSenseMode": "linux-gcc-x64"
16+
}
17+
],
18+
"version": 4
19+
}

openvino_/cpp/CMakeLists.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@ cmake_minimum_required(VERSION 3.18 FATAL_ERROR)
22

33
project(MyProj)
44

5-
set(CMAKE_CXX_STANDARD 17)
5+
set(CMAKE_CXX_STANDARD 20)
66

77
include_directories(third_party)
8-
add_subdirectory(third_party/gflags EXCLUDE_FROM_ALL)
8+
include_directories(include)
99

10-
add_subdirectory(common)
1110
add_subdirectory(src)

openvino_/cpp/bin/app

-60.8 KB
Binary file not shown.

openvino_/cpp/common/CMakeLists.txt

Lines changed: 0 additions & 8 deletions
This file was deleted.

openvino_/cpp/common/format_reader/CMakeLists.txt

Lines changed: 0 additions & 40 deletions
This file was deleted.

openvino_/cpp/common/format_reader/include/format_reader.h

Lines changed: 0 additions & 79 deletions
This file was deleted.

openvino_/cpp/common/format_reader/include/format_reader_ptr.h

Lines changed: 0 additions & 43 deletions
This file was deleted.

openvino_/cpp/common/format_reader/src/MnistUbyte.cpp

Lines changed: 0 additions & 68 deletions
This file was deleted.

openvino_/cpp/common/format_reader/src/MnistUbyte.h

Lines changed: 0 additions & 55 deletions
This file was deleted.

openvino_/cpp/common/format_reader/src/bmp.cpp

Lines changed: 0 additions & 66 deletions
This file was deleted.

0 commit comments

Comments
 (0)