feat(new-tool): simple benchmark calculator

This commit is contained in:
Corentin Thomasset 2023-04-05 22:55:40 +02:00 committed by Corentin THOMASSET
parent 004cb83719
commit 6e84ea4061
5 changed files with 225 additions and 1 deletions

View file

@ -0,0 +1,11 @@
import { SpeedFilled } from '@vicons/material';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Benchmark builder',
path: '/benchmark-builder',
description: 'Easily compare execution time of tasks with this very simple online benchmark builder.',
keywords: ['benchmark', 'builder', 'execution', 'duration', 'mean', 'variance'],
component: () => import('./benchmark-builder.vue'),
icon: SpeedFilled,
});