// Rebuild the binary. This shows how you can apply the best schedule from a
// log file without reruning the search again.
sch, args = task.compute_dag.apply_steps_from_state(inp.state)
func = tvm.build(sch, args, target)
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
After Change
// file and apply it.
// Run auto-tuning (search)
task.tune(tune_option)
// Apply the best schedule
sch, args = task.apply_best(log_file)
// Kill the measurement process