Thanks for the explanation! I'm looking at the LocalBuilder function in both
the CPU and GPU tutorials, but neither of them takes any arguments related to
the target. How does the builder know about the target?
> tuning_option = {
> "log_filename": log_file,
> "tuner": "xgb",
> "n_trial": 2000,
> "early_stopping": 600,
> "measure_option": autotvm.measure_option(
> builder=autotvm.LocalBuilder(timeout=10),
> runner=autotvm.LocalRunner(number=20, repeat=3, timeout=4,
> min_repeat_ms=150),
> ),
> }
> tuning_option = {
> 'log_filename': log_file,
> 'tuner': 'random',
> 'early_stopping': None,
>
> 'measure_option': autotvm.measure_option(
> builder=autotvm.LocalBuilder(),
> runner=autotvm.LocalRunner(number=1, repeat=10,
> min_repeat_ms=0,
> enable_cpu_cache_flush=True),
> ),
> }
---
[Visit
Topic](https://discuss.tvm.apache.org/t/localrunner-and-rpcrunner/7959/3) to
respond.
You are receiving this because you enabled mailing list mode.
To unsubscribe from these emails, [click
here](https://discuss.tvm.apache.org/email/unsubscribe/fc652f7b349061c7805725ab0090cb2ceef4918e04cf7b60c7121bc4c78c9e00).