Blob Blame History Raw
/*
 * Copyright (C) Advanced Micro Devices, Inc. 2019. ALL RIGHTS RESERVED.
 * See file LICENSE for terms.
 */

#ifndef UCT_ROCM_GDR_IFACE_H
#define UCT_ROCM_GDR_IFACE_H

#include <uct/base/uct_iface.h>

#define UCT_ROCM_GDR_TL_NAME    "rocm_gdr"

typedef uint64_t uct_rocm_gdr_iface_addr_t;

typedef struct uct_rocm_gdr_iface {
    uct_base_iface_t super;
    uct_rocm_gdr_iface_addr_t id;
} uct_rocm_gdr_iface_t;

typedef struct uct_rocm_gdr_iface_config {
    uct_iface_config_t super;
} uct_rocm_gdr_iface_config_t;

#endif