我下载了英特尔并行工作室,然后转到命令并输入:
source /opt/intel/bin/compilervars.sh intel64
后跟:icpc file.cpp
运行 Cilk plus 文件。
该文件.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;
}
我认为问题是 39。
代码对我来说是正确的。虽然我从未使用过 cilk,但从我得到的代码来看,考虑到您确实复制了它,代码似乎是正确的。
我的猜测是39是一个太大的数字。尝试更小或更大的数字。
如果它有效,请删除所有持续时间废话,并尝试对前 40 种情况进行 fib(i( 循环。在搞砸之前使用更简单的版本。