Does the array notation support merge operations?
Is the correct forum for this question?
Yes, this is the correct forum, maxx2315, and welcome. Cilk Plus supports array reductions similar to the following:
float a[100]; // code to manipulate a float x = __sec_reduce_add(a[:]); // sum all elements of a
Is that what you are looking for?