Skip to content

Commit

Permalink
chore: expand benchmark iterations (#14944)
Browse files Browse the repository at this point in the history
  • Loading branch information
trueadm authored Jan 8, 2025
1 parent 48e3db2 commit deb362f
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions benchmarking/benchmarks/reactivity/kairo/kairo_avoidable.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export async function kairo_avoidable_unowned() {
const { run, destroy } = setup();

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down Expand Up @@ -74,7 +74,7 @@ export async function kairo_avoidable_owned() {
});

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down
4 changes: 2 additions & 2 deletions benchmarking/benchmarks/reactivity/kairo/kairo_broad.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function kairo_broad_unowned() {
const { run, destroy } = setup();

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down Expand Up @@ -80,7 +80,7 @@ export async function kairo_broad_owned() {
});

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down
4 changes: 2 additions & 2 deletions benchmarking/benchmarks/reactivity/kairo/kairo_deep.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function kairo_deep_unowned() {
const { run, destroy } = setup();

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down Expand Up @@ -80,7 +80,7 @@ export async function kairo_deep_owned() {
});

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down
4 changes: 2 additions & 2 deletions benchmarking/benchmarks/reactivity/kairo/kairo_diamond.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export async function kairo_diamond_unowned() {
const { run, destroy } = setup();

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down Expand Up @@ -84,7 +84,7 @@ export async function kairo_diamond_owned() {
});

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down
4 changes: 2 additions & 2 deletions benchmarking/benchmarks/reactivity/kairo/kairo_mux.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function kairo_mux_unowned() {
const { run, destroy } = setup();

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down Expand Up @@ -77,7 +77,7 @@ export async function kairo_mux_owned() {
});

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down
4 changes: 2 additions & 2 deletions benchmarking/benchmarks/reactivity/kairo/kairo_repeated.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export async function kairo_repeated_unowned() {
const { run, destroy } = setup();

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down Expand Up @@ -81,7 +81,7 @@ export async function kairo_repeated_owned() {
});

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down
4 changes: 2 additions & 2 deletions benchmarking/benchmarks/reactivity/kairo/kairo_triangle.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export async function kairo_triangle_unowned() {
const { run, destroy } = setup();

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down Expand Up @@ -94,7 +94,7 @@ export async function kairo_triangle_owned() {
});

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down
4 changes: 2 additions & 2 deletions benchmarking/benchmarks/reactivity/kairo/kairo_unstable.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function kairo_unstable_unowned() {
const { run, destroy } = setup();

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down Expand Up @@ -80,7 +80,7 @@ export async function kairo_unstable_owned() {
});

const { timing } = await fastest_test(10, () => {
for (let i = 0; i < 100; i++) {
for (let i = 0; i < 1000; i++) {
run();
}
});
Expand Down

0 comments on commit deb362f

Please sign in to comment.