1

順次実行するために関数をできる限り最適化しました。openMP を使用しても、パフォーマンスの向上は見られません。1 コアのマシンと 8 コアのマシンでプログラムを試しましたが、パフォーマンスは同じです。
年を 20 に設定すると、
コアが 1 つ: 1 秒になります。
8芯:1秒

年を25に設定すると、
コアが1つあり、40秒です。
8芯:40秒

1 コア マシン: 私のラップトップの intel core 2 duo 1.8 GHz、ubuntu linux
8 コア マシン: 3.25 GHz、ubuntu linux

私のプログラムは、二項ツリーのすべての可能なパスを列挙し、各パスでいくつかの作業を行います。そのため、ループ サイズが指数関数的に増加し、openMP スレッドのフットプリントがゼロになることが期待されます。私のループでは、1 つの変数の削減のみを行います。他のすべての変数は読み取り専用です。私は自分が書いた関数のみを使用しており、それらはスレッドセーフだと思います。

プログラムで Valgrind cachegrind も実行しています。出力を完全には理解していませんが、キャッシュ ミスや偽の共有はないようです。

私はコンパイルします

gcc -O3 -g3 -Wall -c -fmessage-length=0 -lm -fopenmp -ffast-math

私の完全なプログラムは以下の通りです。たくさんのコードを投稿して申し訳ありません。私は openMP も C もよく知らないので、メイン タスクを失うことなくコードを再開することはできませんでした。

openMP を使用するときにパフォーマンスを向上させるにはどうすればよいですか?
それらは、プログラムの実行を高速化するコンパイラ フラグまたは C トリックですか?

test.c

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <omp.h>
#include "test.h"

int main(){

    printf("starting\n");
    int year=20;
    int tradingdate0=1;

    globalinit(year,tradingdate0);

    int i;
    float v=0;
    long n=pow(tradingdate0+1,year);
    #pragma omp parallel for reduction(+:v)
    for(i=0;i<n;i++)
        v+=pathvalue(i);

    globaldel();
    printf("finished\n");
    return 0;
}

//***function on which openMP is applied
float pathvalue(long pathindex) {
    float value = -ctx.firstpremium;
    float personalaccount = ctx.personalaccountat0;
    float account = ctx.firstpremium;
    int i;
    for (i = 0; i < ctx.year-1; i++) {
        value *= ctx.accumulationfactor;
        double index = getindex(i,pathindex);
        account = account * index;
        double death = fmaxf(account,ctx.guarantee[i]);
        value += qx(i) * death;
        if (haswithdraw(i)){
            double withdraw = personalaccount*ctx.allowed;
            value += px(i) * withdraw;
            personalaccount = fmaxf(personalaccount-withdraw,0);
            account = fmaxf(account-withdraw,0);
        }
    }

    //last year
    double index = getindex(ctx.year-1,pathindex);
    account = account * index;
    value+=fmaxf(account,ctx.guarantee[ctx.year-1]);

    return value * ctx.discountfactor;
}



int haswithdraw(int period){
    return 1;
}

float getindex(int period, long pathindex){
    int ndx = (pathindex/ctx.chunksize[period])%ctx.tradingdate;
    return ctx.stock[ndx];
}

float qx(int period){
    return 0;
}

float px(int period){
    return 1;
}

//****global
struct context ctx;

void globalinit(int year, int tradingdate0){
    ctx.year = year;
    ctx.tradingdate0 = tradingdate0;
    ctx.firstpremium = 1;
    ctx.riskfreerate = 0.06;
    ctx.volatility=0.25;
    ctx.personalaccountat0 = 1;
    ctx.allowed = 0.07;
    ctx.guaranteerate = 0.03;
    ctx.alpha=1;
    ctx.beta = 1;
    ctx.tradingdate=tradingdate0+1;
    ctx.discountfactor = exp(-ctx.riskfreerate * ctx.year);
    ctx.accumulationfactor = exp(ctx.riskfreerate);
    ctx.guaranteefactor = 1+ctx.guaranteerate;
    ctx.upmove=exp(ctx.volatility/sqrt(ctx.tradingdate0));
    ctx.downmove=1/ctx.upmove;

    ctx.stock=(float*)malloc(sizeof(float)*ctx.tradingdate);
    int i;
    for(i=0;i<ctx.tradingdate;i++)
        ctx.stock[i]=pow(ctx.upmove,ctx.tradingdate0-i)*pow(ctx.downmove,i);

    ctx.chunksize=(long*)malloc(sizeof(long)*ctx.year);
    for(i=0;i<year;i++)
        ctx.chunksize[i]=pow(ctx.tradingdate,ctx.year-i-1);

    ctx.guarantee=(float*)malloc(sizeof(float)*ctx.year);
    for(i=0;i<ctx.year;i++)
        ctx.guarantee[i]=ctx.beta*pow(ctx.guaranteefactor,i+1);
}

void globaldel(){
    free(ctx.stock);
    free(ctx.chunksize);
    free(ctx.guarantee);
}

test.h

float pathvalue(long pathindex);
int haswithdraw(int period);
float getindex(int period, long pathindex);
float qx(int period);
float px(int period);
//***global
struct context{
    int year;
    int tradingdate0;
    float firstpremium;
    float riskfreerate;
    float volatility;
    float personalaccountat0;
    float allowed;
    float guaranteerate;
    float alpha;
    float beta;
    int tradingdate;
    float discountfactor;
    float accumulationfactor;
    float guaranteefactor;
    float upmove;
    float downmove;
    float* stock;
    long* chunksize;
    float* guarantee;
};
struct context ctx;
void globalinit();
void globaldel();

編集すべてのグローバル変数を定数として単純化します。20 年間、プログラムは 2 倍高速に実行されました (すばらしい!)。OMP_NUM_THREADS=4 ./testたとえば、スレッドの数を設定しようとしました。しかし、それは私にパフォーマンスの向上をもたらしませんでした。
私のgccに問題がありますか?

test.c

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
#include <omp.h>
#include "test.h"


int main(){

    starttimer();
    printf("starting\n");
    int i;
    float v=0;

    #pragma omp parallel for reduction(+:v)
    for(i=0;i<numberofpath;i++)
        v+=pathvalue(i);

    printf("v:%f\nfinished\n",v);
    endtimer();
    return 0;
}

//function on which openMP is applied
float pathvalue(long pathindex) {
    float value = -firstpremium;
    float personalaccount = personalaccountat0;
    float account = firstpremium;
    int i;
    for (i = 0; i < year-1; i++) {
        value *= accumulationfactor;
        double index = getindex(i,pathindex);
        account = account * index;
        double death = fmaxf(account,guarantee[i]);
        value += death;
        double withdraw = personalaccount*allowed;
        value += withdraw;
        personalaccount = fmaxf(personalaccount-withdraw,0);
        account = fmaxf(account-withdraw,0);
    }

    //last year
    double index = getindex(year-1,pathindex);
    account = account * index;
    value+=fmaxf(account,guarantee[year-1]);

    return value * discountfactor;
}



float getindex(int period, long pathindex){
    int ndx = (pathindex/chunksize[period])%tradingdate;
    return stock[ndx];
}

//timing
clock_t begin;

void starttimer(){
    begin = clock();
}

void endtimer(){
    clock_t end = clock();
    double elapsed = (double)(end - begin) / CLOCKS_PER_SEC;
    printf("\nelapsed: %f\n",elapsed);
}

test.h

float pathvalue(long pathindex);
int haswithdraw(int period);
float getindex(int period, long pathindex);
float qx(int period);
float px(int period);
//timing
void starttimer();
void endtimer();
//***constant
const int year= 20 ;
const int tradingdate0= 1 ;
const float firstpremium= 1 ;
const float riskfreerate= 0.06 ;
const float volatility= 0.25 ;
const float personalaccountat0= 1 ;
const float allowed= 0.07 ;
const float guaranteerate= 0.03 ;
const float alpha= 1 ;
const float beta= 1 ;
const int tradingdate= 2 ;
const int numberofpath= 1048576 ;
const float discountfactor= 0.301194211912 ;
const float accumulationfactor= 1.06183654655 ;
const float guaranteefactor= 1.03 ;
const float upmove= 1.28402541669 ;
const float downmove= 0.778800783071 ;
const float stock[2]={1.2840254166877414, 0.7788007830714049};
const long chunksize[20]={524288, 262144, 131072, 65536, 32768, 16384, 8192, 4096, 2048, 1024, 512, 256, 128, 64, 32, 16, 8, 4, 2, 1};
const float guarantee[20]={1.03, 1.0609, 1.092727, 1.1255088100000001, 1.1592740743, 1.1940522965290001, 1.2298738654248702, 1.2667700813876164, 1.304773183829245, 1.3439163793441222, 1.384233870724446, 1.4257608868461793, 1.4685337134515648, 1.512589724855112, 1.557967416600765, 1.6047064390987882, 1.6528476322717518, 1.7024330612399046, 1.7535060530771016, 1.8061112346694148};
4

3 に答える 3

12

プログラムが OpenMP を使用することでメリットが得られたとしても、間違った時間を測定しているため、OpenMP を確認することはできません。

clock()すべてのスレッドで費やされた合計 CPU 時間を返します。4 つのスレッドで実行し、それぞれの実行時間が 1/4 の場合、 は 4*(1/4) = 1 であるため、同じ値を返します。代わりに実測時間を測定する必要があります。clock()

clock()への呼び出しをomp_get_wtime()またはに置き換えますgettimeofday()。どちらも高精度の壁時計タイミングを提供します。

clock()PSなぜSOの周りにタイミングに使用する人が非常に多いのですか?

于 2012-05-24T11:45:20.693 に答える
1

うまくいくようです。おそらく、使用するスレッドの数を指定する必要があります。これを行うには、OMP_NUM_THREADS変数を設定します。たとえば、4つのスレッドを使用する場合:

OMP_NUM_THREADS=4 ./test

編集:コードをコンパイルしたところ、スレッド数を変更すると大幅に高速化されました。

于 2012-05-23T21:18:29.203 に答える
1

OpenMP が使用するコア数を指定しているセクションはありません。デフォルトでは、認識された数の CPU を使用することになっていますが、私の目的のために、指定した数だけ使用するように強制しています。

parallel for コンストラクトの前に次の行を追加します。

#pragma omp parallel num_threads(num_threads)
{
   // Your parallel for follows here
}

...ここnum_threadsで、1 からマシンのコア数までの整数です。

編集: コードのビルドに使用されるメイクファイルは次のとおりです。Makefileこれを、同じディレクトリにある名前のテキスト ファイルに配置します。

test: test.c test.h
    cc -o $@ $< -O3 -g3 -fmessage-length=0 -lm -fopenmp -ffast-math
于 2012-05-23T21:14:51.537 に答える