WRENCH
1.11
Cyberinfrastructure Simulation Workbench
|
Overview | Installation | Getting Started | WRENCH 101 | WRENCH 102 |
A class that defines a custom parallel task performance model. More...
#include <CustomParallelModel.h>
Public Member Functions | |
std::vector< double > | getWorkPerThread (double total_work, unsigned long num_threads) override |
Returns the amount of work each thread much perform. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from wrench::ParallelModel | |
static std::shared_ptr< ParallelModel > | AMDAHL (double alpha) |
Create an instance of an "Amdahl" parallel model. More... | |
static std::shared_ptr< ParallelModel > | CONSTANTEFFICIENCY (double efficiency) |
Create an instance of a "Constant Efficiency" parallel model. More... | |
static std::shared_ptr< ParallelModel > | CUSTOM (std::function< std::vector< double >(double, long)> lambda) |
Create an instance of a "Custom" parallel model. More... | |
A class that defines a custom parallel task performance model.
|
overridevirtual |
Returns the amount of work each thread much perform.
total_work | total amount of work |
num_threads | the number of threads |
Implements wrench::ParallelModel.