---
title: kpccl_shm_peer_fence
description: "win上两个进程间的同步。"
url: https://www.hikunpeng.com/document/detail/zh/hpchistory/hpckit/develop2400/KunoengHPCKit_developer_062.html
sourcePath: /source/zh/hpchistory/hpckit/develop2400/KunoengHPCKit_developer_062.html
indexId: 1080be06fcb4034962905d4d98f2b824e04cca355e79694a763d75aa824eb52173
---
# kpccl_shm_peer_fence

win上两个进程间的同步。

#### 接口定义

int kpccl_shm_peer_fence(kpccl_shm_win_h win, int remote_rank);


#### 参数


**表1 参数定义**

| 参数名 | 类型 | 描述 | 输入/输出 |
| --- | --- | --- | --- |
| win | kpccl\_shm\_win\_h | 需要同步的window对象 | 输入 |
| remote\_rank | int | 需要同步的对端进程号 | 输入 |


#### 返回值

- 成功：返回KPCCL_OK
- 失败：返回KPCCL_ERROR


#### 示例

```
#include <stdio.h>
#include <mpi.h>
#include "kpccl.h"
int oob_allgather_callback(const void *sendbuf, void *recvbuf, int size, void *group，kpccl_shm_datatype_t datatype)
{
switch (datatype) {
case KPCCL_SHM_DATATYPE_CHAR:
return MPI_Allgather(sendbuf, size, MPI_CHAR, recvbuf, size, MPI_CHAR, (MPI_Comm)group);
case KPCCL_SHM_DATATYPE_INT:
return MPI_Allgather(sendbuf, size, MPI_INT, recvbuf, size, MPI_INT, (MPI_Comm)group);
case KPCCL_SHM_DATATYPE_LONG:
return MPI_Allgather(sendbuf, size, MPI_LONG, recvbuf, size, MPI_LONG, (MPI_Comm)group);
case KPCCL_SHM_DATATYPE_FLOAT:
return MPI_Allgather(sendbuf, size, MPI_FLOAT, recvbuf, size, MPI_FLOAT, (MPI_Comm)group);
case KPCCL_SHM_DATATYPE_DOUBLE:
return MPI_Allgather(sendbuf, size, MPI_DOUBLE, recvbuf, size, MPI_DOUBLE, (MPI_Comm)group);
default:
kpccl_error("not support datatype");
return KPCCL_ERROR;
}
}
int
oob_barrier_callback(
void
*
group)
{
return MPI_Barrier((MPI_Comm)group);
}
int main()
{
int myid, numprocs;
MPI_Comm comm = MPI_COMM_WORLD;
MPI_Comm_size(comm, &numprocs);
MPI_Comm_rank(comm, &myid);
kpccl_shm_oob_cb_t oob_cbs;
kpccl_shm_oob_cb_h oob_cbs_h = &oob_cbs;
oob_cbs_h->oob_allgather = oob_allgather_callback;
oob_cbs_h->oob_barrier = oob_barrier_callback;
kpccl_shm_comm_h kpccl_comm;
kpccl_shm_comm_create(numprocs, myid, myid, oob_cbs_h, (void *)comm, &kpccl_comm);
kpccl_shm_win_h win;
void *baseptr;
kpccl_shm_win_alloc(65536, kpccl_comm, &baseptr, &win);
MPI_Barrier(comm);
if (numprocs == 1) {
kpccl_shm_win_free(win);
kpccl_shm_comm_destroy(kpccl_comm);
return 0;
}
for (int i = 0; i < numprocs; i++) {
for (int j = 1; j < numprocs; j++) {
if (win->rank == 0) {
kpccl_shm_peer_fence
(win, j);
}
}
for (int j = 1; j < numprocs; j++) {
if (win->rank == j) {
kpccl_shm_peer_fence
(win, 0);
}
}
}
MPI_Barrier(comm);
kpccl_shm_win_free(win);
kpccl_shm_comm_destroy(kpccl_comm);
}
```

上述示例演示了使用kpccl peer fence的流程。kpccl_shm_peer_fence函数用于win中一对进程间的同步。
