Skip to content

Commit f442f27

Browse files
authored
Fix rendering of images in tutorials matrix (#1764)
1 parent 1fdf1cd commit f442f27

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

index.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Welcome to PyTorch Tutorials
5959
.. customcarditem::
6060
:header: Introduction to PyTorch on YouTube
6161
:card_description: An introduction to building a complete ML workflow with PyTorch. Follows the PyTorch Beginner Series on YouTube.
62-
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.PNG
62+
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
6363
:link: beginner/introyt.html
6464
:tags: Getting-Started
6565

@@ -362,35 +362,35 @@ Welcome to PyTorch Tutorials
362362
.. customcarditem::
363363
:header: Registering a Dispatched Operator in C++
364364
:card_description: The dispatcher is an internal component of PyTorch which is responsible for figuring out what code should actually get run when you call a function like torch::add.
365-
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.PNG
365+
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
366366
:link: advanced/dispatcher.html
367367
:tags: Extending-PyTorch,Frontend-APIs,C++
368368

369369
.. customcarditem::
370370
:header: Extending Dispatcher For a New Backend in C++
371371
:card_description: Learn how to extend the dispatcher to add a new device living outside of the pytorch/pytorch repo and maintain it to keep in sync with native PyTorch devices.
372-
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.PNG
372+
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
373373
:link: advanced/extend_dispatcher.html
374374
:tags: Extending-PyTorch,Frontend-APIs,C++
375375

376376
.. customcarditem::
377377
:header: Custom Function Tutorial: Double Backward
378378
:card_description: Learn how to write a custom autograd Function that supports double backward.
379-
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.PNG
379+
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
380380
:link: intermediate/custom_function_double_backward_tutorial.html
381381
:tags: Extending-PyTorch,Frontend-APIs
382382

383383
.. customcarditem::
384384
:header: Custom Function Tutorial: Fusing Convolution and Batch Norm
385385
:card_description: Learn how to create a custom autograd Function that fuses batch norm into a convolution to improve memory usage.
386-
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.PNG
386+
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
387387
:link: intermediate/custom_function_conv_bn_tutorial.html
388388
:tags: Extending-PyTorch,Frontend-APIs
389389

390390
.. customcarditem::
391391
:header: Forward-mode Automatic Differentiation
392-
:card_description: Learn how to use forward-mode automatic differentiation
393-
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.PNG
392+
:card_description: Learn how to use forward-mode automatic differentiation.
393+
:image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
394394
:link: intermediate/forward_ad_usage.html
395395
:tags: Frontend-APIs
396396

0 commit comments

Comments
 (0)