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
Binary file added packages/app/public/logos/sglang.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 14 additions & 2 deletions packages/app/src/components/page-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,23 @@ export function PageContent({ initialTab = 'inference' }: { initialTab?: string
<div className="mt-4 pt-4 border-t border-border/50">
<QuoteCarousel
quotes={QUOTES.filter(
(q) => !['NVIDIA', 'AMD', 'Supermicro', 'Vultr'].includes(q.org),
(q) =>
![
'NVIDIA',
'AMD',
'Supermicro',
'Vultr',
'Prime Intellect',
'DatologyAI',
'Stas Bekman',
].includes(q.org),
)}
overrides={{
order: ['OpenAI'],
labels: { 'Together AI': 'Tri Dao' },
labels: {
'Together AI': 'Tri Dao',
'PyTorch Foundation': 'PyTorch',
},
}}
moreHref="/quotes"
/>
Expand Down
7 changes: 7 additions & 0 deletions packages/app/src/components/quotes/quotes-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,11 @@ export const QUOTES: Quote[] = [
title: 'Developer & Author of Machine Learning Engineering Open Book',
org: 'Stas Bekman',
},
{
text: "SGLang is the inference engine behind many production inference factories such as xAI's Grok, earning its recognition as THE Inference King. At scale, we see firsthand how much performance varies across hardware, models, and configurations. InferenceX\u2122 benchmarks SGLang across every major GPU platform nightly, capturing that variance in a way no other benchmark does, continuously, & reproducibly.",
name: 'Mingyi Lu',
title: 'SGLang Product Lead',
org: 'SGLang',
logo: 'sglang.png',
},
];