You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2020/03/10 04:44:20 UTC

[GitHub] [incubator-tvm] jmorrill commented on issue #5019: [AutoTVM] Temporary fix to the stack overflow issue in autotvm task extraction

jmorrill commented on issue #5019: [AutoTVM] Temporary fix to the stack overflow issue in autotvm task extraction
URL: https://github.com/apache/incubator-tvm/pull/5019#issuecomment-596899986
 
 
   Thanks for looking into this.  I have hit the stackoverflow before.  I've been working around it by starting up my autotvm script on another thread after I set a huge stack size.
   
   ```
   threading.stack_size(10 * 1024 * 1024)
   t = threading.Thread(...)
   t.start()
   t.join()
   ```

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services