credl-parser-evaluator
Version:
TypeScript-based CREDL Parser and Evaluator that processes CREDL files and outputs complete Intermediate Representations
20 lines • 638 B
TypeScript
import { Command } from 'commander';
export interface BenchmarkCommandOptions {
file?: string;
output?: string;
format?: 'table' | 'json' | 'csv';
iterations?: number;
warmup?: number;
verbose?: boolean;
quiet?: boolean;
compare?: string;
history?: boolean;
suite?: 'quick' | 'standard' | 'comprehensive';
threshold?: number;
memory?: boolean;
concurrent?: number;
profile?: boolean;
}
export declare function createBenchmarkCommand(): Command;
export declare function executeBenchmarkCommand(options: BenchmarkCommandOptions): Promise<void>;
//# sourceMappingURL=benchmark.d.ts.map