From 776fd6bddbb9c775d08943685daf9416e4362e64 Mon Sep 17 00:00:00 2001 From: Bohan Hou <32121147+spectrometerHBH@users.noreply.github.com> Date: Mon, 7 Oct 2019 12:27:59 +0800 Subject: [PATCH] [DOC] Fix typos in tutorials (#4066) fix some typos --- tutorials/language/intrin_math.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/language/intrin_math.py b/tutorials/language/intrin_math.py index d266b7c..f338e70 100644 --- a/tutorials/language/intrin_math.py +++ b/tutorials/language/intrin_math.py @@ -38,7 +38,7 @@ import numpy as np # ------------------------------- # The most straight-forward way to call target specific function is via # extern function call construct in tvm. -# In th following example, we use :any:`tvm.call_pure_extern` to call +# In the following example, we use :any:`tvm.call_pure_extern` to call # :code:`__expf` function, which is only available under CUDA. # n = tvm.var("n") @@ -119,7 +119,7 @@ print(fcuda.imported_modules[0].get_source()) ###################################################################### # Add Your Own Intrinsic # ---------------------- -# If there is an instrinsic that is not provided by TVM. +# If there is an intrinsic that is not provided by TVM. # User can easily add new intrinsic by using the intrinsic rule system. # The following example add an intrinsic :code:`mylog` to the system. # -- 2.7.4