Questions tagged [cilk-plus]

Intel® Cilk™ Plus is an extension to C and C++ that improves the performance of programs on multicore processors.

Intel® Cilk™ Plus is an extension to C and C++ that improves the performance of programs on multicore processors. The three Intel Cilk Plus keywords provide a simple model for parallel programming, while runtime and template libraries offer an environment for building parallel applications.

Source: Intel Developer Zone

79 questions
0
votes
2 answers

error in compiling cilk plus with gcc-4.7

I get the following error main.c:107:2: internal compiler error: in extract_for_fields, at cilk-spawn.c:1857 } and the relevant lines are: cilk_for (index = 0; table_name[index]!=NULL; ++index ) { /* some work*/ } Line 107 corresponds to the…
Aman Deep Gautam
  • 8,091
  • 21
  • 74
  • 130
0
votes
1 answer

Unable to build gcc branch for cilk

I am trying to build the cilk branch from the branch downloaded form svn by this command: svn co http://gcc.gnu.org/svn/gcc/branches/cilkplus-4_7-branch/ The tutorial I am using to install is :this one In step 5 line 9 I get this error: ar:…
Aman Deep Gautam
  • 8,091
  • 21
  • 74
  • 130
-1
votes
1 answer

Intel C++ compiler gives "offload constructs are not supported on this platform" error

When compiling a basic code segment on windows (using visual studio) that uses the _Cilk_offload keyword, the compiler throws error : offload constructs are not supported on this platform on all lines with _Cilk_offload and _Cilk_shared (compiled…
NathanFrasier
  • 196
  • 1
  • 13
-1
votes
1 answer

Why does it gives segmentation fault in cilk, I am using ICC compiler

I am new to programming in cilk. I am trying block matrix multiplication using cilk. But for some reason I am getting segmentation fault. Could you please help me on this. void cilk_vec_mmm(int m, int n, int p, float A[m][1000], float B[p][1000],…
Biparite
  • 203
  • 1
  • 2
  • 13
1 2 3 4 5
6