我在UPC编程,并在两个线程之间共享数组。每个线程都有指向这些共享区域的私有指针:
#define SIZE 10000
#define HALFSIZE (SIZE/2)
shared [ HALFSIZE ] int table [ SIZE ]; /* all areas */
shared [ HALFSIZE ] int *first_area_pt; /* points to first thread area */
shared [ HALFSIZE ] int *second_area_pt; /* points to second thread area */
现在我想要的不是2个,而是N个线程,N个区域和N个指针。所以我需要一个指针数组
shared [ HALFSIZE ] int *first_area_pt;
shared [ HALFSIZE ] int *second_area_pt;
我应该如何定义它?
假设您使用的是静态线程编译环境,那么声明数组的一种更简洁的方式是这样的:
#define SIZE 10000
shared [*] int table [ SIZE ]; /* data automatically blocked across THREADS */
shared [1] int *base = (shared [1] int *)&table;
然后可以使用循环基指针创建一个指向共享的指针,引用与线程X有关联的数据,表达式如下:
shared [] int *threadXdata = (shared [] int *)(base+X);
使用这种方法,您永远不需要实例化thread指针数组的存储。但是,如果你真的想要,你当然可以这样声明和初始化一个:
shared [] int *threadptr[THREADS];
for (int i=0; i < THREADS; i++) threadptr[i] = (shared [] int *)(base+i);
...
threadptr[4][10] = 42; /* example access to element 10 on thread 4*/
这里的threadptr是一个本地指针数组,作为每个线程数据引用的目录。
请注意,以上所有代码都使用了一个无限阻塞的共享指针来访问与单个线程有关联的元素,因为每个块在逻辑上是一个连续的数据块,没有跨线程包装。
由于您使用的符号是非标准的(尽管我收集它遵循UPC -统一并行C -规范),我们只能猜测您可能需要什么。强调你使用的是什么会很有帮助,因为(当)它是不寻常的。
在shared [ N ]
符号的一种可能解释下,这看起来似乎是合理的。
#define SIZE 10000
#define NUMTHREADS 25
#define FRACSIZE (SIZE/NUMTHREADS)
shared [ FRACSIZE ] int table[SIZE];
shared [ 1 ] int *area_ptr[NUMTHREADS];