/
githubmirror
/
rdma-core
Обзор
Документация
Войти
/
githubmirror
/
rdma-core
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pyverbs/wr.pxd
21 строка
516 B
Edward Srouji
pyverbs: Fix Cython 3 code preparation
25 ноя 2021, 18:54
25 ноя 2021, 18:54
108cdd3
Код
Авторство
О чём код?
# SPDX-License-Identifier: (GPL-2.0 OR Linux-OpenIB) # Copyright (c) 2019 Mellanox Technologies, Inc. All rights reserved. See COPYING file #cython: language_level=3 from .base cimport PyverbsCM from pyverbs cimport libibverbs as v cdef class SGE(PyverbsCM): cdef v.ibv_sge *sge cpdef read(self, length, offset) cdef class RecvWR(PyverbsCM): cdef v.ibv_recv_wr recv_wr cdef class SendWR(PyverbsCM): cdef v.ibv_send_wr send_wr cdef object ah cdef copy_sg_array(v.ibv_sge *dst, sg, num_sge)