Files
Ayase Minori 6c4654b17f Add ImageFramePacket benchmark
This is based from our test case, could add an actual image later

Signed-off-by: Ayase Minori <ayane@vignetteapp.org>
2024-03-30 21:54:45 +08:00

22 lines
565 B
C#

// Copyright (c) homuler and The Vignette Authors
// This file is part of MediaPipe.NET.
// MediaPipe.NET is licensed under the MIT License. See LICENSE for details.
using BenchmarkDotNet.Running;
namespace Mediapipe.Net.Benchmarks
{
public class Program
{
public static void Main(string[] args)
{
var switcher = new BenchmarkSwitcher(new[]
{
typeof(FloatPacketPerformanceBenchmark), typeof(ImageFramePacketPerformanceBenchmark)
});
switcher.Run(args);
}
}
}