Skip to content

Commit

Permalink
Add community-contributed LightGlue blog (#21445)
Browse files Browse the repository at this point in the history
### Description
A member of the community contributed a blog about LightGlue inference
with ORT + TensorRT:
https://fabio-sim.github.io/blog/accelerating-lightglue-inference-onnx-runtime-tensorrt/.

This PR adds the blog to the website blogs page:
https://onnxruntime.ai/blogs.

Staged here:
https://reimagined-guide-qjvp49qq7w53gg-5173.app.github.dev/



### Motivation and Context
Resolves this issue:
#21389
  • Loading branch information
sophies927 authored Jul 25, 2024
1 parent 16905cc commit 1ca809f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
Binary file added src/images/blogs/lightglue-community-blog.png
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 @@ -17,6 +17,7 @@
import WebTrainingImage from '../../images/blogs/webtraining_blog_thumbnail.png';
import Phi3OnDeviceImage from '../../images/blogs/phi-3-on-device_blog_thumbnail.png';
import Phi3SmallMediumImage from '../../images/blogs/accelerating-phi-3-medium-thumbnail.png';
import LightGlueImage from '../../images/blogs/lightglue-community-blog.png';
onMount(() => {
anime({
targets: '.border-primary',
Expand Down Expand Up @@ -44,6 +45,16 @@
dispatch('switchTab', tab);
}
let featuredblog = [
{
title: 'Accelerating LightGlue Inference with ONNX Runtime and TensorRT',
date: 'July 17th, 2024',
blurb:
'Outperform torch.compile significantly using ONNX Runtime with TensorRT for LightGlue inference.',
link: 'https://fabio-sim.github.io/blog/accelerating-lightglue-inference-onnx-runtime-tensorrt/',
image: LightGlueImage,
imgalt:
'Speedup for ONNX Runtime with TensorRT and CUDA vs. torch.compile for difference batch sizes and sequence lengths.'
},
{
title: 'High performance on-device real-time ML with NimbleEdge, using ONNX Runtime',
date: 'June 17th, 2024',
Expand All @@ -64,6 +75,9 @@
imgalt:
'Image of a skateboarder with a sky background, with half of the background being alternating grey and white squares indicating it has been removed.'
},
];
let blogs = [
{
title: 'Phi-3 Small and Medium Models are now Optimized with ONNX Runtime and DirectML',
date: 'May 21th, 2024',
Expand All @@ -74,10 +88,6 @@
imgalt:
'Chart comparing model size (in GB) of ONNX Phi-3-medium between PyTorch and ONNX Runtime'
},
];
let blogs = [
{
title: 'Enjoy the Power of Phi-3 with ONNX Runtime on your device',
date: 'May 20th, 2024',
Expand Down

0 comments on commit 1ca809f

Please sign in to comment.