Skip to content

Commit ba711cf

Browse files
authored
Update README.md
1 parent 473b92e commit ba711cf

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

backends/openvino/README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@ executorch
3232
│ └── requirements.txt
3333
└── examples
3434
│ └── openvino
35-
│ ├── aot
36-
│ ├── README.md
37-
│ └── aot_openvino_compiler.py
35+
│ ├── aot_openvino_compiler.py
3836
│ ├── export_and_infer_openvino.py
39-
── README.md
37+
── README.md
4038
```
4139

4240
## Build Instructions
@@ -75,15 +73,15 @@ Follow the steps below to setup your build environment:
7573
Note: To achieve optimal performance with NNCF quantization, you should install the latest development version of NNCF (version 2.16.0.dev0+191b53d9 or higher).
7674
3. Navigate to `scripts/` directory.
7775

78-
4. **Build OpenVINO Backend**: Once the prerequisites are in place, run the `openvino_build.sh` script to start the build process. By default, OpenVINO backend will be built under `cmake-out/backends/openvino/` as `libopenvino_backend.a`
76+
4. **Build OpenVINO Backend C++ Libraries and Executor Runner**: Once the prerequisites are in place, run the `openvino_build.sh` script to start the build process. By default, OpenVINO backend will be built under `cmake-out/backends/openvino/` as `libopenvino_backend.a`
7977

8078
```bash
8179
./openvino_build.sh
8280
```
83-
**Build OpenVINO Backend with Pybinding**: To build and install the OpenVINO backend with Python bindings, run the `openvino_build.sh` script with the `--pybind` argument. This will compile and install the ExecuTorch Python package with the OpenVINO backend into your Python environment.
81+
**Build OpenVINO Backend Python Package with Pybindings**: To build and install the OpenVINO backend Python package with Python bindings, run the `openvino_build.sh` script with the `--enable_python` argument. This will compile and install the ExecuTorch Python package with the OpenVINO backend into your Python environment. This options will also enable pybindings which is required to execute OpenVINO backend tests and `export_and_infer_openvino.py` script inside `executorch/examples/openvino` folder.
8482

8583
```bash
86-
./openvino_build.sh --pybind
84+
./openvino_build.sh --enable_python
8785
```
8886

8987
### Run

0 commit comments

Comments
 (0)