我試圖將功能轉換爲AVX版本。函數本身基本上只是比較float和返回true/false取決於計算。 這裏是原來的功能: bool testSingle(float* thisFloat, float* otherFloat)
{
for (unsigned int k = 0; k < COL_COUNT/2; k++)
{
if (thisFloat[k]
我得到時的程序(TEST.CPP)被編譯下面的錯誤: > g++ -o test test.cpp -O2 -mavx -msse4.1
test.cpp: In function ‘int main(int, char**)’:
test.cpp:18:42: error: ‘_mm_rorv_epi32’ was not declared in this scope
indice