Skip to content
Merged
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 .oxlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"unicorn/no-null": "off",
"unicorn/no-useless-undefined": "off",
"unicorn/numeric-separators-style": "off",
"unicorn/prefer-export-from": "off",
"unicorn/prefer-global-this": "off",
"unicorn/prefer-top-level-await": "off"
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@
"audit-ci": "^7.1.0",
"is-ci": "^4.1.0",
"lefthook": "^2.1.9",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@11.5.2"
"packageManager": "pnpm@11.7.0"
}
46 changes: 23 additions & 23 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@
"capture:fixtures": "tsx scripts/capture-cypress-fixtures.ts"
},
"dependencies": {
"@chenglou/pretext": "^0.0.7",
"@chenglou/pretext": "^0.0.8",
"@jpinsonneau/html-to-image": "^1.11.13",
"@noble/ciphers": "^2.2.0",
"@posthog/nextjs-config": "^1.9.54",
"@radix-ui/react-accordion": "^1.2.13",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-label": "^2.1.9",
"@radix-ui/react-popover": "^1.1.16",
"@radix-ui/react-select": "^2.3.0",
"@radix-ui/react-slot": "^1.2.5",
"@radix-ui/react-switch": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.14",
"@radix-ui/react-tooltip": "^1.2.9",
"@posthog/nextjs-config": "^1.9.68",
"@radix-ui/react-accordion": "^1.2.14",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-label": "^2.1.10",
"@radix-ui/react-popover": "^1.1.17",
"@radix-ui/react-select": "^2.3.1",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.1",
"@radix-ui/react-tabs": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.10",
"@react-three/fiber": "^9.6.1",
"@semianalysisai/inferencex-constants": "workspace:*",
"@semianalysisai/inferencex-db": "workspace:*",
Expand All @@ -55,15 +55,15 @@
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"dompurify": "^3.4.8",
"dompurify": "^3.4.10",
"gray-matter": "^4.0.3",
"iwanthue": "^2.0.0",
"lucide-react": "^1.17.0",
"lucide-react": "^1.20.0",
"mp4-muxer": "^5.2.2",
"next": "^16.2.7",
"next": "^16.2.9",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"posthog-js": "^1.383.1",
"posthog-js": "^1.387.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"remark-gfm": "^4.0.1",
Expand All @@ -73,27 +73,27 @@
},
"devDependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.8",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/postcss": "^4.3.1",
"@types/adm-zip": "^0.5.8",
"@types/d3": "^7.4.3",
"@types/mdast": "^4.0.4",
"@types/node": "^25.9.2",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.184.1",
"@vitest/coverage-v8": "^4.1.8",
"cypress": "^15.16.0",
"cypress-split": "^1.24.31",
"@vitest/coverage-v8": "^4.1.9",
"cypress": "^15.17.0",
"cypress-split": "^1.25.0",
"dotenv": "^17.4.2",
"dotenv-cli": "^11.0.0",
"esbuild": "^0.28.0",
"esbuild": "^0.28.1",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"tailwindcss": "^4.3.0",
"tailwindcss": "^4.3.1",
"tsx": "^4.22.4",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
"vitest": "^4.1.9"
},
"engines": {
"node": ">=18.0.0",
Expand Down
3 changes: 1 addition & 2 deletions packages/app/src/components/inference/ui/ScatterGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1839,8 +1839,7 @@ const ScatterGraph = React.memo(

const result: LayerConfig<InferenceData>[] = [rooflineLayer, scatterLayer];
if (overlayLayer) result.push(overlayLayer);
result.push(speedOverlayLayer);
result.push(knownIssueLayer);
result.push(speedOverlayLayer, knownIssueLayer);
return result;
}, [
knownIssueAnnotations,
Expand Down
11 changes: 6 additions & 5 deletions packages/app/src/components/inference/utils/paretoLabels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,12 @@ export const computeGradientStops = (
const blendFraction = 0.05 + similarity * 0.15;
const blendSize = Math.min(gap, nextGap) * blendFraction;

// Current color runs solid until just before boundary
stops.push({ offset: toOffset(leftPx), color: curr.color });
stops.push({ offset: toOffset(rightPx - blendSize), color: curr.color });
// Blend zone
stops.push({ offset: toOffset(rightPx + blendSize), color: next.color });
// Current color runs solid until just before boundary, then blend zone
stops.push(
{ offset: toOffset(leftPx), color: curr.color },
{ offset: toOffset(rightPx - blendSize), color: curr.color },
{ offset: toOffset(rightPx + blendSize), color: next.color },
);
} else if (i === 0) {
// Same label, just add the territory start
stops.push({ offset: toOffset(leftPx), color: curr.color });
Expand Down
8 changes: 5 additions & 3 deletions packages/app/src/lib/compare-ssr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,11 @@ function jsonLdEntryFor(key: string, summary: PairSummary, position: number) {
const label = meta?.label ?? key.toUpperCase();
const props: { name: string; value: string | number }[] = [{ name: 'Category', value: 'GPU' }];
if (meta) {
props.push({ name: 'Vendor', value: meta.vendor });
props.push({ name: 'Architecture', value: meta.arch });
props.push({ name: 'TDP (W)', value: meta.tdp });
props.push(
{ name: 'Vendor', value: meta.vendor },
{ name: 'Architecture', value: meta.arch },
{ name: 'TDP (W)', value: meta.tdp },
);
}
if (summary.bestThroughputPerGpu !== null) {
props.push({
Expand Down
4 changes: 2 additions & 2 deletions packages/constants/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test:unit:coverage": "vitest run --coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.8",
"vitest": "^4.1.8"
"@vitest/coverage-v8": "^4.1.9",
"vitest": "^4.1.9"
}
}
6 changes: 3 additions & 3 deletions packages/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
},
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/node": "^25.9.2",
"@vitest/coverage-v8": "^4.1.8",
"@types/node": "^25.9.3",
"@vitest/coverage-v8": "^4.1.9",
"adm-zip": "^0.5.17",
"dotenv-cli": "^11.0.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
"vitest": "^4.1.9"
}
}
4 changes: 2 additions & 2 deletions packages/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.2",
"@types/node": "^25.9.3",
"dotenv-cli": "^11.0.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
"vitest": "^4.1.9"
}
}
Loading
Loading