Merge pull request 'fix benchmarks' (#1517) from fix-bench into main

Reviewed-on: https://codeberg.org/uzu/strudel/pulls/1517
This commit is contained in:
Alex McLean 2025-08-23 18:39:52 +02:00
commit 8c97f2e2d0
2 changed files with 10 additions and 10 deletions

View file

@ -1,11 +1,11 @@
import { describe, bench } from 'vitest'; import { describe, bench } from 'vitest';
import { calculateTactus, sequence, stack } from '../index.mjs'; import { calculateSteps, sequence, stack } from '../index.mjs';
const pat64 = sequence(...Array(64).keys()); const pat64 = sequence(...Array(64).keys());
describe('steps', () => { describe('steps', () => {
calculateTactus(true); calculateSteps(true);
bench( bench(
'+tactus', '+tactus',
() => { () => {
@ -14,7 +14,7 @@ describe('steps', () => {
{ time: 1000 }, { time: 1000 },
); );
calculateTactus(false); calculateSteps(false);
bench( bench(
'-tactus', '-tactus',
() => { () => {
@ -25,7 +25,7 @@ describe('steps', () => {
}); });
describe('stack', () => { describe('stack', () => {
calculateTactus(true); calculateSteps(true);
bench( bench(
'+tactus', '+tactus',
() => { () => {
@ -34,7 +34,7 @@ describe('stack', () => {
{ time: 1000 }, { time: 1000 },
); );
calculateTactus(false); calculateSteps(false);
bench( bench(
'-tactus', '-tactus',
() => { () => {
@ -43,4 +43,4 @@ describe('stack', () => {
{ time: 1000 }, { time: 1000 },
); );
}); });
calculateTactus(true); calculateSteps(true);

View file

@ -1,10 +1,10 @@
import { describe, bench } from 'vitest'; import { describe, bench } from 'vitest';
import { calculateTactus } from '../../core/index.mjs'; import { calculateSteps } from '../../core/index.mjs';
import { mini } from '../index.mjs'; import { mini } from '../index.mjs';
describe('mini', () => { describe('mini', () => {
calculateTactus(true); calculateSteps(true);
bench( bench(
'+tactus', '+tactus',
() => { () => {
@ -13,7 +13,7 @@ describe('mini', () => {
{ time: 1000 }, { time: 1000 },
); );
calculateTactus(false); calculateSteps(false);
bench( bench(
'-tactus', '-tactus',
() => { () => {
@ -21,5 +21,5 @@ describe('mini', () => {
}, },
{ time: 1000 }, { time: 1000 },
); );
calculateTactus(true); calculateSteps(true);
}); });