diff --git a/tutorials/language/intrin_math.py b/tutorials/language/intrin_math.py index d266b7cb743a..f338e7004761 100644 --- a/tutorials/language/intrin_math.py +++ b/tutorials/language/intrin_math.py @@ -38,7 +38,7 @@ # ------------------------------- # 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 @@ def my_cuda_math_rule(op): ###################################################################### # 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. #