Skip to content

Commit

Permalink
fix: use 4 runs per temperature in stability checker
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Mitchell <[email protected]>
  • Loading branch information
starpit committed Mar 7, 2025
1 parent a99bb13 commit 4cae296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdl-live-react/src/view/masonry/RunMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function RunMenu({ block, run }: Props) {
const runTemperature = useCallback(async () => {
if (block && run) {
const { runNTimes } = await import("./stability")
await runNTimes(block, run, 3, [0, 0.33, 0.66, 1])
await runNTimes(block, run, 4, [0, 0.33, 0.66, 1])
}
}, [block, run])

Expand Down

0 comments on commit 4cae296

Please sign in to comment.