你应该使用多个调度程序头吗?
关于 MS 的用户模式调度 API 的建议或信息很少,特别是一件事让我感到困惑。您应该创建多个调度程序线程吗?如果是这样为什么?我的直觉是,您将创建一个调度线程,该线程将根据程序定义的逻辑将工作线程分配给所有逻辑核心,从而有效地创建协作调度。
There is very little in the way of advice or information on MS's User Mode Scheduling API, and one thing in particular is confusing me. Are you supposed to create multiple scheduler threads? If so why? My intuition is that you would create one scheduling thread that would distribute the worker threads to all the logical cores based on program defined logic, effectively creating cooperative scheduling.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要利用 UMS,应用程序必须实现一个调度程序组件,用于管理应用程序的 UMS 线程并确定它们何时应运行。
多处理器和NUMA 支持 意味着只需要一个调度程序。
To take advantage of UMS, an application must implement a scheduler component that manages the application's UMS threads and determines when they should run.
Multiple Processors and NUMA Support imply only one scheduler needed.