WRENCH  1.11
Cyberinfrastructure Simulation Workbench
Overview Installation Getting Started WRENCH 101 WRENCH 102
Public Member Functions | List of all members
wrench::BatchComputeService Class Reference

A batch_standard_and_pilot_jobs-scheduled compute service that manages a set of compute hosts and controls access to their resource via a batch_standard_and_pilot_jobs queue. More...

#include <BatchComputeService.h>

Inheritance diagram for wrench::BatchComputeService:
wrench::ComputeService wrench::Service

Public Member Functions

 BatchComputeService (const std::string &hostname, std::vector< std::string > compute_hosts, std::string scratch_space_mount_point, WRENCH_PROPERTY_COLLECTION_TYPE property_list={}, WRENCH_MESSAGE_PAYLOADCOLLECTION_TYPE messagepayload_list={})
 Constructor. More...
 
bool supportsCompoundJobs () override
 Returns true if the service supports compound jobs. More...
 
bool supportsPilotJobs () override
 Returns true if the service supports pilot jobs. More...
 
bool supportsStandardJobs () override
 Returns true if the service supports standard jobs. More...
 

Additional Inherited Members

- Static Public Attributes inherited from wrench::ComputeService
static constexpr unsigned long ALL_CORES = ULONG_MAX
 A convenient constant to mean "use all cores of a physical host" whenever a number of cores is needed when instantiating compute services.
 
static constexpr double ALL_RAM = DBL_MAX
 A convenient constant to mean "use all ram of a physical host" whenever a ram capacity is needed when instantiating compute services.
 

Detailed Description

A batch_standard_and_pilot_jobs-scheduled compute service that manages a set of compute hosts and controls access to their resource via a batch_standard_and_pilot_jobs queue.

In the current implementation of this service, like for many of its real-world counterparts, memory_manager_service partitioning among jobs onq the same host is not handled. When multiple jobs share hosts, which can happen when jobs require only a few cores per host and can thus be co-located on the same hosts in a non-exclusive fashion, each job simply runs as if it had access to the full RAM of each compute host it is scheduled on. The simulation of these memory_manager_service contended scenarios is thus, for now, not realistic as there is no simulation of the effects of memory_manager_service sharing (e.g., swapping).

Constructor & Destructor Documentation

◆ BatchComputeService()

wrench::BatchComputeService::BatchComputeService ( const std::string &  hostname,
std::vector< std::string >  compute_hosts,
std::string  scratch_space_mount_point,
WRENCH_PROPERTY_COLLECTION_TYPE  property_list = {},
WRENCH_MESSAGE_PAYLOADCOLLECTION_TYPE  messagepayload_list = {} 
)

Constructor.

Parameters
hostnamethe hostname on which to start the service
compute_hoststhe list of names of the available compute hosts
  • the hosts must be homogeneous (speed, number of cores, and RAM size)
  • all cores are usable by the BatchComputeService service on each host
  • all RAM is usable by the BatchComputeService service on each host
scratch_space_mount_pointthe mount point of the scratch storage space for the service ("" means "no scratch space")
property_lista property list that specifies BatchComputeServiceProperty values ({} means "use all defaults")
messagepayload_lista message payload list that specifies BatchComputeServiceMessagePayload values ({} means "use all defaults")

Member Function Documentation

◆ supportsCompoundJobs()

bool wrench::BatchComputeService::supportsCompoundJobs ( )
override

Returns true if the service supports compound jobs.

Returns
true or false

◆ supportsPilotJobs()

bool wrench::BatchComputeService::supportsPilotJobs ( )
override

Returns true if the service supports pilot jobs.

Returns
true or false

◆ supportsStandardJobs()

bool wrench::BatchComputeService::supportsStandardJobs ( )
override

Returns true if the service supports standard jobs.

Returns
true or false

The documentation for this class was generated from the following files: