C ++(cilk plus code):分段错误11

时间:2018-04-17 16:29:28

标签: c++ intel cilk-plus cilk

我下载了Intel Parallel Studio,然后转到命令并输入:

source /opt/intel/bin/compilervars.sh intel64

后跟:icpc file.cpp运行Cilk plus文件。

file.cpp是cilkplus.org中使用的原始示例的简化版本,因此它应该可以工作,但会产生分段错误

这里是我尝试使用cilk plus编译器运行的文件:

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

int fib(int n)
{
    if (n < 2)
        return n;
    int x = cilk_spawn fib(n-1);
    int y =  fib(n-2);
    cilk_sync;
    return x + y;
}

int main(int argc, char *argv[])
{
    int n = 39;

    clock_t start = clock();
    int result = fib(n);
    clock_t end = clock();

    double duration = (double)(end - start) / CLOCKS_PER_SEC;
    printf("Calculated in %.3f seconds using %d workers.\n", duration, __cilkrts_get_nworkers());


    return 0;
}

1 个答案:

答案 0 :(得分:1)

我认为问题是39。

代码看起来对我来说。虽然我从来没有使用过cilk,但是从我得到的代码看起来是正确的,考虑到你复制了它。

我的猜测是39是一个太大的数字。尝试更小或更大的数字。

如果有效,请删除所有持续时间的废话,并为前40个案例的fib(i)尝试循环。在搞砸之前使用更简单的版本。