From b7cca6811a97903c6d19f56770f282ff64126874 Mon Sep 17 00:00:00 2001 From: chaeun lee <107669084+dlcodns@users.noreply.github.com> Date: Wed, 16 Oct 2024 05:58:48 +0900 Subject: [PATCH] Fix a typo in torch_compile_user_defined_triton_kernel_tutorial.py (#3049) --- .../torch_compile_user_defined_triton_kernel_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes_source/torch_compile_user_defined_triton_kernel_tutorial.py b/recipes_source/torch_compile_user_defined_triton_kernel_tutorial.py index 68187d6162..7d183af6fd 100644 --- a/recipes_source/torch_compile_user_defined_triton_kernel_tutorial.py +++ b/recipes_source/torch_compile_user_defined_triton_kernel_tutorial.py @@ -152,7 +152,7 @@ def add_fn(x, y): # * **Tensor Subclasses:** Currently, there is no support for # tensor subclasses and other advanced features. # * **Triton Features:** While ``triton.heuristics`` can be used either standalone or -# before ``triton.autotune``, it cannot be used after ```triton.autotune``. This +# before ``triton.autotune``, it cannot be used after ``triton.autotune``. This # implies that if ``triton.heuristics`` and ``triton.autotune`` are to be used # together, ``triton.heuristics`` must be used first. #