diff --git a/tutorials/autotvm/tune_relay_cuda.py b/tutorials/autotvm/tune_relay_cuda.py index a6fe45b96263..6a995af61448 100644 --- a/tutorials/autotvm/tune_relay_cuda.py +++ b/tutorials/autotvm/tune_relay_cuda.py @@ -128,11 +128,7 @@ def get_network(name, batch_size): 'measure_option': autotvm.measure_option( builder=autotvm.LocalBuilder(timeout=10), - #runner=autotvm.LocalRunner(number=20, repeat=3, timeout=4, min_repeat_ms=150), - runner=autotvm.RPCRunner( - '1080ti', # change the device key to your key - '0.0.0.0', 9190, - number=20, repeat=3, timeout=4, min_repeat_ms=150) + runner=autotvm.LocalRunner(number=20, repeat=3, timeout=4, min_repeat_ms=150), ), }