Exemplo n.º 1
0
 auto& noprll() {
   _procReq = ProcReq(1);
   return ((T *)this)->self();
 }
Exemplo n.º 2
0
 /*!
  * set rise to run on single process.
  * */
 auto& noprll() {
   _procReq = ProcReq(1);
   return *this;
 }
Exemplo n.º 3
0
 template <class Ptype> auto& prll(Ptype p) {
   _procReq = ProcReq(p);
   return ((T *)this)->self();
 }
Exemplo n.º 4
0
 /*!
  * parallel request for the rise to run on.
  * @param procReq Process request in terms of exact number of processes, ratio
  *        of total processes wrt to dataflow or exact rank of processes in a 
  *        vector<int>.
  * */
 template <class Ptype> auto& prll(Ptype p) {
   _procReq = ProcReq(p);
   return *this;
 }