#pragma once #include #include #include #include "base.h" namespace sccl { namespace hardware { // // 定义结构体 scclCommBase,用于存储通信基础信息 // struct scclCommBase { // struct scclUniqueInfo* peerInfo; // 指向 peerInfo 结构体的指针,存储所有节点的信息 // sccl::hardware::net::scclNet_t* scclNet; // 指向网络结构体的指针,用于网络通信 // }; } // namespace hardware } // namespace sccl