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.
|
- using BenchmarkDotNet.Running;
- using System.Diagnostics;
-
- namespace LLama.Benchmark
- {
- public class Program
- {
- public static void Main(string[] args)
- {
- if (args.Length == 1)
- {
- var modelDir = args[0];
- Constants.ModelDir = modelDir;
- Console.WriteLine($"#################### model dir: {modelDir}");
- }
-
- var summary = BenchmarkRunner.Run(typeof(Program).Assembly);
- Console.WriteLine(summary);
- }
- }
- }
|