forked from Sandia-OpenSHMEM/SOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
teams: Add SHMEMX_TEAM_HOSTS pre-defined team
- Loading branch information
Showing
5 changed files
with
129 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
* Copyright (c) 2019 Intel Corporation. All rights reserved. | ||
* This software is available to you under the BSD license below: | ||
* | ||
* Redistribution and use in source and binary forms, with or | ||
* without modification, are permitted provided that the following | ||
* conditions are met: | ||
* | ||
* - Redistributions of source code must retain the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer. | ||
* | ||
* - Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials | ||
* provided with the distribution. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | ||
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | ||
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <shmem.h> | ||
#include <shmemx.h> | ||
|
||
|
||
int main(void) | ||
{ | ||
static long lock = 0; | ||
|
||
shmem_init(); | ||
int me = shmem_my_pe(); | ||
int npes = shmem_n_pes(); | ||
|
||
int team_shared_npes = shmem_team_n_pes(SHMEMX_TEAM_HOST); | ||
|
||
int *peers = malloc(team_shared_npes * sizeof(int)); | ||
int num_peers = 0; | ||
|
||
/* Print the team members on SHMEM_TEAM_HOST */ | ||
/* Use a lock for cleaner output */ | ||
shmem_set_lock(&lock); | ||
|
||
printf("[PE: %d] SHMEM_TEAM_HOST peers: { ", me); | ||
for (int i = 0; i < npes; i++) { | ||
if (shmem_team_translate_pe(SHMEM_TEAM_WORLD, i, | ||
SHMEMX_TEAM_HOST) != -1) { | ||
peers[num_peers++] = i; | ||
printf("%d ", i); | ||
} | ||
} | ||
|
||
printf("} (num_peers: %d)\n", num_peers); | ||
|
||
fflush(NULL); | ||
|
||
shmem_clear_lock(&lock); | ||
|
||
if (num_peers != team_shared_npes) { | ||
shmem_global_exit(1); | ||
} | ||
|
||
free(peers); | ||
shmem_finalize(); | ||
return 0; | ||
} | ||
|