在我的项目中,我需要确定CPU支持的SIMD指令集。问题是,当我尝试进行测试编译时,我得到一系列错误,这些错误会重复多次,就像编译器多次解析代码一样。确定支持的SIMD指令的原因是因为我正在努力使John开膛手的DES位片实现适用于Windows和Windows的GPGPU(特别是CUDA)。 Linux操作系统。
所以,这是我在第37行发生错误的地方
// File Name: Arch.h
// Purpose: Determine CPU architecture (x86 or x86-64) and to determine instruction set supported by
// the CPU (MMX, SSE2 or neither)
//
// Authors: Daniel Beard and Michael Campbell
//If CPU is x86-64 then use x86-64 include
#if defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64) || defined(_M_X64)
#include "x86-64.h"
#endif
//Determine if CPU architecture is 32-bit, then determine which compiler is being used, finally determine if GCC (GNUC) or MS Visual C++ compiler is being used
#if defined(i386) || defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || defined(_M_IX86)
#if defined(__GNUC__)
#define cpuid(func,ax,bx,cx,dx)\
__asm__ __volatile__ ("cpuid":\
"=a" (ax), "=b" (bx), "=c" (cx), "=d" (dx) : "a" (func));
int a,b,c,d;
cpuid(0x1,a,b,c,d);
if ((d & 0x17)== 1)
{
#include "x86-mmx.h"
}
else if (d & 0x1A) == 1)
{
#include "x86-sse.h"
}
else if((d & 0x17) != 1 || (d & 0x1A) != 1)
{
#include "x86-any.h"
}
#endif
#if defined(_MSC_VER)
#include<intrin.h>
int CPUInfo[4] = {0};
__cpuid( CPUInfo, 1 );
if( (CPUInfo[3] & 0x1A) == 1 )
{
#include "x86-sse.h"
}
else if( (CPUInfo[3] & 0x17) == 1 )
{
#include "x86-mmx.h"
}
else if( (CPUInfo[3] & 0x17) != 1 || (CPUInfo[3] & 0x1A) != 1 )
{
#include "x86-any.h"
}
#endif
#endif
以下是我得到的错误(其中有86个,但它们一直重复相同系列的错误/行号):
Error 1 error C2059: syntax error : ',' line 37
Error 2 error C2143: syntax error : missing ')' before 'constant' line 37
Error 3 error C2143: syntax error : missing '{' before 'constant' line 37
Error 4 error C2059: syntax error : '<Unknown>' line 37
Error 5 error C2059: syntax error : ')' line 37
Error 6 error C2059: syntax error : 'if' line 38
Error 7 error C2059: syntax error : 'else' line 42
Error 8 error C2059: syntax error : 'else' line 46
Error 9 error C2374: 'CPUInfo' : redefinition; multiple initialization line 36
答案 0 :(得分:1)
您的第一个错误位于第36行 - 声称CPUInfo
已存在 - 先修复此问题,其余信息可能会消失。
在visual studio选项中,转到“Projects and Solutions”,“General”并取消选中“Always show Error List ...”
这将为您留下输出窗口 - 您可以使用F8导航到您通常应该关注的第一个警告/错误。