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
4 changes: 2 additions & 2 deletions packages/app/src/components/footer/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export const Footer = () => {
className="text-sm text-muted-foreground max-w-xs text-center md:text-left"
>
Continuous open-source inference benchmarking. Real-world, reproducible, auditable
performance data trusted by trillion dollar AI infrastructure operators like
OpenAI, Oracle, Microsoft, etc.
performance data trusted by trillion dollar AI infrastructure operators like OpenAI,
Oracle, Microsoft, etc.
</p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/lib/chart-rendering.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('SHAPE_CONFIG', () => {

it('hover sizes are larger than normal sizes', () => {
expect(HOVER_POINT_SIZE).toBeGreaterThan(POINT_SIZE);
expect(HOVER_STROKE_WIDTH).toBeGreaterThan(STROKE_WIDTH);
expect(HOVER_STROKE_WIDTH).toBeGreaterThanOrEqual(STROKE_WIDTH);
expect(SHAPE_CONFIG.default.hover.r).toBeGreaterThan(SHAPE_CONFIG.default.normal.r);
});
});
Expand Down
6 changes: 3 additions & 3 deletions packages/app/src/lib/chart-rendering.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import type * as d3 from 'd3';
import { formatNumber } from '@/lib/utils';

// Point shape constants
export const POINT_SIZE = 4; // Base size (radius for circle, half-width/height for rectangle)
export const POINT_SIZE = 3.5; // Base size (radius for circle, half-width/height for rectangle)
export const HOVER_POINT_SIZE = 6; // Hover size
export const STROKE_WIDTH = 1.5; // Normal stroke width
export const HOVER_STROKE_WIDTH = 2; // Hover stroke width
export const STROKE_WIDTH = 0; // Normal stroke width
export const HOVER_STROKE_WIDTH = 0; // Hover stroke width
export const HIT_AREA_RADIUS = 12; // Invisible hit area for easier interaction

// Triangle path for BF16 precision
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/lib/d3-chart/layers/scatter-points.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function renderScatterPoints<T extends { precision: string; x: number; y:
.append(shapeConfig.type)
.attr('class', 'visible-shape')
.attr('fill', config.getColor(d))
.attr('stroke', 'white')
.attr('stroke', 'none')
.attr('cursor', 'pointer') as d3.Selection<
SVGCircleElement | SVGRectElement | SVGPathElement,
unknown,
Expand Down
Loading