Use new naming scheme

This commit is contained in:
Brandon Potter
2024-11-25 14:12:15 -06:00
parent 308816bc5e
commit fd8dbc7fb6
179 changed files with 5250 additions and 5251 deletions
+13 -13
View File
@@ -32,7 +32,7 @@
#include <stdio.h>
#include <string.h>
#include <roc_shmem/roc_shmem.hpp>
#include <rocshmem/rocshmem.hpp>
using namespace rocshmem;
@@ -40,38 +40,38 @@ int main(int argc, char *argv[]) {
long source[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
long *target;
roc_shmem_init();
rocshmem_init();
if (roc_shmem_n_pes() == 1) {
if (rocshmem_n_pes() == 1) {
printf("%s: Requires number of PEs > 1\n", argv[0]);
roc_shmem_finalize();
rocshmem_finalize();
return 0;
}
target = (long *)roc_shmem_malloc(10 * sizeof(long));
target = (long *)rocshmem_malloc(10 * sizeof(long));
if (roc_shmem_my_pe() == 0) {
if (rocshmem_my_pe() == 0) {
/* put 10 elements into target on PE 1 */
roc_shmem_long_put(target, source, 10, 1);
rocshmem_long_put(target, source, 10, 1);
}
roc_shmem_barrier_all(); /* sync sender and receiver */
rocshmem_barrier_all(); /* sync sender and receiver */
if (roc_shmem_my_pe() == 1) {
if (rocshmem_my_pe() == 1) {
if (0 != memcmp(source, target, sizeof(long) * 10)) {
int i;
fprintf(stderr, "[%d] Src & Target mismatch?\n", roc_shmem_my_pe());
fprintf(stderr, "[%d] Src & Target mismatch?\n", rocshmem_my_pe());
for (i = 0; i < 10; ++i) {
printf("%ld,%ld ", source[i], target[i]);
}
printf("\n");
roc_shmem_global_exit(1);
rocshmem_global_exit(1);
}
}
roc_shmem_free(target);
rocshmem_free(target);
roc_shmem_finalize();
rocshmem_finalize();
return 0;
}