You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Program.cs 325 B

1 year ago
1234567891011121314
  1. using BenchmarkDotNet.Running;
  2. using System.Diagnostics;
  3. namespace LLama.Benchmark
  4. {
  5. public class Program
  6. {
  7. public static void Main(string[] args)
  8. {
  9. var summary = BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
  10. Console.WriteLine(summary);
  11. }
  12. }
  13. }