gpt4 book ai didi

c - 并行化阶乘计算

转载 作者:太空狗 更新时间:2023-10-29 16:11:03 25 4
gpt4 key购买 nike

我想编写一个程序来计算整数的阶乘,使用并行计算(Open MP 库)。

很明显,下面的程序存在竞争条件。

// Each loop iteration writes a value that a different iteration reads.
#pragma omp parallel for
for (i=2; i < 10; i++)
{
factorial[i] = i * factorial[i-1];
}

我在某处读到 pow 和阶乘计算绝不能并行完成。那么,这是真的吗,或者是否可以修改上述程序(在 C 中,使用 OPenMP 库)以并行计算阶乘?

最佳答案

您可以通过在数组上运行两次来并行执行此操作。第一次计算部分产品并保存每个线程的部分产品总数。在第二遍中,您根据前一个线程的总积更正每个元素。这类似于如何并行计算累积和(又名前缀和),只是它是并行累积乘积。

#include <stdio.h>
#include <stdlib.h>
#include <omp.h>

int main(void) {
int n = 10;
int factorial[n];
factorial[1] = 1;

int *proda;
#pragma omp parallel
{
int ithread = omp_get_thread_num();
int nthreads = omp_get_num_threads();
#pragma omp single
{
proda = malloc(nthreads * sizeof *proda);
proda[0] = 1;
}
int prod = 1;
#pragma omp for schedule(static) nowait
for (int i=2; i<n; i++) {
prod *= i;
factorial[i] = prod;
}
proda[ithread+1] = prod;
#pragma omp barrier
int offset = 1;
for(int i=0; i<(ithread+1); i++) offset *= proda[i];
#pragma omp for schedule(static)
for(int i=1; i<n; i++) factorial[i] *= offset;
}
free(proda);

for(int i=1; i<n; i++) printf("%d\n", factorial[i]); putchar('\n');
}

关于c - 并行化阶乘计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34978236/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com