-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement kani::spawn
#1504
Comments
I tried to implement a basic async task scheduler similar to #1659. However I ran into performance issues that the non-deterministic execution of even just two simple async tasks are taking way too long time. I identified the cause of the problem being from the dynamic dispatch of Does this have to do with the use of dynamic dispatch in |
Could you try with |
@tedinski I just tried this option on |
For asynchronous code, it's important to be able to spawn tasks. Since
tokio::spawn
or something similar will be difficult to support, we should provide our own version that is optimized for Kani. Part of #1393The text was updated successfully, but these errors were encountered: