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

[OpenVino] Plugins not installed properly #43184

Open
DougRogers opened this issue Jan 9, 2025 · 1 comment
Open

[OpenVino] Plugins not installed properly #43184

DougRogers opened this issue Jan 9, 2025 · 1 comment
Assignees
Labels
category:port-bug The issue is with a library, which is something the port should already support

Comments

@DougRogers
Copy link

DougRogers commented Jan 9, 2025

Operating system

Windows

Compiler

MSVC

Steps to reproduce the behavior

If you install OpenVino with the default plugins
vcpkg install openvino[core,onnx,tensorflow,pytorch,paddle]:x64-windows

They do not appear to be installed.  Running the example below lists the available plugins, but none are listed.

#include <iostream>
#include <openvino/frontend/manager.hpp>

int main()
{
    // Create a FrontendManager instance
    ov::frontend::FrontEndManager frontend_manager;

    // Get the available frontends
    auto available_frontends = frontend_manager.get_available_front_ends();

    // Print the available frontends
    std::cout << "Available frontends:" << std::endl;
    for (const auto &frontend : available_frontends)
    {
        std::cout << "- " << frontend << std::endl;
    }

    return 0;
}

Expected Output
Available frontends:
- onnx
- tensorflow
- pytorch
- paddle
@DougRogers DougRogers added the category:port-bug The issue is with a library, which is something the port should already support label Jan 9, 2025
@DougRogers
Copy link
Author

List of Expected .dll Plugin Files

ONNX Frontend
File: onnx_frontend.dll
Enables loading ONNX models.

TensorFlow Frontend
File: tensorflow_frontend.dll
Enables loading TensorFlow 1.x and 2.x models.

PyTorch Frontend
File: pytorch_frontend.dll
Enables loading PyTorch models.

PaddlePaddle Frontend
File: paddle_frontend.dll
Enables loading PaddlePaddle models.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
category:port-bug The issue is with a library, which is something the port should already support
Projects
None yet
Development

No branches or pull requests

2 participants