pmodels / oshmpi

OpenSHMEM Implementation on MPI
https://pmodels.github.io/oshmpi-www/
Other
25 stars 14 forks source link

test_some: wrong type for last argument `cmp_value` #139

Closed dalcinl closed 1 year ago

dalcinl commented 1 year ago

The proper signature is:

size_t shmem_TYPENAME_test_some(TYPE *ivars, size_t nelems, size_t *indices, 
                                const int *status, int cmp, TYPE cmp_value);

that is, the last argument should be TYPE cmp_value, and not TYPE* cmp_values as it is now.

dalcinl commented 1 year ago

@yfguo You may want to take this one.

dalcinl commented 1 year ago

@mrogowski This issue will prevent our Python wrappers to compile.