matflow.NumCores#

class matflow.NumCores(start, stop, step=None)#

Bases: NumCores

A range of cores supported by an executable instance.

Parameters:
  • start (int) – The minimum number of cores supported.

  • stop (int) – The maximum number of cores supported.

  • step (int) – The step in the number of cores supported. Defaults to 1.

Methods

from_json_like

Make an instance of this class from JSON (or YAML) data.

to_dict

Serialize this object as a dictionary.

to_json_like

Serialize this object as an object structure that can be trivially converted to JSON.

Attributes

app

step

The step in the number of cores supported.

start

The minimum number of cores supported.

stop

The maximum number of cores supported.

app = App(name='MatFlow', version='0.3.0a131')#
classmethod from_json_like(json_like, shared_data=None)#

Make an instance of this class from JSON (or YAML) data.

Parameters:
  • json_like (Union[Dict, List]) – The data to deserialise.

  • shared_data (Optional[Dict[str, ObjectList]]) – Shared context data.

Return type:

The deserialised object.

start: int#

The minimum number of cores supported.

step: int = None#

The step in the number of cores supported. Normally 1.

stop: int#

The maximum number of cores supported.

to_dict()#

Serialize this object as a dictionary.

to_json_like(dct=None, shared_data=None, exclude=None, path=None)#

Serialize this object as an object structure that can be trivially converted to JSON. Note that YAML can also be produced from the result of this method; it just requires a different final serialization step.