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
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const cols = [
</div>
<p class="mt-4 text-sm text-muted leading-relaxed max-w-xs">
The commercial arm of the open-source Devito project — performance-portable
finite-difference HPC for seismic imaging.
seismic imaging.
</p>
<div class="mt-5 flex gap-4 text-muted">
<a href={site.social.github} target="_blank" rel="noopener noreferrer" class="hover:text-ink">GitHub</a>
Expand Down
6 changes: 3 additions & 3 deletions src/data/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const useCases = {
{ title: 'Embed in your stack', body: 'Call DevitoPRO from applications in other languages through the Decoupler API, with full MPI support, and integrate generated propagators into existing inversion engines.' },
{ title: 'Very large models', body: 'Run models beyond the limits of in-house codes using compression, data streaming, expanding-box and mixed precision to keep memory and transfer costs in check.' },
{ title: 'Cloud-native seismic imaging', body: 'Tuned, benchmarked deployments on AWS, Azure and GCP — portable across available instances.' },
{ title: 'Immersed-boundary topography', body: 'Accurate land topography on finite-difference grids via immersed boundary support.' },
{ title: 'Immersed-boundary topography', body: 'Accurate land topography via immersed-boundary support on the simulation grid.' },
{ title: 'Time-lapse (4D) monitoring', body: 'Production workflows for repeat surveys — scale imaging and inversion consistently across vintages.' },
{ title: 'Least-squares imaging (LS-RTM) & variants', body: 'Iterative imaging and imaging-condition variants built from the same symbolic building blocks.' },
],
Expand Down Expand Up @@ -137,7 +137,7 @@ export const caseStudies = [
outlet: 'Intel Customer Spotlight',
date: '2024-11-04',
href: 'https://www.intel.com/content/www/us/en/customer-spotlight/stories/devito-codes-customer-story.html',
body: 'How Devito Codes helps customers resolve the HPC trilemma — performance, portability and productivity — generating optimized finite-difference code from a Python DSL.',
body: 'How Devito Codes helps customers resolve the HPC trilemma — performance, portability and productivity — generating optimized native code from a Python DSL.',
external: true,
},
{
Expand All @@ -161,7 +161,7 @@ export const caseStudies = [
outlet: 'Microsoft Research',
date: '2022-03-03',
href: 'https://www.microsoft.com/en-us/research/video/devito-workshop-at-2022-rice-energy-high-performance-computing-conference/',
body: 'A workshop and hackathon introducing Devito — the DSL and code-generation framework for highly optimized finite-difference kernels such as FWI and RTM — run on Azure CPU and GPU instances, with lightning talks illustrating Devito from end-user, cloud-provider, hardware and academic perspectives.',
body: 'A workshop and hackathon introducing Devito — the DSL and code-generation framework for highly optimized FWI and RTM kernels — run on Azure CPU and GPU instances, with lightning talks illustrating Devito from end-user, cloud-provider, hardware and academic perspectives.',
external: true,
},
];
Expand Down
2 changes: 1 addition & 1 deletion src/data/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface FeatureCategory { name: string; rows: FeatureRow[]; }

export const featureIntro =
'DevitoPRO extends open-source Devito for production seismic imaging and inversion. ' +
'Both express finite-difference kernels symbolically; DevitoPRO adds the tuning, ' +
'Both let you express PDE solvers symbolically; DevitoPRO adds the tuning, ' +
'portability and enterprise support needed for production HPC workflows.';

// Curated headline capabilities — the primary view on /features.
Expand Down
2 changes: 1 addition & 1 deletion src/data/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const site = {

description:
'DevitoPRO — production-grade code generation for seismic imaging and ' +
'finite-difference HPC. Symbolic Python in, optimized native CPU/GPU kernels out.',
'high-performance computing. Symbolic Python in, optimized native CPU/GPU kernels out.',

social: {
github: 'https://github.com/devitocodes',
Expand Down
Loading