-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
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
benchmark: add a benchmark for read() of ReadableStreams #49622
benchmark: add a benchmark for read() of ReadableStreams #49622
Conversation
Commit Queue failed- Loading data for nodejs/node/pull/49622 ✔ Done loading data for nodejs/node/pull/49622 ----------------------------------- PR info ------------------------------------ Title benchmark: add a benchmark for read() of ReadableStreams (#49622) Author Debadree Chatterjee (@debadree25) Branch debadree25:ft/bench-readable-read -> nodejs:main Labels benchmark, performance, author ready Commits 2 - benchmark: add a benchmark for read() of ReadableStreams - fixup! lint Committers 1 - Debadree Chatterjee PR-URL: https://github.com/nodejs/node/pull/49622 Refs: https://github.com/nodejs/performance/issues/82 Reviewed-By: Yagiz Nizipli ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/49622 Refs: https://github.com/nodejs/performance/issues/82 Reviewed-By: Yagiz Nizipli -------------------------------------------------------------------------------- ℹ This PR was created on Tue, 12 Sep 2023 10:42:20 GMT ✔ Approvals: 1 ✔ - Yagiz Nizipli (@anonrig) (TSC): https://github.com/nodejs/node/pull/49622#pullrequestreview-1623539599 ✘ This PR needs to wait 29 more hours to land (or 0 hours if there is one more approval) ✔ Last GitHub CI successful ℹ Green GitHub CI is sufficient -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/6218493460 |
ah needs another approval |
Commit Queue failed- Loading data for nodejs/node/pull/49622 ✔ Done loading data for nodejs/node/pull/49622 ----------------------------------- PR info ------------------------------------ Title benchmark: add a benchmark for read() of ReadableStreams (#49622) Author Debadree Chatterjee (@debadree25) Branch debadree25:ft/bench-readable-read -> nodejs:main Labels benchmark, performance, author ready Commits 2 - benchmark: add a benchmark for read() of ReadableStreams - fixup! lint Committers 1 - Debadree Chatterjee PR-URL: https://github.com/nodejs/node/pull/49622 Refs: https://github.com/nodejs/performance/issues/82 Reviewed-By: Yagiz Nizipli ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/49622 Refs: https://github.com/nodejs/performance/issues/82 Reviewed-By: Yagiz Nizipli -------------------------------------------------------------------------------- ℹ This PR was created on Tue, 12 Sep 2023 10:42:20 GMT ✔ Approvals: 1 ✔ - Yagiz Nizipli (@anonrig) (TSC): https://github.com/nodejs/node/pull/49622#pullrequestreview-1623539599 ✘ This PR needs to wait 4 more hours to land (or 0 hours if there is one more approval) ✔ Last GitHub CI successful ℹ Green GitHub CI is sufficient -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/6231626698 |
Commit Queue failed- Loading data for nodejs/node/pull/49622 ✔ Done loading data for nodejs/node/pull/49622 ----------------------------------- PR info ------------------------------------ Title benchmark: add a benchmark for read() of ReadableStreams (#49622) Author Debadree Chatterjee (@debadree25) Branch debadree25:ft/bench-readable-read -> nodejs:main Labels benchmark, performance, author ready Commits 2 - benchmark: add a benchmark for read() of ReadableStreams - fixup! lint Committers 1 - Debadree Chatterjee PR-URL: https://github.com/nodejs/node/pull/49622 Refs: https://github.com/nodejs/performance/issues/82 Reviewed-By: Yagiz Nizipli ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/49622 Refs: https://github.com/nodejs/performance/issues/82 Reviewed-By: Yagiz Nizipli -------------------------------------------------------------------------------- ℹ This PR was created on Tue, 12 Sep 2023 10:42:20 GMT ✔ Approvals: 1 ✔ - Yagiz Nizipli (@anonrig) (TSC): https://github.com/nodejs/node/pull/49622#pullrequestreview-1623539599 ✔ Last GitHub CI successful ℹ Green GitHub CI is sufficient -------------------------------------------------------------------------------- ✔ No git cherry-pick in progress ✔ No git am in progress ✔ No git rebase in progress -------------------------------------------------------------------------------- - Bringing origin/main up to date... From https://github.com/nodejs/node * branch main -> FETCH_HEAD ✔ origin/main is now up-to-date - Downloading patch for 49622 From https://github.com/nodejs/node * branch refs/pull/49622/merge -> FETCH_HEAD ✔ Fetched commits as 2ccfb23b7fc8..2f0c075a78da -------------------------------------------------------------------------------- [main de7b9357a5] benchmark: add a benchmark for read() of ReadableStreams Author: Debadree Chatterjee Date: Tue Sep 12 16:09:45 2023 +0530 1 file changed, 49 insertions(+) create mode 100644 benchmark/webstreams/readable-read.js [main b2a9f7b33f] fixup! lint Author: Debadree Chatterjee Date: Tue Sep 12 16:32:19 2023 +0530 1 file changed, 2 insertions(+), 2 deletions(-) ✔ Patches applied There are 2 commits in the PR. Attempting autorebase. Rebasing (2/4)https://github.com/nodejs/node/actions/runs/6234511673 |
Landed in cd97e28 |
Refs: nodejs/performance#82 PR-URL: #49622 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Refs: nodejs/performance#82 PR-URL: nodejs#49622 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
While looking at nodejs/performance#82 and trying to find a way to optimise read() realised that there is no specific benchmark for the read() function and the byob variant of read too
Refs: nodejs/performance#82