ColorsWind

Results 5 comments of ColorsWind

Currently, the limitation of pybind11-stubgen is that the package must be importable using `import` to generate the stubs. We can utilize [PYTHONPATH](https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH) Mechanism to achieve "executing import without following the...

I sent this issue to the OpenVINO repository. https://github.com/openvinotoolkit/openvino/issues/28285

Hi @Kepontry. I can share my build script with you: ```bash export OPENVINO_HOME=/home/user/openvino export NPU_PLUGIN_HOME=/home/user/npu_compiler cd $OPENVINO_HOME mkdir build cd build cmake \ -D CMAKE_VERBOSE_MAKEFILE=OFF \ -D ENABLE_DEVELOPER_BUILD=ON \ -D...

@Kepontry The hardware outputs a buffer as profiling output, with some bits related to the execution times of DPU, DMA, and SHAVE tasks. By parsing these bits, you can determine...

I tried to compile the [npu_ud_2025_18_rc1](https://github.com/openvinotoolkit/npu_compiler/releases/tag/npu_ud_2025_18_rc1) of the NPU Compiler myself, and then used the command I described earlier to export the model loading. ```bash vpux-translate --vpu-arch=NPU40XX \ --vpux-profiling \...