Because the tutorial only tunes conv2d tasks:
tasks = autotvm.task.extract_from_program(
mod["main"], target=target, params=params,
ops=(relay.op.get("nn.conv2d"),)
)
Although I don't think missing one dense schedule will hurt the performance a
lot, you can modify the code to the following to let AutoTVM tune the dense op
as well:
tasks = autotvm.task.extract_from_program(
mod["main"], target=target, params=params)
)
When no `ops` is given, AutoTVM extracts all tasks by default.
---
[Visit
Topic](https://discuss.tvm.apache.org/t/cannot-find-config-for-target-llvm-keys-cpu/8066/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/41cf432b3790bc58185f0a65822731df63fa523a965bd32ca8aaacd0d33f62e8).