Closed
Description
Add Link
https://pytorch.org/tutorials/recipes/torch_compile_user_defined_triton_kernel_tutorial.html
Describe the bug
Bug Description:
There is a typo in line 155 where the triple backticks (```) are incorrectly used around triton.autotune
. It should be formatted with double backticks instead.
Expected Result:
``triton.autotune``
Actual Result:
```triton.autotune``
Proposed Fix:
Replace ``triton.autotune`` with ``triton.autotune`` in line 155.
Describe your environment
- Platform (i.e macOS, Linux, Google Colab): Windows
- CUDA (yes/no, version?): no
- PyTorch version (run
python -c "import torch; print(torch.__version__")
): 2.4.0+cu121