lhelontra commented on issue #13574:
URL: https://github.com/apache/tvm/issues/13574#issuecomment-1399401465

   I got same issue, not with all models. I fix this issue pick best records of 
log and re-run tune model:
   ```
   from tvm import autotvm
   import sys
   filename = sys.argv[1]
   output_filename = sys.argv[2]
   
   autotvm.record.pick_best(filename, output_filename)
   os.remove(filename)
   os.rename(filename, output_filename)
   ```


-- 
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