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
[Bug] Const data got different desc and content byte sizes (24 and 96 respectively)" error when converting ConvolutionBackpropData using compile_tools
#9517
Closed
3 tasks done
PINTO0309 opened this issue
Jan 6, 2022
· 3 comments
"Const data got different desc and content byte sizes (24 and 96 respectively)" error when converting ConvolutionBackpropData using compile_tools. compile_tools was compiled using source code cloned from the master branch of openvino as of January 6, 2022. (commit hash: e89db1c)
The IR and ONNX models that I am trying to convert using the compile_tool can be found at the following URL. onnx_and_openvinoir.zip
This model is a lightweight model that is very suitable for edge devices to perform depth estimation with stereo cameras.
The input geometry of the OpenVINO IR model is static float32[1,6,120,160] and in NCHW format.
The error message is as follows. I have not been able to trace the inner workings of the compile_tool logic, but it seems that the shape prediction fails when converting the ConvolutionBackpropData.
/opt/intel/openvino/tools/compile_tool/compile_tool \
-m openvino/FP32/model_float32_opt.xml \
-ip U8 \
-d MYRIAD \
-VPU_NUMBER_OF_SHAVES 4 \
-VPU_NUMBER_OF_CMX_SLICES 4 \
-o openvino/myriad/model_float32_opt.blob
/opt/intel/repo/openvino/inference-engine/src/vpu/graph_transformer/src/model/model.cpp:198 duplicateData error: while duplicating level0/shared/prop0/WarpImageWithHypotheses/get_warp1d_coordinates_from_tile_hypotheses/get_warp_disparity@weights Const data got different desc and content byte sizes (24 and 96 respectively)
Thanks for reporting, I was able to reproduce the error using your model and the compile_tool as well as the benchmark_app on the latest master branch. I am able to generate the blob by cutting the model just before the ConvTranspose Layer in your model. So there maybe an issue with this layer and MYRIAD. Let me reach out to the development team and get back to you.
@PINTO0309 apologies for the delay in our response. The issue here is that ConvTranspose layer is not supported by the Myriad plugin.
The following PR #13995 has been created to update the documentation and reflect this information. There are no plans at the moment to add support to such operation.
System information (version)
Detailed description
"Const data got different desc and content byte sizes (24 and 96 respectively)" error when converting
ConvolutionBackpropData
usingcompile_tools
.compile_tools
was compiled using source code cloned from the master branch of openvino as of January 6, 2022. (commit hash: e89db1c)The IR and ONNX models that I am trying to convert using the compile_tool can be found at the following URL.
onnx_and_openvinoir.zip
This model is a lightweight model that is very suitable for edge devices to perform depth estimation with stereo cameras.
The input geometry of the OpenVINO IR model is static
float32[1,6,120,160]
and in NCHW format.The error message is as follows. I have not been able to trace the inner workings of the compile_tool logic, but it seems that the shape prediction fails when converting the
ConvolutionBackpropData
.Steps to reproduce
master
branch of openvino)Issue submission checklist
The text was updated successfully, but these errors were encountered: