Update inspireface to 1.2.0

This commit is contained in:
Jingyu
2025-03-25 00:51:26 +08:00
parent 977ea6795b
commit ca64996b84
388 changed files with 28584 additions and 13036 deletions

View File

@@ -119,7 +119,7 @@ def print_benchmark_table(benchmark_results):
header_format = "{:<20} | {:<10} | {:<15} | {:<15}"
row_format = "{:<20} | {:<10} | {:>10.2f} ms | {:>10.4f} ms"
print(header_format.format('Benchmark', 'Loops', 'Total Time', 'Avg Time'))
print("-" * 70) # 调整分割线长度以匹配标题长度
print("-" * 70)
for name, loops, total_time in benchmark_results:
avg_time = total_time / loops