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
I am currently investigating the time breakdown of tasks within a single model. However, I've encountered an issue where I cannot profile the DMATask. I've spent a week trying to identify any missing information but have yet to resolve the problem. Below are the minimal steps to reproduce the issue. The platform is an Intel ultra258v laptop with openvino-nightly and numpy installed.
NPU_LOG: ERROR [compiler.cpp:289] Failed to get decoded profiling data in compiler
In fact, when I try using the Level Zero API to submit tasks directly and then use the Level Zero NPU extension API to get profiling results, I find that the DMA profiling output data is zero, while the DPU and SW-Kernel profiling outputs are valid. I am wondering how I can obtain the DMA task profiling results.
The text was updated successfully, but these errors were encountered:
I am currently investigating the time breakdown of tasks within a single model. However, I've encountered an issue where I cannot profile the DMATask. I've spent a week trying to identify any missing information but have yet to resolve the problem. Below are the minimal steps to reproduce the issue. The platform is an Intel ultra258v laptop with
openvino-nightly
andnumpy
installed.Step 1: Create the
Sigmoid
ModelStep 2: Compile the
Sigmoid
Model with DMA Profiling Flagsvpux-translate --vpu-arch=NPU40XX \ --vpux-profiling \ --mlir-print-debuginfo \ --import-IE sigmoid.xml -o sigmoid.mlir vpux-opt --vpu-arch=NPU40XX \ --default-hw-mode="profiling=true dma-profiling=true" \ --lower-VPUIP-to-ELF sigmoid.mlir \ -o sigmoid_out.mlir vpux-translate --vpu-arch=NPU40XX --export-ELF sigmoid_out.mlir -o sigmoid.blob
Step 3: Run the Model
You will encounter the following error:
In fact, when I try using the Level Zero API to submit tasks directly and then use the Level Zero NPU extension API to get profiling results, I find that the DMA profiling output data is zero, while the DPU and SW-Kernel profiling outputs are valid. I am wondering how I can obtain the DMA task profiling results.
The text was updated successfully, but these errors were encountered: