We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm opening this issue for
I would like to compare how much memory my solutions use. I don't know how reliable this is, but might be better then nothing.
This is how I'm doing it, it only works for a single run. There are many potential problems to this
complete((summary) => { const used = process.memoryUsage().heapUsed / 1024 / 1024; console.log(`\nThe script uses approximately ${Math.round(used * 100) / 100} MB`); }),
The text was updated successfully, but these errors were encountered:
caderek
No branches or pull requests
Hi, I'm opening this issue for
I would like to compare how much memory my solutions use. I don't know how reliable this is, but might be better then nothing.
This is how I'm doing it, it only works for a single run. There are many potential problems to this
The text was updated successfully, but these errors were encountered: