Skip to content

Commit

Permalink
prepere 0.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gosha20777 committed Aug 11, 2021
1 parent 40e3361 commit 9e5f676
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions FakePlugin/FakePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class FakePlugin : IObjectDetectionPlugin
public string Description => "Fake Description";
public string Author => "Fake Author";
public string Company => "Fake Company";
public IEnumerable<string> Dependences => new[] {"Fake Dependency >= 1.0.0"};
public string Url => "http://fake-url";
public Version Version => new Version(api: 2, major: 1, minor: 0);
public InferenceType InferenceType => InferenceType.Cpu;
Expand Down
3 changes: 2 additions & 1 deletion LacmusPlugin/Enums/InferenceType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public enum InferenceType
CudaGpu = 20,
AmdGpu = 21,
AnyGpu = 22,
GoogleTpu = 30
GoogleTpu = 30,
OpenVinoNpu = 40
}
}
5 changes: 1 addition & 4 deletions LacmusPlugin/IObjectDetectionPlugin.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using LacmusPlugin.Enums;

namespace LacmusPlugin
Expand All @@ -14,6 +10,7 @@ public interface IObjectDetectionPlugin
public string Description { get; }
public string Author { get; }
public string Company { get; }
public IEnumerable<string> Dependences { get; }
public string Url { get; }
public Version Version { get; }
public InferenceType InferenceType { get; }
Expand Down
2 changes: 1 addition & 1 deletion LacmusPlugin/LacmusPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageTags>plugins;lacmus</PackageTags>
<PackageOutputPath>../packages</PackageOutputPath>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageVersion>2.0.2</PackageVersion>
<PackageVersion>2.0.3</PackageVersion>
<LangVersion>9</LangVersion>
</PropertyGroup>

Expand Down
3 changes: 2 additions & 1 deletion LacmusRetinanetPlugin.Cuda/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ public class Plugin : IObjectDetectionPlugin
public string Author => "gosha20777";
public string Company => "Lacmus Foundation";
public string Url => "https://github.com/lacmus-foundation/lacmus";
public Version Version => new Version(api: 2, major: 1, minor: 0);
public IEnumerable<string> Dependences => new[] {"CUDA == 10.1", "CuDNN == 7.6"};
public Version Version => new Version(api: 2, major: 5, minor: 0);
public InferenceType InferenceType => InferenceType.CudaGpu;
public HashSet<OperatingSystem> OperatingSystems => new HashSet<OperatingSystem>()
{
Expand Down
3 changes: 2 additions & 1 deletion LacmusRetinanetPlugin.DirectML/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ public class Plugin : IObjectDetectionPlugin
public string Author => "gosha20777";
public string Company => "Lacmus Foundation";
public string Url => "https://github.com/lacmus-foundation/lacmus";
public Version Version => new Version(api: 2, major: 1, minor: 0);
public IEnumerable<string> Dependences => new[] {"DirectX >= 12.1"};
public Version Version => new Version(api: 2, major: 5, minor: 0);
public InferenceType InferenceType => InferenceType.AnyGpu;
public HashSet<OperatingSystem> OperatingSystems => new HashSet<OperatingSystem>()
{
Expand Down
3 changes: 2 additions & 1 deletion LacmusRetinanetPlugin/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ public class Plugin : IObjectDetectionPlugin
public string Author => "gosha20777";
public string Company => "Lacmus Foundation";
public string Url => "https://github.com/lacmus-foundation/lacmus";
public Version Version => new Version(api: 2, major: 1, minor: 0);
public IEnumerable<string> Dependences => new[] {"(windows) microsoft visual c++ redistributable >= 2019"};
public Version Version => new Version(api: 2, major: 5, minor: 0);
public InferenceType InferenceType => InferenceType.Cpu;
public HashSet<OperatingSystem> OperatingSystems => new HashSet<OperatingSystem>()
{
Expand Down

0 comments on commit 9e5f676

Please sign in to comment.