模拟基于 Atom 的 PC 环境
我需要跑步&在基于 Atom cpu 的平板电脑上测试应用程序。我尝试了VS2010的远程调试功能,但它只能处理异常。
我的多线程应用程序的行为在平板电脑上完全不同。有没有办法在我的桌面环境上模拟 Atom cpu(低速、单核等)?
I need to run & test an application on Atom cpu based tablet PC. I tried remote debugging ability of VS2010 but it only handles exceptions.
My multi-threaded application's behaviors are totally different on that tablet PC. Is there any way to simulate Atom cpu -low speed, single core, etc- on my desktop environment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用省电设置来限制 CPU 速度和 CPU 关联性,以防止您的进程使用所有核心。我不知道有什么简单的方法可以人为地限制 CPU 缓存的使用。
配置省电设置更适合超级用户。
对于关联性,您可以 p/invoke
SetProcessAffinityMask
然而,Atom 具有非常不同的内部架构,因此仅仅降低时钟速度不会是非常准确的模拟。
Yes, you can use power saving settings to limit the CPU speed, and CPU affinity to prevent your process from using all cores. I don't know of an easy way to artificially limit use of CPU caches.
Configuring power saving settings would be more appropriate for SuperUser.
For affinity, you can p/invoke
SetProcessAffinityMask
However, the Atom has a very different internal architecture, so merely dialing down clock speed will not be a very accurate simulation.
您可以通过更改 boot.ini http://support.microsoft.com/kb/170756 来限制可用的 CPU 数量 或 Win 7 - http://windows.microsoft.com/en-US/windows7/Using-System-Configuration(开始 -> 系统配置 -> 启动 -> 高级)。
You can limit number of CPUs available by changing boot.ini http://support.microsoft.com/kb/170756 or Win 7 - http://windows.microsoft.com/en-US/windows7/Using-System-Configuration (start -> system configuration -> boot ->advanced).