Skip to content

Commit

Permalink
add support for linux 2330 version, fix #19
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcb committed Feb 28, 2024
1 parent c985b0f commit 0d2153d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sdcb.OpenVINO/Natives/OpenVINOLibraryLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private static IntPtr OpenVINOImportResolver(string libraryName, Assembly assemb
{
if (libraryName == Dll)
{
string[] allowedVersions = new[] { "2320", "2310" };
string[] allowedVersions = new[] { "2330", "2320", "2310" };
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
return LoadWithDeps(assembly, searchPath, new LibDeps("openvino_c.dll", new string[]
Expand Down

0 comments on commit 0d2153d

Please sign in to comment.