@@ -348,13 +348,6 @@ Welcome to PyTorch Tutorials
348348
349349.. Code Transformations with FX
350350
351- .. customcarditem ::
352- :header: Building a Convolution/Batch Norm fuser in FX
353- :card_description: Build a simple FX pass that fuses batch norm into convolution to improve performance during inference.
354- :image: _static/img/thumbnails/cropped/Deploying-PyTorch-in-Python-via-a-REST-API-with-Flask.png
355- :link: intermediate/fx_conv_bn_fuser.html
356- :tags: FX
357-
358351 .. customcarditem ::
359352 :header: Building a Simple Performance Profiler with FX
360353 :card_description: Build a simple FX interpreter to record the runtime of op, module, and function calls and report statistics
@@ -583,6 +576,13 @@ Welcome to PyTorch Tutorials
583576 :link: intermediate/torch_compile_tutorial.html
584577 :tags: Model-Optimization
585578
579+ .. customcarditem ::
580+ :header: Building a Convolution/Batch Norm fuser in torch.compile
581+ :card_description: Build a simple pattern matcher pass that fuses batch norm into convolution to improve performance during inference.
582+ :image: _static/img/thumbnails/cropped/generic-pytorch-logo.png
583+ :link: intermediate/torch_compile_conv_bn_fuser.html
584+ :tags: Model-Optimization
585+
586586.. customcarditem ::
587587 :header: Inductor CPU Backend Debugging and Profiling
588588 :card_description: Learn the usage, debugging and performance profiling for ``torch.compile `` with Inductor CPU backend.
@@ -950,7 +950,6 @@ Additional Resources
950950 :hidden:
951951 :caption: Code Transforms with FX
952952
953- intermediate/fx_conv_bn_fuser
954953 intermediate/fx_profiling_tutorial
955954
956955.. toctree ::
@@ -1001,6 +1000,7 @@ Additional Resources
10011000 intermediate/nvfuser_intro_tutorial
10021001 intermediate/ax_multiobjective_nas_tutorial
10031002 intermediate/torch_compile_tutorial
1003+ intermediate/torch_compile_conv_bn_fuser
10041004 intermediate/compiled_autograd_tutorial
10051005 intermediate/inductor_debug_cpu
10061006 intermediate/scaled_dot_product_attention_tutorial
0 commit comments