// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp.Sandbox46 { using System; using System.Runtime.DesignerServices; using ImageSharp.Benchmarks.Color.Bulk; using ImageSharp.Tests; using Xunit.Abstractions; public class Program { private class ConsoleOutput : ITestOutputHelper { public void WriteLine(string message) { Console.WriteLine(message); } public void WriteLine(string format, params object[] args) { Console.WriteLine(format, args); } } /// /// The main entry point. Useful for executing benchmarks and performance unit tests manually, /// when the IDE test runners lack some of the functionality. Eg.: it's not possible to run JetBrains memory profiler for unit tests. /// /// /// The arguments to pass to the program. /// public static void Main(string[] args) { // RunDecodeJpegProfilingTests(); TestPixelAccessorCopyFromXyzw(); Console.ReadLine(); } private static void TestPixelAccessorCopyFromXyzw() { PixelAccessorVirtualCopy benchmark = new PixelAccessorVirtualCopy(); benchmark.Width = 64; benchmark.Setup(); benchmark.CopyRawUnsafeInlined(); benchmark.Cleanup(); } private static void RunDecodeJpegProfilingTests() { Console.WriteLine("RunDecodeJpegProfilingTests..."); JpegProfilingBenchmarks benchmarks = new JpegProfilingBenchmarks(new ConsoleOutput()); foreach (object[] data in JpegProfilingBenchmarks.DecodeJpegData) { string fileName = (string)data[0]; benchmarks.DecodeJpeg(fileName); } } } }