jiangjiajun commented on issue #9713: URL: https://github.com/apache/tvm/issues/9713#issuecomment-1002361102
@masahi I'm not sure why this error occurred. I have found there was a core dumped problem while we running `autotvm` with paddle frontend, and the reason is the system signal capturing of PaddlePaddle. To solve the problem, we have released a new version of 2.1.3, use the new function `paddle.disable_signal_handler()` to disable signal capturing. This function is called in paddle frontend and tvmc frontend, we have tested in TVM, it works with no problem https://github.com/apache/tvm/blob/main/python/tvm/relay/frontend/paddlepaddle.py#L2270 https://github.com/apache/tvm/blob/main/python/tvm/driver/tvmc/frontends.py#L279 I checked all the codes in tvm where we have imported paddle, and found the test code didn't call `paddle.disable_signal_handler()`, so I send a new PR https://github.com/apache/tvm/pull/9809 , could you test this modification with PyTorch v1.10? -- 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]
