运行任何英特尔AVX功能后,数学函数需要更多周期

时间:2013-12-12 13:59:15

标签: c linux gcc intel avx

我注意到运行任何英特尔AVX功能后,数学函数(如ceil,round,...)需要更多的CPU周期。

参见以下示例:

#include <stdio.h>
#include <math.h>
#include <immintrin.h>


static unsigned long int get_rdtsc(void)
{
        unsigned int a, d;
        asm volatile("rdtsc" : "=a" (a), "=d" (d));
        return (((unsigned long int)a) | (((unsigned long int)d) << 32));
}

#define NUM_ITERATIONS 10000000

void run_round()
{
    unsigned long int t1, t2, res, i;
    double d = 3.2;

    t1 = get_rdtsc();
    for (i = 0 ; i < NUM_ITERATIONS ; ++i) {
        res = round(d*i);
    }
    t2 = get_rdtsc();

    printf("round res %lu total cycles %lu CPI %lu\n", res, t2 - t1, (t2 - t1) / NUM_ITERATIONS);
 }

int main ()
{
    __m256d a;

    run_round();

    a = _mm256_set1_pd(1);

    run_round();

    return 0;
}

编译:gcc -Wall -lm -mavx foo.c

输出结果为:

round res 31999997总周期224725952 CPI 22

round res 31999997总周期1900864520 CPI 190

请告知。

1 个答案:

答案 0 :(得分:0)

反汇编生成的代码。

我的猜测是会有额外的寄存器保存/恢复,或类似的东西。