Skip to content

Instantly share code, notes, and snippets.

@keisukefukuda
Created February 28, 2018 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keisukefukuda/153ec198cf234f0f5b3a43a044523e3a to your computer and use it in GitHub Desktop.
Save keisukefukuda/153ec198cf234f0f5b3a43a044523e3a to your computer and use it in GitHub Desktop.
#include <cassert>
#include <cstring>
#include <vector>
#include <iostream>
#include <memory>
#include <tuple>
#include <string>
#include <uct/api/uct.h>
typedef struct {
int is_uct_desc;
} recv_desc_t;
#define IDENT_TO_STR_(ident) case ident: return #ident
namespace {
const char * enumToStr(ucs_status_t s) {
switch(s) {
IDENT_TO_STR_(UCS_INPROGRESS);
IDENT_TO_STR_(UCS_ERR_NO_MESSAGE);
IDENT_TO_STR_(UCS_ERR_NO_RESOURCE);
IDENT_TO_STR_(UCS_ERR_IO_ERROR);
IDENT_TO_STR_(UCS_ERR_NO_MEMORY);
IDENT_TO_STR_(UCS_ERR_INVALID_PARAM);
IDENT_TO_STR_(UCS_ERR_UNREACHABLE);
IDENT_TO_STR_(UCS_ERR_INVALID_ADDR);
IDENT_TO_STR_(UCS_ERR_NOT_IMPLEMENTED);
IDENT_TO_STR_(UCS_ERR_MESSAGE_TRUNCATED);
IDENT_TO_STR_(UCS_ERR_NO_PROGRESS);
IDENT_TO_STR_(UCS_ERR_BUFFER_TOO_SMALL);
IDENT_TO_STR_(UCS_ERR_NO_ELEM);
IDENT_TO_STR_(UCS_ERR_SOME_CONNECTS_FAILED);
IDENT_TO_STR_(UCS_ERR_NO_DEVICE);
IDENT_TO_STR_(UCS_ERR_BUSY);
IDENT_TO_STR_(UCS_ERR_CANCELED);
IDENT_TO_STR_(UCS_ERR_SHMEM_SEGMENT);
IDENT_TO_STR_(UCS_ERR_ALREADY_EXISTS);
IDENT_TO_STR_(UCS_ERR_OUT_OF_RANGE);
IDENT_TO_STR_(UCS_ERR_TIMED_OUT);
IDENT_TO_STR_(UCS_ERR_EXCEEDS_LIMIT);
IDENT_TO_STR_(UCS_ERR_UNSUPPORTED);
IDENT_TO_STR_(UCS_ERR_FIRST_LINK_FAILURE);
IDENT_TO_STR_(UCS_ERR_LAST_LINK_FAILURE);
IDENT_TO_STR_(UCS_ERR_FIRST_ENDPOINT_FAILURE);
IDENT_TO_STR_(UCS_ERR_LAST_ENDPOINT_FAILURE);
IDENT_TO_STR_(UCS_ERR_ENDPOINT_TIMEOUT);
default:
return "Unknown ucs_status_t";
}
}
}
#define UCS_SAFE_CALL(expr) do { \
ucs_status_t st = (expr); \
if (st != UCS_OK) { \
std::cerr << "Error: " \
<< __FILE__ << ":" \
<< __LINE__ << " " \
<< #expr << " failed with " \
<< enumToStr(st) << std::endl; \
exit(-1); \
} \
} while(0)
namespace UCS {
class AsyncContext {
ucs_async_context_t *ctx_;
public:
AsyncContext(ucs_async_mode_t mode) {
UCS_SAFE_CALL(ucs_async_context_create(mode, &ctx_));
}
~AsyncContext() {
ucs_async_context_destroy(ctx_);
}
inline const ucs_async_context_t *get() const {
return ctx_;
}
};
}
namespace UCT {
class TransportLayer;
class TransportLayerResources;
class MemoryDomain;
class MemoryDomainResources;
class Worker {
uct_worker_h handle_;
public:
Worker(const UCS::AsyncContext &async, ucs_thread_mode_t tm) {
UCS_SAFE_CALL(uct_worker_create(const_cast<ucs_async_context*>(async.get()),
tm, &handle_));
}
~Worker() {
uct_worker_destroy(handle_);
}
uct_worker_h get() { return handle_; }
};
class TransportLayerResources {
uct_tl_resource_desc_t *tl_rc_;
unsigned num_;
public:
TransportLayerResources(uct_md_h md_h) {
UCS_SAFE_CALL(uct_md_query_tl_resources(md_h, &tl_rc_, &num_));
}
~TransportLayerResources() {
uct_release_tl_resource_list(tl_rc_);
}
uct_tl_resource_desc_t* getRaw(size_t i) {
assert(i < num_);
return &tl_rc_[i];
}
size_t size() const {
return num_;
}
};
class TransportLayer {
std::shared_ptr<TransportLayerResources> tl_rc_;
size_t idx_;
public:
TransportLayer(std::shared_ptr<TransportLayerResources> p, size_t idx)
: tl_rc_(p), idx_(idx)
{
assert(tl_rc_->size() > idx);
}
const char *getTlName() const { return tl_rc_->getRaw(idx_)->tl_name; }
const char *getDevName() const { return tl_rc_->getRaw(idx_)->dev_name; }
};
class MemoryDomainResources {
uct_md_resource_desc_t *md_rc_;
unsigned num_md_rc_;
std::vector<std::shared_ptr<MemoryDomain>> md_;
public:
MemoryDomainResources()
: md_rc_(nullptr), num_md_rc_(0), md_()
{
UCS_SAFE_CALL(uct_query_md_resources(&md_rc_, &num_md_rc_));
assert(md_rc_ != nullptr);
for (unsigned i = 0; i < num_md_rc_; i++) {
md_.push_back(std::make_shared<MemoryDomain>(this, i));
}
}
~MemoryDomainResources() {
uct_release_md_resource_list(md_rc_);
}
std::shared_ptr<MemoryDomain> get(size_t idx) {
return md_[idx];
}
uct_md_resource_desc_t* getRaw(size_t idx) {
return &md_rc_[idx];
}
size_t size() const {
return md_.size();
}
private:
MemoryDomainResources(const MemoryDomainResources &rhs) = delete;
MemoryDomainResources& operator=(const MemoryDomainResources &rhs) = delete;
};
class MemoryDomain {
MemoryDomainResources *md_rc_;
size_t idx_;
uct_md_h md_h_;
uct_md_config_t *md_conf_;
uct_md_attr_t attr_;
std::shared_ptr<TransportLayerResources> tl_rc_;
std::vector<std::shared_ptr<TransportLayer>> tl_;
public:
MemoryDomain(MemoryDomainResources* md_rc, size_t idx) :
md_rc_(md_rc), idx_(idx)
{
// Create a memory domain
UCS_SAFE_CALL(uct_md_config_read(md_rc_->getRaw(idx_)->md_name,
NULL, NULL,
&md_conf_));
UCS_SAFE_CALL(uct_md_open(md_rc_->getRaw(idx_)->md_name, md_conf_, &md_h_));
tl_rc_ = std::make_shared<TransportLayerResources>(md_h_);
for (size_t i = 0; i < tl_rc_->size(); i++) {
tl_.push_back(std::make_shared<TransportLayer>(tl_rc_, i));
}
query();
}
~MemoryDomain() {
uct_config_release(md_conf_);
uct_md_close(md_h_);
}
uct_md_h &get() {
return md_h_;
}
const char *name() const {
return md_rc_->getRaw(idx_)->md_name;
}
// Returns a vector of TransportLayer
std::shared_ptr<TransportLayer> getTL(size_t idx) {
return tl_[idx];
}
size_t getNumTL() const {
return tl_.size();
}
std::string componentName() const {
return std::string(attr_.component_name);
}
size_t maxAlloc() const { return attr_.cap.max_alloc; }
size_t maxReg() const {return attr_.cap.max_reg; }
enum class Flag {
ALLOC = UCT_MD_FLAG_ALLOC,
REG = UCT_MD_FLAG_REG,
NEED_MEMH = UCT_MD_FLAG_NEED_MEMH,
NEED_RKEY = UCT_MD_FLAG_NEED_RKEY,
ADVISE = UCT_MD_FLAG_ADVISE,
FIXED = UCT_MD_FLAG_FIXED,
RKEY_PTR = UCT_MD_FLAG_RKEY_PTR,
SOCKADDR = UCT_MD_FLAG_SOCKADDR,
};
Flag flag() const { return static_cast<Flag>(attr_.cap.flags); }
// TODO
// memoryType() const { ... }
size_t rKeyPackedSize() const { return attr_.rkey_packed_size; }
// TODO
// cpuset_t localCpus() const { return attr_.local_cpus; }
private:
MemoryDomain(const MemoryDomain& rhs) = delete;
MemoryDomain& operator=(const MemoryDomain& rhs) = delete;
void query() {
UCS_SAFE_CALL(uct_md_query(md_h_, &attr_));
}
};
class IFace {
uct_iface_h iface_;
uct_iface_attr_t attr_;
public:
IFace() { }
void open(std::shared_ptr<Worker> worker,
std::shared_ptr<MemoryDomain> md,
const std::string &tl_name, const std::string &dev_name) {
uct_iface_params_t params;
uct_iface_config_t *config;
params.open_mode = UCT_IFACE_OPEN_MODE_DEVICE;
params.mode.device.tl_name = tl_name.c_str();
params.mode.device.dev_name = dev_name.c_str();
params.stats_root = NULL;
params.rx_headroom = sizeof(recv_desc_t);
UCS_CPU_ZERO(&params.cpu_mask);
UCS_SAFE_CALL(uct_md_iface_config_read(md->get(),
tl_name.c_str(),
NULL, NULL, &config));
auto status = uct_iface_open(md->get(), worker->get(),
&params, config, &iface_);
uct_config_release(config);
UCS_SAFE_CALL(status);
UCS_SAFE_CALL(uct_iface_query(iface_, &attr_));
}
void close() {
uct_iface_close(iface_);
}
const uct_iface_attr_t &attr() const {
return attr_;
}
};
} // namespace UCT
std::tuple<std::shared_ptr<UCT::MemoryDomain>, std::string, std::string>
dev_tl_lookup(std::shared_ptr<UCT::MemoryDomainResources> &md_rs,
const std::string& dev_name,
const std::string &tl_name) {
std::tuple<std::shared_ptr<UCT::MemoryDomain>, std::string, std::string> result;
std::cout << "=================================" << std::endl;
std::cout << "List of resources:" << std::endl;
for (size_t i = 0; i < md_rs->size(); i++) {
auto md = md_rs->get(i);
for (size_t j = 0; j < md->getNumTL(); j++) {
auto tl = md->getTL(j);
std::cout << "\t" << tl->getTlName() << " / " << tl->getDevName()
<< std::endl;
}
}
std::cout << "=================================" << std::endl;
std::cout << std::endl;
// Look for device/tl that matches the query (dev_name, tl_name)
for (size_t i = 0; i < md_rs->size(); i++) {
auto md = md_rs->get(i);
for (size_t j = 0; j < md->getNumTL(); j++) {
auto tl = md->getTL(j);
if (dev_name == tl->getDevName() && tl_name == tl->getTlName()) {
result = std::make_tuple(md, tl->getTlName(), tl->getDevName());
}
}
}
return result;
}
int main(int argc, char **argv) {
assert(argc == 3);
UCS::AsyncContext async(UCS_ASYNC_MODE_THREAD);
auto worker = std::make_shared<UCT::Worker>(async, UCS_THREAD_MODE_SINGLE);
auto md_rs = std::make_shared<UCT::MemoryDomainResources>();
std::string tl_query(argv[1]);
std::string dev_query(argv[2]);
std::shared_ptr<UCT::MemoryDomain> md;
std::string tl_name, dev_name;
std::tie(md, tl_name, dev_name) = dev_tl_lookup(md_rs, dev_query, tl_query);
if (tl_name.size() == 0 || dev_name.size() == 0) {
std::cout << "No matching tl/dev : " << tl_query << " / " << dev_query << std::endl;
exit(-1);
}
std::cout << "Using " << tl_name << "/" << dev_name << std::endl;
UCT::IFace iface;
iface.open(worker, md, tl_name, dev_name);
auto &attr = iface.attr();
auto lat = attr.latency;
std::cout << "\t" << md->name() << std::endl;
std::cout << "\t\t" << "component name: " << md->componentName() << "\n";
std::cout << "\t\t" << "max alloc: " << md->maxAlloc() << "\n";
std::cout << "\t\t" << " ("
<< (size_t)(md->maxAlloc()/1024./1024/1024) << "[GiB])" << "\n";
std::cout << "\t\t" << "max reg: " << md->maxReg() << "\n";
std::cout << "\t\t" << " ("
<< (size_t)(md->maxReg()/1024./1024/1024) << "[GiB])\n";
std::cout << "\t\t" << "rkey packed size: " << md->rKeyPackedSize() << "\n";
// Print devices and transport layers
std::cout << "\t\t" << "Devices:" << std::endl;
for (size_t j = 0; j < md->getNumTL(); j++) {
auto tl = md->getTL(j);
std::cout << "\t\t\t" << tl->getDevName() << "/" << tl->getTlName()
<< std::endl;
}
std::cout << "iface_config of " << tl_name << "/" << dev_name << std::endl;
std::cout << "\tdevice_addr_len = " << attr.device_addr_len << std::endl;
std::cout << "\tiface_addr_len = " << attr.iface_addr_len << std::endl;
std::cout << "\tep_addr_len = " << attr.ep_addr_len << std::endl;
std::cout << "\tmax_conn_priv = " << attr.max_conn_priv << std::endl;
std::cout << "\toverhead = " << attr.overhead << std::endl;
std::cout << "\tlatency = " << lat.growth << " * x + "
<< lat.overhead << std::endl;
std::cout << "\tpriority = " << (int)attr.priority << std::endl;
std::cout << std::endl;
auto &put = attr.cap.put;
std::cout << "\tattr.cap.put" << std::endl;
std::cout << "\t\tmax_short = " << put.max_short << std::endl;
std::cout << "\t\tmax_bcopy = " << put.max_bcopy << std::endl;
std::cout << "\t\tmin_zcopy = " << put.min_zcopy << std::endl;
std::cout << "\t\tmax_zcopy = " << put.max_zcopy << " (="
<< (put.max_zcopy/1024/1024) << " [MiB])" << std::endl;
std::cout << "\t\topt_zcopy_align = " << put.opt_zcopy_align << std::endl;
std::cout << "\t\talign_mtu = " << put.align_mtu << std::endl;
std::cout << "\t\tmax_iov = " << put.max_iov << std::endl;
auto &get = attr.cap.get;
std::cout << "\tattr.cap.get" << std::endl;
std::cout << "\t\tmax_bcopy = " << get.max_bcopy << std::endl;
std::cout << "\t\tmin_zcopy = " << get.min_zcopy << std::endl;
std::cout << "\t\tmax_zcopy = " << get.max_zcopy << " (="
<< (get.max_zcopy/1024/1024) << " [MiB])" << std::endl;
std::cout << "\t\topt_zcopy_align = " << get.opt_zcopy_align << std::endl;
std::cout << "\t\talign_mtu = " << get.align_mtu << std::endl;
std::cout << "\t\tmax_iov = " << get.max_iov << std::endl;
auto &am = attr.cap.am;
std::cout << "\tattr.cap.am" << std::endl;
std::cout << "\t\tmax_short = " << am.max_short << std::endl;
std::cout << "\t\tmax_bcopy = " << am.max_bcopy << std::endl;
std::cout << "\t\tmin_zcopy = " << am.min_zcopy << std::endl;
std::cout << "\t\tmax_zcopy = " << am.max_zcopy << " (="
<< (am.max_zcopy/1024/1024) << " [MiB])" << std::endl;
std::cout << "\t\topt_zcopy_align = " << am.opt_zcopy_align << std::endl;
std::cout << "\t\talign_mtu = " << am.align_mtu << std::endl;
std::cout << "\t\tmax_iov = " << am.max_iov << std::endl;
auto &recv = attr.cap.tag.recv;
std::cout << "\tattr.cap.tag.recv.min_recv = " << recv.min_recv << std::endl;
std::cout << "\tattr.cap.tag.recv.max_zcopy = " << recv.max_zcopy << std::endl;
std::cout << "\tattr.cap.tag.recv.max_iov = " << recv.max_iov << std::endl;
std::cout << "\tattr.cap.tag.recv.max_outstanding = " << recv.max_outstanding << std::endl;
auto &eager = attr.cap.tag.eager;
std::cout << "\tattr.cap.tag.eager.max_short = " << eager.max_short << std::endl;
std::cout << "\tattr.cap.tag.eager.max_bcopy = " << eager.max_bcopy << std::endl;
std::cout << "\tattr.cap.tag.eager.max_zcopy = " << eager.max_zcopy << std::endl;
std::cout << "\tattr.cap.tag.eager.max_iov = " << eager.max_iov << std::endl;
auto &rndv = attr.cap.tag.rndv;
std::cout << "\tattr.cap.tag.rndv.max_zcopy = " << rndv.max_zcopy << std::endl;
std::cout << "\tattr.cap.tag.rndv.max_hdr = " << rndv.max_hdr << std::endl;
std::cout << "\tattr.cap.tag.rndv.max_iov = " << rndv.max_iov << std::endl;
iface.close();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment