QUDA v0.4.0
A library for QCD on GPUs
quda/lib/comm_qmp.cpp
Go to the documentation of this file.
00001 #include <qmp.h>
00002 #include <comm_quda.h>
00003 
00004 int comm_rank()
00005 {
00006   return QMP_get_node_number();
00007 }
00008 
00009 void comm_broadcast(void *data, size_t nbytes)
00010 {
00011   QMP_broadcast(data, nbytes);
00012 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines