Package saga :: Package job :: Module _job :: Class description
[hide private]
[frames] | no frames]

Class description

 object --+        
          |        
??.instance --+    
              |    
 _engine.object --+
                  |
                 description
Known Subclasses:

Nested Classes [hide private]

Inherited from _engine.object: object_type

Instance Methods [hide private]
 
__init__(...)
__init__( (object)arg1) -> None :
 
attribute_exists(...)
attribute_exists( (description)arg1, (str)arg2) -> bool : tests if the given attribute exists for this instance (plain)
 
attribute_is_readonly(...)
attribute_is_readonly( (description)arg1, (str)arg2) -> bool : tests if the given attribute is read only (plain)
 
attribute_is_removable(...)
attribute_is_removable( (description)arg1, (str)arg2) -> bool : tests if the given attribute is removable (plain)
 
attribute_is_vector(...)
attribute_is_vector( (description)arg1, (str)arg2) -> bool : tests if the given attribute is a vector attribute (plain)
 
attribute_is_writable(...)
attribute_is_writable( (description)arg1, (str)arg2) -> bool : tests if the given attribute is writable (plain)
 
find_attributes(...)
find_attributes( (description)arg1, (str)arg2) -> object : find attributes matching the given pattern (plain)
 
get_attribute(...)
get_attribute( (description)arg1, (str)arg2) -> str : returns a (scalar) attribute associated with this object (plain)
 
get_vector_attribute(...)
get_vector_attribute( (description)arg1, (str)arg2) -> object : returns a (vector) attribute associated with this object (plain)
 
list_attributes(...)
list_attributes( (description)arg1) -> object : lists the keys of all attributes associated with this object (plain)
 
remove_attribute(...)
remove_attribute( (description)arg1, (str)arg2) -> None : removes an attribute associated with this object (plain)
 
set_attribute(...)
set_attribute( (description)arg1, (str)arg2, (str)arg3) -> None : sets a (scalar) attribute associated with this object (plain)
 
set_vector_attribute(...)
set_vector_attribute( (description)arg1, (str)arg2, (object)arg3) -> None : sets a (vector) attribute associated with this object (plain)

Inherited from _engine.object: __reduce__, clone, get_id, get_object_type_name, get_session, get_type

Inherited from unreachable.instance: __new__

Inherited from object: __delattr__, __getattribute__, __hash__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]

Inherited from _engine.object: Advert, AdvertDirectory, Buffer, Context, Directory, Endpoint, Exception, File, IOVec, Job, JobDescription, JobSelf, JobService, LogicalDirectory, LogicalFile, Metric, Msg, NSDirectory, NSEntry, Parameter, RPC, Session, Stream, StreamService, Task, TaskContainer, URL, __instance_size__

Properties [hide private]
  arguments
accesses the vector attribute 'arguments'
  candidate_hosts
accesses the vector attribute 'candidate_hosts'
  cleanup
accesses the attribute 'cleanup'
  cpu_architecture
accesses the attribute 'cpu_architecture'
  environment
accesses the vector attribute 'environment'
  error
accesses the attribute 'error'
  executable
accesses the attribute 'executable'
  file_transfer
accesses the vector attribute 'file_transfer'
  input
accesses the attribute 'input'
  interactive
accesses the attribute 'interactive'
  job_contact
accesses the attribute 'job_contact'
  job_start_time
accesses the attribute 'job_start_time'
  number_of_processes
accesses the attribute 'number_of_processes'
  operating_system_type
accesses the attribute 'operating_system_type'
  output
accesses the attribute 'output'
  processes_per_host
accesses the attribute 'processes_per_host'
  queue
accesses the attribute 'queue'
  spmd_variation
accesses the attribute 'spmd_variation'
  threads_per_process
accesses the attribute 'threads_per_process'
  total_cpu_count
accesses the attribute 'total_cpu_count'
  total_cpu_time
accesses the attribute 'total_cpu_time'
  total_physical_memory
accesses the attribute 'total_physical_memory'
  working_directory
accesses the attribute 'working_directory'

Inherited from _engine.object: id, session, type

Inherited from object: __class__

Method Details [hide private]

__init__(...)
(Constructor)

 

__init__( (object)arg1) -> None :

    C++ signature :
        void __init__(_object*)

Overrides: object.__init__

attribute_exists(...)

 

attribute_exists( (description)arg1, (str)arg2) -> bool :
    tests if the given attribute exists for this instance (plain)

    C++ signature :
        bool attribute_exists(saga::job::description,std::string)

attribute_exists( (description)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute exists for this instance (task based)

    C++ signature :
        saga::task attribute_exists(saga::job::description,saga::python::routine_type,std::string)

attribute_is_readonly(...)

 

attribute_is_readonly( (description)arg1, (str)arg2) -> bool :
    tests if the given attribute is read only (plain)

    C++ signature :
        bool attribute_is_readonly(saga::job::description,std::string)

attribute_is_readonly( (description)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute is read only (task based)

    C++ signature :
        saga::task attribute_is_readonly(saga::job::description,saga::python::routine_type,std::string)

attribute_is_removable(...)

 

attribute_is_removable( (description)arg1, (str)arg2) -> bool :
    tests if the given attribute is removable (plain)

    C++ signature :
        bool attribute_is_removable(saga::job::description,std::string)

attribute_is_removable( (description)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute is removable (task based)

    C++ signature :
        saga::task attribute_is_removable(saga::job::description,saga::python::routine_type,std::string)

attribute_is_vector(...)

 

attribute_is_vector( (description)arg1, (str)arg2) -> bool :
    tests if the given attribute is a vector attribute (plain)

    C++ signature :
        bool attribute_is_vector(saga::job::description,std::string)

attribute_is_vector( (description)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute is a vector attribute (task based)

    C++ signature :
        saga::task attribute_is_vector(saga::job::description,saga::python::routine_type,std::string)

attribute_is_writable(...)

 

attribute_is_writable( (description)arg1, (str)arg2) -> bool :
    tests if the given attribute is writable (plain)

    C++ signature :
        bool attribute_is_writable(saga::job::description,std::string)

attribute_is_writable( (description)arg1, (routine_type)arg2, (str)arg3) -> task :
    tests if the given attribute is writable (task based)

    C++ signature :
        saga::task attribute_is_writable(saga::job::description,saga::python::routine_type,std::string)

find_attributes(...)

 

find_attributes( (description)arg1, (str)arg2) -> object :
    find attributes matching the given pattern (plain)

    C++ signature :
        std::vector<std::string, std::allocator<std::string> > find_attributes(saga::job::description,std::string)

find_attributes( (description)arg1, (routine_type)arg2, (str)arg3) -> task :
    find attributes matching the given pattern (task based)

    C++ signature :
        saga::task find_attributes(saga::job::description,saga::python::routine_type,std::string)

get_attribute(...)

 

get_attribute( (description)arg1, (str)arg2) -> str :
    returns a (scalar) attribute associated with this object (plain)

    C++ signature :
        std::string get_attribute(saga::job::description,std::string)

get_attribute( (description)arg1, (routine_type)arg2, (str)arg3) -> task :
    returns a (scalar) attribute associated with this object (task based)

    C++ signature :
        saga::task get_attribute(saga::job::description,saga::python::routine_type,std::string)

get_vector_attribute(...)

 

get_vector_attribute( (description)arg1, (str)arg2) -> object :
    returns a (vector) attribute associated with this object (plain)

    C++ signature :
        std::vector<std::string, std::allocator<std::string> > get_vector_attribute(saga::job::description,std::string)

get_vector_attribute( (description)arg1, (routine_type)arg2, (str)arg3) -> task :
    returns a (vector) attribute associated with this object (task based)

    C++ signature :
        saga::task get_vector_attribute(saga::job::description,saga::python::routine_type,std::string)

list_attributes(...)

 

list_attributes( (description)arg1) -> object :
    lists the keys of all attributes associated with this object (plain)

    C++ signature :
        std::vector<std::string, std::allocator<std::string> > list_attributes(saga::job::description)

list_attributes( (description)arg1, (routine_type)arg2) -> task :
    lists the keys of all attributes associated with this object (task based)

    C++ signature :
        saga::task list_attributes(saga::job::description,saga::python::routine_type)

remove_attribute(...)

 

remove_attribute( (description)arg1, (str)arg2) -> None :
    removes an attribute associated with this object (plain)

    C++ signature :
        void remove_attribute(saga::job::description,std::string)

remove_attribute( (description)arg1, (routine_type)arg2, (str)arg3) -> task :
    removes an attribute associated with this object (task based)

    C++ signature :
        saga::task remove_attribute(saga::job::description,saga::python::routine_type,std::string)

set_attribute(...)

 

set_attribute( (description)arg1, (str)arg2, (str)arg3) -> None :
    sets a (scalar) attribute associated with this object (plain)

    C++ signature :
        void set_attribute(saga::job::description,std::string,std::string)

set_attribute( (description)arg1, (routine_type)arg2, (str)arg3, (str)arg4) -> task :
    sets a (scalar) attribute associated with this object (task based)

    C++ signature :
        saga::task set_attribute(saga::job::description,saga::python::routine_type,std::string,std::string)

set_vector_attribute(...)

 

set_vector_attribute( (description)arg1, (str)arg2, (object)arg3) -> None :
    sets a (vector) attribute associated with this object (plain)

    C++ signature :
        void set_vector_attribute(saga::job::description,std::string,std::vector<std::string, std::allocator<std::string> >)

set_vector_attribute( (description)arg1, (routine_type)arg2, (str)arg3, (object)arg4) -> task :
    sets a (vector) attribute associated with this object (task based)

    C++ signature :
        saga::task set_vector_attribute(saga::job::description,saga::python::routine_type,std::string,std::vector<std::string, std::allocator<std::string> >)


Property Details [hide private]

arguments

accesses the vector attribute 'arguments'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

candidate_hosts

accesses the vector attribute 'candidate_hosts'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

cleanup

accesses the attribute 'cleanup'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

cpu_architecture

accesses the attribute 'cpu_architecture'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

environment

accesses the vector attribute 'environment'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

error

accesses the attribute 'error'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

executable

accesses the attribute 'executable'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

file_transfer

accesses the vector attribute 'file_transfer'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

input

accesses the attribute 'input'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

interactive

accesses the attribute 'interactive'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

job_contact

accesses the attribute 'job_contact'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

job_start_time

accesses the attribute 'job_start_time'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

number_of_processes

accesses the attribute 'number_of_processes'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

operating_system_type

accesses the attribute 'operating_system_type'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

output

accesses the attribute 'output'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

processes_per_host

accesses the attribute 'processes_per_host'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

queue

accesses the attribute 'queue'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

spmd_variation

accesses the attribute 'spmd_variation'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

threads_per_process

accesses the attribute 'threads_per_process'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

total_cpu_count

accesses the attribute 'total_cpu_count'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

total_cpu_time

accesses the attribute 'total_cpu_time'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

total_physical_memory

accesses the attribute 'total_physical_memory'

Get Method:
unreachable(...)
Set Method:
unreachable(...)

working_directory

accesses the attribute 'working_directory'

Get Method:
unreachable(...)
Set Method:
unreachable(...)