Skip to content

Commit

Permalink
Add WebGPU blog to website (#19782)
Browse files Browse the repository at this point in the history
### Description
<!-- Describe your changes. -->



### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
  • Loading branch information
sophies927 authored Mar 6, 2024
1 parent 25cd2bf commit 3e1e864
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
Binary file added src/images/blogs/webgpu_blog_thumbnail.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 14 additions & 4 deletions src/routes/blogs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import Phi2Image from '../../routes/blogs/accelerating-phi-2/Phi2_Int4_TokenGenerationTP.png';
import { createEventDispatcher } from 'svelte';
import ORT117Thumbnail from '../../images/blogs/ort-1-17-thumbnail.png';
import WebGPUImage from '../../images/blogs/webgpu_blog_thumbnail.jpg';
import WebTrainingImage from '../../images/blogs/webtraining_blog_thumbnail.png';
onMount(() => {
anime({
Expand Down Expand Up @@ -40,6 +41,15 @@
dispatch('switchTab', tab);
}
let featuredblog = [
{
title: 'ONNX Runtime Web unleashes generative AI in the browser using WebGPU',
date: 'February 29th, 2024',
blurb:
'We are thrilled to announce the official launch of ONNX Runtime Web featuring WebGPU, which is now available in the ONNX Runtime 1.17 release.',
link: 'https://cloudblogs.microsoft.com/opensource/2024/02/29/onnx-runtime-web-unleashes-generative-ai-in-the-browser-using-webgpu/',
image: WebGPUImage,
imgalt: 'Comparison of ONNX Runtime Web with WebGPU EP on GPU vs. WASM EP on CPU for segment anything example'
},
{
title: 'ONNX Runtime 1.17: CUDA 12 support, Phi-2 optimizations, WebGPU, and more!',
date: 'February 28th, 2024',
Expand All @@ -57,7 +67,9 @@
link: 'blogs/accelerating-phi-2',
image: Phi2Image,
imgalt: 'Phi2 float16 token generation throughput comparison'
},
}
];
let blogs = [
{
title: 'On-Device Training: Training a model in browser',
date: 'February 6th, 2024',
Expand All @@ -66,9 +78,7 @@
link: 'https://cloudblogs.microsoft.com/opensource/2024/02/06/on-device-training-training-a-model-in-browser',
image: WebTrainingImage,
imgalt: 'Components of the onnxruntime-web JS package'
}
];
let blogs = [
},
{
title: 'Accelerating SD Turbo and SDXL Turbo Inference with ONNX Runtime and Olive',
date: 'January 15th, 2024',
Expand Down

0 comments on commit 3e1e864

Please sign in to comment.