程序必须是 64 位才能获得 x64 机器的速度优势吗?
我计划使用 64 位位板来表示基本国际象棋程序中的棋盘。
该程序将在 64 位计算机上运行,但如果我的程序未设置为 x64 程序,我是否能够利用所有 64 位?
我使用的是 Visual C++ 2010。
I'm planning on using a 64-bits bitboard to represent a chessboard in a basic chess playing program.
The program will run on a 64 bits machine, but will I be able to take advantage of all 64 bits if my program is not set up as a x64 program?
I'm using Visual C++ 2010.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,
如果您希望程序使用 64 位寄存器和指令以使其速度更快,则需要将程序编译为 64 位应用程序。
议员
Yes,
you need to compile your program as a 64 bits application if you want it to use the 64 bits registers and instructions that will make it much faster.
mp