From 374918fad437a3e3f9b3f902612f54a781e7081d Mon Sep 17 00:00:00 2001 From: Ruslan Baratov Date: Thu, 6 Dec 2018 14:30:30 +0000 Subject: [PATCH] Fix misprint (#2243) --- tutorials/cross_compilation_and_rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/cross_compilation_and_rpc.py b/tutorials/cross_compilation_and_rpc.py index e0967d54b09c..6c23368f840a 100644 --- a/tutorials/cross_compilation_and_rpc.py +++ b/tutorials/cross_compilation_and_rpc.py @@ -211,7 +211,7 @@ def run_opencl(): opencl_device_host = '10.77.1.145' opencl_device_port = 9090 - # create scheule for the above "add one" compute decleration + # create schedule for the above "add one" compute declaration s = tvm.create_schedule(B.op) xo, xi = s[B].split(B.op.axis[0], factor=32) s[B].bind(xo, tvm.thread_axis("blockIdx.x"))