SZNero opened a new issue, #13546:
URL: https://github.com/apache/tvm/issues/13546
### Expected behavior
i want it run in std::thread to do a job, and exit correctly.but faild.
### Actual behavior
when the thread exit,it will throw a exception called urctbase.pdb not
loaded.
### Environment
vs 2019 and vs2022 happended the same thing.
cuda 10.1
i tried tvm v0.10.0 and v0.11.0
### Steps to reproduce
```
void test(){
myTvmClass tvm;
tvm.loadModule();
cv::Mat image = cv::imread(path);
tvm.run(image);
}
int main(){
std::thread(test).join();
return 0;
}
```
--
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]