You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/core/README.md
-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@ People from the [openvino-ngraph-maintainers](https://github.com/orgs/openvinoto
15
15
## Components
16
16
17
17
OpenVINO Core has the next structure:
18
-
*[builders](./builder) is obsolete component which provides helper methods for operation creations. Please don't use this API, and use public OpenVINO API instead.
19
18
*[dev_api](./dev_api) contains developer API. In order to use this API, you need to link your component against `openvino::runtime::dev`.
20
19
*[docs](./docs) contains developer documentation pages for the component.
21
20
*[include](./include) contains public API. Detailed information about provided API can be found [here](./docs/api_details.md).
Copy file name to clipboardexpand all lines: src/core/docs/operation_enabling_flow.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
18
18
2. Add operation to the dedicated opset file `src/core/include/openvino/opsets/opsetX_tbl.hpp`
19
19
20
-
3. Implement `evaluate` method for the operation (reference implementation) in the `openvino/core/reference/[src|include]/ngraph/runtime/reference/`. Reference implementation can be called from Template plugin or from OpenVINO (`src/core/src/op/your_operation_name.cpp/hpp`).
20
+
3. Implement `evaluate` method for the operation (reference implementation) in the `openvino/core/[src|include/openvino]/op/`. Reference implementation can be called from Template plugin or from OpenVINO.
21
21
To not increase the binary size of openvino lib it should be placed in Template plugin unless you are directly asked to put it in the OpenVINO core. While adding reference implementation the following points should be considered:
22
22
* The method should avoid using the template parameters if possible. However, for the small operations like activation functions it is acceptable.
23
23
* The method should be instantiated for practical data types only.
Copy file name to clipboardexpand all lines: src/inference/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ OpenVINO Inference has the following structure:
16
16
*[include](./include) contains public API. Find more information in the [OpenVINO Inference API](./docs/api_details.md) document.
17
17
*[src](./src) contains sources of the component.
18
18
19
-
OpenVINO Inference has unit and functional tests. Unit tests are located in [src/tests/unit/inference_engine](../tests/unit/inference_engine/), functional tests are located in [src/tests/functional/inference_engine](../tests/functional/inference_engine/).
19
+
OpenVINO Inference has unit and functional tests. Unit tests are located in [src/inference/tests/unit](tests/unit/), functional tests are located in [src/inference/tests/functional](tests/unit/).
0 commit comments