40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using BenchmarkDotNet.Columns;
|
|
using BenchmarkDotNet.Configs;
|
|
using BenchmarkDotNet.Diagnosers;
|
|
using BenchmarkDotNet.Engines;
|
|
using BenchmarkDotNet.Exporters;
|
|
using BenchmarkDotNet.Jobs;
|
|
using BenchmarkDotNet.Loggers;
|
|
using BenchmarkDotNet.Toolchains.CsProj;
|
|
using BenchmarkDotNet.Toolchains.DotNetCli;
|
|
using BenchmarkDotNet.Validators;
|
|
|
|
namespace BenchmarkDotNet.Attributes
|
|
{
|
|
internal class FirstRequestConfig : ManualConfig
|
|
{
|
|
public FirstRequestConfig()
|
|
{
|
|
Add(ConsoleLogger.Default);
|
|
Add(MarkdownExporter.GitHub);
|
|
|
|
Add(MemoryDiagnoser.Default);
|
|
Add(StatisticColumn.OperationsPerSecond);
|
|
Add(DefaultColumnProviders.Instance);
|
|
|
|
Add(JitOptimizationsValidator.FailOnError);
|
|
|
|
Add(Job.Core
|
|
.With(CsProjCoreToolchain.From(NetCoreAppSettings.NetCoreApp21))
|
|
.With(new GcMode { Server = true })
|
|
.WithTargetCount(10)
|
|
.WithInvocationCount(1)
|
|
.WithUnrollFactor(1)
|
|
.With(RunStrategy.ColdStart));
|
|
}
|
|
}
|
|
}
|