import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P } from '../../components/Texts' const useCases = [ { title: 'AI / ML Training', description: 'Scale training, fine-tuning, and inference workloads anywhere on the grid.', bullets: ['GPU acceleration', 'Scalable compute', 'Cost optimization'], }, { title: 'Rendering & Visualization', description: 'Drive high-performance graphics pipelines for media, science, and immersive experiences.', bullets: [ 'Distributed 3D rendering', 'Scientific visualization', 'Real-time VR / AR processing', 'Digital twin simulations', ], }, { title: 'General GPU Computing', description: 'Harness sovereign acceleration for simulations, finance, blockchain, and research.', bullets: [ 'Scientific simulations', 'Financial modeling', 'Blockchain processing', 'Protein folding and discovery', ], }, ] export function GpuUseCases() { return (
Use Cases Acceleration for every intelligent workload.

From deep learning to immersive visualization, Mycelium GPU delivers deterministic access to the power you need without the waitlists or markups of centralized clouds.

{useCases.map((useCase) => (

{useCase.title}

{useCase.description}

    {useCase.bullets.map((bullet) => (
  • {bullet}
  • ))}
))}
) }