Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supported primitive descriptors list is empty for node when using sample model #62

Closed
doruime opened this issue Dec 29, 2018 · 4 comments
Labels
category: CPU OpenVINO CPU plugin

Comments

@doruime
Copy link

doruime commented Dec 29, 2018

Hello,
I met a problem when I ran code blow using python api:

plugin = IEPlugin(device=DEVICE, plugin_dirs=PLUGIN_DIR)
if CPU_EXTENSION and 'CPU' in DEVICE:
    plugin.add_cpu_extension(CPU_EXTENSION)
net = IENetwork.from_ir(model=model_xml, weights=model_bin)
inputs = net.inputs
outputs = net.outputs
exec_net = plugin.load(network=net)

The error is:
Supported primitive descriptors list is empty for node: bottleneck1_1/dim_red/conv

The model is person-detection-retail-0013 which is one sample SSD model from installation package.

The problem comes from the last line exec_net = plugin.load(network=net) , but I have no idea how to solve it.

Thank you for your help.

Best,
dcgao

@dmitry-gorokhov
Copy link
Contributor

Hello!

Could you please provide information about what CPU did you use to run the model?

@doruime
Copy link
Author

doruime commented Dec 29, 2018

Hello!

Could you please provide information about what CPU did you use to run the model?

Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz

@doruime doruime changed the title Supported primitive descriptors list is empty for node when usings sample model Supported primitive descriptors list is empty for node when using sample model Dec 29, 2018
@wiibrew
Copy link

wiibrew commented Feb 12, 2019

Hi,

I also ran into this error. I was writing a custom layer in c++ and it's solved by adding layer config code:
std::vector<DataConfigurator> inps; for (const auto &in : layer->insData) inps.emplace_back(ConfLayout::PLN); addConfig(layer, inps, {DataConfigurator(ConfLayout::PLN)});
at end of the of the ext_customlayer.cpp (this code is for multiple inputs but should work for single as well).
Not sure if this is exactly the same case but hope help.

@depthwise
Copy link

@wiibrew saved me hours of debugging. Why this is not in the documentation, I'll never know.

@ilyachur ilyachur added the category: CPU OpenVINO CPU plugin label May 27, 2020
ceciliapeng2011 referenced this issue in ceciliapeng2011/openvino May 25, 2021
Build ProtoBuf as static lib, not dynamic
eshoguli pushed a commit to eshoguli/openvino that referenced this issue Jun 1, 2021
@jgespino jgespino closed this as completed Mar 1, 2022
andrew-k-park added a commit to andrew-k-park/openvino that referenced this issue Apr 13, 2022
* [GPU] Enable graph_initializations/calculate_prior_boxes for init_graph passes

Signed-off-by: Andrew Park <[email protected]>

* [GPU] Enable post_input_reorder/post_optimize_weights for post-optimization passes

Signed-off-by: Andrew Park <[email protected]>

* [GPU] Enable update_loop_primitive_map for post-optimization passes

- check results with already enabled opt passes

Signed-off-by: Andrew Park <[email protected]>
IvanNovoselov added a commit to IvanNovoselov/openvino that referenced this issue Dec 2, 2022
mmikolajcz pushed a commit to mmikolajcz/openvino that referenced this issue Dec 14, 2022
ilya-lavrenov added a commit that referenced this issue Jan 5, 2023
* Configured dependabot updates for main pip requirements

* Fixed MO working directory

* Update .github/workflows/build_doc.yml

* pip(deps): bump urllib3 from 1.26.5 to 1.26.13 (#62)

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.5 to 1.26.13.
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@1.26.5...1.26.13)

---
updated-dependencies:
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* pip(deps): bump six from 1.15.0 to 1.16.0 (#60)

Bumps [six](https://github.com/benjaminp/six) from 1.15.0 to 1.16.0.
- [Release notes](https://github.com/benjaminp/six/releases)
- [Changelog](https://github.com/benjaminp/six/blob/master/CHANGES)
- [Commits](benjaminp/six@1.15.0...1.16.0)

---
updated-dependencies:
- dependency-name: six
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* pip(deps): bump imagesize from 1.2.0 to 1.4.1 (#70)

Bumps [imagesize](https://github.com/shibukawa/imagesize_py) from 1.2.0 to 1.4.1.
- [Release notes](https://github.com/shibukawa/imagesize_py/releases)
- [Commits](shibukawa/imagesize_py@1.2.0...1.4.1)

---
updated-dependencies:
- dependency-name: imagesize
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
akashchi pushed a commit to akashchi/openvino that referenced this issue Dec 6, 2023
dmatveev added a commit to dmatveev/openvino that referenced this issue Jun 12, 2024
…odel_usecase

[NPUW] Enable single-model inference
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
category: CPU OpenVINO CPU plugin
Projects
None yet
Development

No branches or pull requests

6 participants