We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
BBPE/bbpe.py
Line 124 in 3573822
如题,这里使用python多线程的作用是?
The text was updated successfully, but these errors were encountered:
提高程序的性能和效率,但效果一般。由于Python的全局解释锁(Global Interpreter Lock,GIL)而无法实现真正的并行。 如果想加速,建议使用多进程来代替多线程。
Sorry, something went wrong.
No branches or pull requests
BBPE/bbpe.py
Line 124 in 3573822
如题,这里使用python多线程的作用是?
The text was updated successfully, but these errors were encountered: