shingjan commented on pull request #8851:
URL: https://github.com/apache/tvm/pull/8851#issuecomment-914611402


   With a custom build function like the one below, this PR runs fine for 
`tune_conv2d_cuda`:
   
   ```
   from tvm.contrib import tar
   
   
   def custom_build(*args):
       return tar.tar(*args)
   
   
   custom_build.output_format = "tar"
   
   measure_option = autotvm.measure_option(
       builder=autotvm.LocalBuilder(build_func=custom_build),
       runner=autotvm.LocalRunner(repeat=3, min_repeat_ms=100, timeout=4),
   )
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to