Skip to content
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

Isolate libraries in different processes #13

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"printWidth": 140,
"singleQuote": false,
"jsxSingleQuote": false,
"semi": true,
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "vitest run",
"build": "esbuild src/index.ts --bundle --format=cjs --platform=node --outdir=dist --sourcemap=external",
"build": "esbuild src/index.ts --bundle --splitting --format=esm --platform=node --outdir=dist --sourcemap=external",
"run": "node --expose-gc dist/index.js",
"bench": "esbuild src/index.ts --bundle --format=cjs --platform=node | node --expose-gc"
"bench": "pnpm run build && pnpm run run"
},
"keywords": [],
"author": "",
Expand Down
56 changes: 19 additions & 37 deletions src/config.ts
Original file line number Diff line number Diff line change
@@ -1,48 +1,30 @@
import { TestConfig, FrameworkInfo } from "./util/frameworkTypes";

import { alienFramework } from "./frameworks/alienSignals";
import { angularFramework } from "./frameworks/angularSignals";
import { mobxFramework } from "./frameworks/mobx";
import { tc39SignalsProposalStage0 } from "./frameworks/tc39-proposal-signals-stage-0";
import { molWireFramework } from "./frameworks/molWire";
import { obyFramework } from "./frameworks/oby";
import { preactSignalFramework } from "./frameworks/preactSignals";
import { reactivelyFramework } from "./frameworks/reactively";
import { signiaFramework } from "./frameworks/signia";
import { solidFramework } from "./frameworks/solid";
import { sFramework } from "./frameworks/s";
import { usignalFramework } from "./frameworks/uSignal";
import { vueReactivityFramework } from "./frameworks/vueReactivity";
import { svelteFramework } from "./frameworks/svelte";
import { tansuFramework } from "./frameworks/tansu";
// import { compostateFramework } from "./frameworks/compostate";
// import { valtioFramework } from "./frameworks/valtio";

export const frameworkInfo: FrameworkInfo[] = [
{ framework: alienFramework, testPullCounts: true },
{ framework: preactSignalFramework, testPullCounts: true },
{ framework: svelteFramework, testPullCounts: true },
{ framework: tc39SignalsProposalStage0, testPullCounts: true },
{ framework: reactivelyFramework, testPullCounts: true },
{ framework: sFramework },
{ framework: tansuFramework, testPullCounts: true },
{ framework: angularFramework, testPullCounts: true },
{ framework: molWireFramework, testPullCounts: true },
{ framework: obyFramework, testPullCounts: true },
{ framework: signiaFramework, testPullCounts: true },
{ framework: solidFramework },
{ framework: usignalFramework, testPullCounts: true },
{ framework: vueReactivityFramework, testPullCounts: true },
export const frameworkInfo: (() => Promise<FrameworkInfo>)[] = [
async () => ({ framework: (await import("./frameworks/alienSignals")).alienFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/preactSignals")).preactSignalFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/svelte")).svelteFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/tc39-proposal-signals-stage-0")).tc39SignalsProposalStage0, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/reactively")).reactivelyFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/s")).sFramework }),
async () => ({ framework: (await import("./frameworks/tansu")).tansuFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/angularSignals")).angularFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/molWire")).molWireFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/oby")).obyFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/signia")).signiaFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/solid")).solidFramework }),
async () => ({ framework: (await import("./frameworks/uSignal")).usignalFramework, testPullCounts: true }),
async () => ({ framework: (await import("./frameworks/vueReactivity")).vueReactivityFramework, testPullCounts: true }),
// NOTE: MobX currently hangs on some of the `dynamic` tests and `cellx` tests, so disable it if you want to run them. (https://github.com/mobxjs/mobx/issues/3926)
{ framework: mobxFramework, testPullCounts: false },
async () => ({ framework: (await import("./frameworks/mobx")).mobxFramework, testPullCounts: false }),

// --- Disabled frameworks ---
// NOTE: the compostate adapter is currently broken and unused.
// { framework: compostateFramework },
// async () => ({ framework: (await import("./frameworks/compostate")).compostateFramework }),
// NOTE: the kairo adapter is currently broken and unused.
// { framework: kairoFramework, testPullCounts: true },
// async () => ({ framework: (await import("./frameworks/kairo")).kairoFramework, testPullCounts: true }),
// NOTE: Valtio currently hangs on some of the `dynamic` tests, so disable it if you want to run them. (https://github.com/pmndrs/valtio/discussions/949)
// { framework: valtioFramework },
// async () => ({ framework: (await import("./frameworks/valtio")).valtioFramework }),
];

export const perfTests: TestConfig[] = [
Expand Down
2 changes: 1 addition & 1 deletion src/frameworks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { expect, test, vi } from "vitest";
import { FrameworkInfo, TestConfig } from "./util/frameworkTypes";
import { frameworkInfo } from "./config";

frameworkInfo.forEach((frameworkInfo) => frameworkTests(frameworkInfo));
(await Promise.all(frameworkInfo.map((frameworkLoader) => frameworkLoader()))).forEach((frameworkInfo) => frameworkTests(frameworkInfo));

function makeConfig(): TestConfig {
return {
Expand Down
38 changes: 31 additions & 7 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
import cluster from "cluster";
import { dynamicBench } from "./dynamicBench";
// import { cellxbench } from "./cellxBench";
import { sbench } from "./sBench";
import { frameworkInfo } from "./config";
import { logPerfResult, perfReportHeaders } from "./util/perfLogging";
import { molBench } from "./molBench";
import { kairoBench } from "./kairoBench";
import { FrameworkInfo } from "./util/frameworkTypes";

async function main() {
logPerfResult(perfReportHeaders());
(globalThis as any).__DEV__ = true;
async function testFramework(frameworkTestPromise: () => Promise<FrameworkInfo>) {
try {
(globalThis as any).__DEV__ = true;

for (const frameworkTest of frameworkInfo) {
const frameworkTest = await frameworkTestPromise();
const { framework } = frameworkTest;

await kairoBench(framework);
await molBench(framework);
sbench(framework);
Expand All @@ -24,8 +25,31 @@ async function main() {

await dynamicBench(frameworkTest);

globalThis.gc?.();
process.exit(0);
} catch (err: any) {
console.error(err);
process.exit(1);
}
}

async function main() {
logPerfResult(perfReportHeaders());

for (let i = 0, l = frameworkInfo.length; i < l; i++) {
await new Promise<void>((resolve, reject) =>
cluster.fork({ FRAMEWORK_ID: i }).addListener("exit", (code, signal) => {
if (code === 0) {
resolve();
} else {
reject(new Error(`Framework test failed with code ${code} and signal ${signal}`));
}
})
);
}
}

main();
if (cluster.isPrimary) {
main();
} else {
testFramework(frameworkInfo[+process.env.FRAMEWORK_ID!]);
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"strict": true,
"target": "ESNext",
"moduleResolution": "Bundler",
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"types": ["@types/node"],
"noEmit": true,
Expand Down
Loading