2

float値のベクトルに対してvec_msum機能を実現する方法を知っている人はいますか?

私はSIMDにまったく慣れていません。私はそれを理解し始めていると思いますが、まだいくつかのパズルがあります。

私の最終目標は、関数 "convolve_altivec"(この質問の受け入れられた回答にある)を書き直して、入力パラメーターをshortではなくfloat値として受け入れるようにすることです。

つまり、プロトタイプは

float convolve_altivec(const float *a, const float *b, int n)

以下の元の最適化されていない関数によって提供される機能を一致させようとしています。

float convolve(const float *a, const float *b, int n)
{
    float out = 0.f;
    while (n --)
        out += (*(a ++)) * (*(b ++));
    return out;
}

私の最初の努力は、この同じ関数の既存のSSEバージョンをaltivec命令に移植しようとしているのを見てきました。

4

1 に答える 1

3

フロートバージョンの場合、が必要vec_maddです。

これは、以前の質問に答えて投稿した以前の16ビットintバージョンとテストハーネスのfloatバージョンです。

#include <assert.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <altivec.h>

static float convolve_ref(const float *a, const float *b, int n)
{
    float sum = 0.0f;
    int i;

    for (i = 0; i < n; ++i)
    {
        sum += a[i] * b[i];
    }

    return sum;
}

static inline float convolve_altivec(const float *a, const float *b, int n)
{
    float sum = 0.0f;
    vector float vsum = { 0.0f, 0.0f, 0.0f, 0.0f };
    union {
        vector float v;
        float a[4];
    } usum;

    vector float *pa = (vector float *)a;
    vector float *pb = (vector float *)b;

    assert(((unsigned long)a & 15) == 0);
    assert(((unsigned long)b & 15) == 0);

    while (n >= 4)
    {
        vsum = vec_madd(*pa, *pb, vsum);
        pa++;
        pb++;
        n -= 4;
    }

    usum.v = vsum;

    sum = usum.a[0] + usum.a[1] + usum.a[2] + usum.a[3];

    a = (float *)pa;
    b = (float *)pb;

    while (n --)
    {
        sum += (*a++ * *b++);
    }

    return sum;
}

int main(void)
{
    const int n = 1002;

    vector float _a[n / 4 + 1];
    vector float _b[n / 4 + 1];

    float *a = (float *)_a;
    float *b = (float *)_b;

    float sum_ref, sum_test;

    int i;

    for (i = 0; i < n; ++i)
    {
        a[i] = (float)rand();
        b[i] = (float)rand();
    }

    sum_ref = convolve_ref(a, b, n);
    sum_test = convolve_altivec(a, b, n);

    printf("sum_ref = %g\n", sum_ref);
    printf("sum_test = %g\n", sum_test);

    printf("%s\n", fabsf((sum_ref - sum_test) / sum_ref) < 1.0e-6 ? "PASS" : "FAIL");

    return 0;
}
于 2010-12-08T11:04:13.463 に答える