Giter VIP home page Giter VIP logo

Comments (3)

hi-ogawa avatar hi-ogawa commented on August 16, 2024

It looks like multiple describe are running at the same time:

if (benchmarkSuiteGroup.length)
await Promise.all(benchmarkSuiteGroup.map(subSuite => runBenchmarkSuite(subSuite, runner)))

However, multiple bench inside single describe are executed sequentially, so your sample code with four bench inside single describe shouldn't interfere each other. Can you check if you have multiple describe?

Though I'm not familiar with the field of benchmarking, but I would feel everything should run sequentially by default and that probably gives better stability. Maybe we can check with what other benchmark framework does in general.

I'm playing with examples like this. Multiple bench files also run in parallel by default, but it can be made sequential by fileParallelism = false:

https://stackblitz.com/edit/vitest-dev-vitest-cdshc4?file=test.log

Sample code
import { bench, describe } from "vitest"
import fs from "node:fs";

const sleep = (ms: number) => new Promise(resolve => setTimeout(resolve, ms))

describe("suite1", () => {
  let i = 0;
  bench("bench1", async () => {
    await fs.promises.appendFile("test.log",`file1, suite1, bench1 = ${i++}\n`)
    await sleep(500);
  }, { time: 0, iterations: 0 })

  let j = 0;
  bench("bench2", async () => {
    await fs.promises.appendFile("test.log",`file1, suite1, bench2 = ${j++}\n`)
    await sleep(500);
  }, { time: 0, iterations: 0 })
})

describe("suite2", () => {
  let i = 0;
  bench("bench1", async () => {
    await fs.promises.appendFile("test.log",`file1, suite2, bench1 = ${i++}\n`)
    await sleep(500);
  }, { time: 0, iterations: 0 })
})

from vitest.

peterHakio avatar peterHakio commented on August 16, 2024

Thank you very much. We did what you suggested and it worked fine.

We made implimented it in the vite.config.js like this. Such that we still could have our tests run in parallel

import { defineConfig } from 'vitest/config';

export default defineConfig(({mode})=>({
  test: {
    fileParallelism: mode!=="benchmark",
  },
}));

And regarding if benchmarks should run sequentially. I can see arguments for both. A good first step could be to add a small section for it in the documentation.

from vitest.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.