Template Function shad::rt::executeAt(const Locality&, FunT&&, const InArgsT&)

Function Documentation

template <typename FunT, typename InArgsT>
void shad::rt::executeAt(const Locality &loc, FunT &&func, const InArgsT &args)

Execute a function on a selected locality synchronously.

Typical Usage:

struct Args {
  int a;
  char b;
};

void task(const Args & args) {  /* do something */ }

Args args { 2, 'a' };
for (auto & locality : allLocalities)
  if (static_cast<uint32_t>(locality) % 2)
    executeAt(locality, task, args);

Template Parameters
  • FunT: The type of the function to be executed. The function prototype must be:
    void(const InArgsT &);
    
  • InArgsT: The type of the argument accepted by the function. The type can be a structure or a class but with the restriction that must be memcopy-able.
Parameters
  • loc: The Locality where the function must be executed.
  • func: The function to execute.
  • args: The arguments to be passed to the function.