From d2c726d43ceaa7229f35eaacd6c34c8a3574cebc Mon Sep 17 00:00:00 2001 From: jjsjann123 Date: Thu, 7 Jul 2022 23:25:34 +0000 Subject: [PATCH] torch.jit doc link for nvfuser readme.md (#77780) adding a quick link to nvfuser README.md in jit doc Note that for 1.12 release, we probably want to have the link pointed to the doc in the release code base. I don't know if we have a tag for 1.12 release candidate yet, so we might want to update that. Pull Request resolved: https://github.com/pytorch/pytorch/pull/77780 Approved by: https://github.com/davidberard98 --- docs/source/jit.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/jit.rst b/docs/source/jit.rst index 58c6549fe05..4c92f7a0ac4 100644 --- a/docs/source/jit.rst +++ b/docs/source/jit.rst @@ -876,7 +876,7 @@ now supported. Fusion Backends ~~~~~~~~~~~~~~~ -There are a couple of fusion backends available to optimize TorchScript execution. The default fuser on CPUs is NNC, which can perform fusions for both CPUs and GPUs. The default fuser on GPUs is NVFuser, which supports a wider range of operators and has demonstrated generated kernels with improved throughput. See the `NVFuser documentation `_ for more details on usage and debugging. +There are a couple of fusion backends available to optimize TorchScript execution. The default fuser on CPUs is NNC, which can perform fusions for both CPUs and GPUs. The default fuser on GPUs is NVFuser, which supports a wider range of operators and has demonstrated generated kernels with improved throughput. See the `NVFuser documentation `_ for more details on usage and debugging. References