SECTION 1.4 Preprocessor Directives for Job Template Compilation


Defines

#define DRMAA_REMOTE_COMMAND   "drmaa_remote_command"
#define DRMAA_V_ARGV   "drmaa_v_argv"
#define DRMAA_V_ENV   "drmaa_v_env"
#define DRMAA_INPUT_PATH   "drmaa_input_path"
#define DRMAA_OUTPUT_PATH   "drmaa_output_path"
#define DRMAA_ERROR_PATH   "drmaa_error_path"
#define DRMAA_WD   "drmaa_wd"
#define DRMAA_JOB_NAME   "drmaa_job_name"
#define DRMAA_JS_STATE   "drmaa_js_state"
#define DRMAA_SUBMISSION_STATE_ACTIVE   "drmaa_active"
#define DRMAA_SUBMISSION_STATE_HOLD   "drmaa_hold"
#define DRMAA_PLACEHOLDER_HD   "$drmaa_hd_ph$"
#define DRMAA_PLACEHOLDER_INCR   "$drmaa_incr_ph$"
#define DRMAA_PLACEHOLDER_WD   "$drmaa_wd_ph$"
#define DRMAA_DEADLINE_TIME   "drmaa_deadline_time"
#define DRMAA_BLOCK_EMAIL   "drmaa_block_email"
#define DRMAA_DURATION_HLIMIT   "drmaa_duration_hlimit"
#define DRMAA_DURATION_SLIMIT   "drmaa_duration_slimit"
#define DRMAA_JOB_CATEGORY   "drmaa_job_category"
#define DRMAA_JOIN_FILES   "drmaa_join_files"
#define DRMAA_NATIVE_SPECIFICATION   "drmaa_native_specification"
#define DRMAA_START_TIME   "drmaa_start_time"
#define DRMAA_TRANSFER_FILES   "drmaa_transfer_files"
#define DRMAA_V_EMAIL   "drmaa_v_email"
#define DRMAA_WCT_HLIMIT   "drmaa_wct_hlimit"
#define DRMAA_WCT_SLIMIT   "drmaa_wct_slimit"

Define Documentation

#define DRMAA_BLOCK_EMAIL   "drmaa_block_email"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_DEADLINE_TIME   "drmaa_deadline_time"

Pre-defined string to represent a deadline for job execution. GridWay WILL NOT terminate a job after the deadline, neither guarantees that the job is executed before the deadline. A deadline is specified relative to job submission time, in the form: [[DD:][HH:]]MM where, DD is the number of days HH is the number of hours MM is the number of minutes

Example: 01:22 The job should finished one hour and 22 minutes after submission.

NOTE: The use of the DEADLINE_TIME as described here differs from the one specified in the standard (v1.0).

#define DRMAA_DURATION_HLIMIT   "drmaa_duration_hlimit"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_DURATION_SLIMIT   "drmaa_duration_slimit"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_ERROR_PATH   "drmaa_error_path"

Pre-defined string to refer to standard error file for the DRMAA_REMOTE_COMMAND. The standard input file IS RELATIVE TO THE WORKING DIRECTORY.

#define DRMAA_INPUT_PATH   "drmaa_input_path"

Pre-defined string to refer to standard input file for the DRMAA_REMOTE_COMMAND. The standard input file IS RELATIVE TO THE WORKING DIRECTORY.

#define DRMAA_JOB_CATEGORY   "drmaa_job_category"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_JOB_NAME   "drmaa_job_name"

Pre-defined string to refer to the DRMAA job-name. The current GridWay DRMAA implementation will generate a job template file with name DRMAA_JOB_NAME in the job working directory (DRMAA_WD). DRMAA_JOB_NAME is a MANDATORY attribute value and MUST BE DEFINED. The default value is "job_template".

#define DRMAA_JOIN_FILES   "drmaa_join_files"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_JS_STATE   "drmaa_js_state"

Pre-defined string to refer to the job state at submission, the job will enter either the QUEUED_ACTIVE state or HOLD state when submitted. The preprocessor directives DRMAA_SUBMISSION_STATE_ACTIVE and DRMAA_SUBMISSION_STATE_HOLD SHOULD be used to assign the value of this attribute. The default value for DRMAA_JS_STATE is ACTIVE.

#define DRMAA_NATIVE_SPECIFICATION   "drmaa_native_specification"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_OUTPUT_PATH   "drmaa_output_path"

Pre-defined string to refer to standard output file for the DRMAA_REMOTE_COMMAND. The standard input file IS RELATIVE TO THE WORKING DIRECTORY.

#define DRMAA_PLACEHOLDER_HD   "$drmaa_hd_ph$"

Pre-defined string to refer the user's home directory.

#define DRMAA_PLACEHOLDER_INCR   "$drmaa_incr_ph$"

Pre-defined string to be used in parametric jobs (bluk jobs). DRMAA_PLACEHOLDER_INCR will be available during job execution and can be used as an ARGUMENT for the REMOTE COMMAND, or to generate output filenames. Please note that this attribute name should be used ONLY in conjuntion with a drmaa_run_bulk_jobs function call. Use DRMAA_GW_JOB_ID for "stand-alone" jobs.

#define DRMAA_PLACEHOLDER_WD   "$drmaa_wd_ph$"

Pre-defined string constant to represent the current working directory when building paths for the input, output, and error path attribute values. Plase note that ALL FILES MUST BE NAMED RELATIVE TO THE WORKING DIRECTORY.

#define DRMAA_REMOTE_COMMAND   "drmaa_remote_command"

Pre-defined string to refer to the command to be executed on the remote host. DRMAA_REMOTE_COMMAND can be relative to the working directory (DRMAA_WD) or an absolute filename (will not be transferred). Architecture-dependent DRMAA_REMOTE_COMMAND can be generated with DRMAA_GW_ARCH.

#define DRMAA_START_TIME   "drmaa_start_time"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_SUBMISSION_STATE_ACTIVE   "drmaa_active"

Pre-defined string to refer to the ACTIVE state on submission. Use this preprocessor directive to assign the value of the DRMAA_JS_STATE attribute through the drmaa_set_attribute() function call.

#define DRMAA_SUBMISSION_STATE_HOLD   "drmaa_hold"

Pre-defined string to refer to the HOLD state on submission. Use this preprocessor directive to assign the value of the DRMAA_JS_STATE attribute through the drmaa_set_attribute() function call.

#define DRMAA_TRANSFER_FILES   "drmaa_transfer_files"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_V_ARGV   "drmaa_v_argv"

Pre-defined string to refer to the DRMAA_REMOTE_COMMAND arguments. DRMAA_V_ARGV corresponds to a NULL terminated vector attribute value.

#define DRMAA_V_EMAIL   "drmaa_v_email"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_V_ENV   "drmaa_v_env"

Pre-defined string to refer to the DRMAA_REMOTE_COMMAND environment variables. DRMAA_V_ENV corresponds to a NULL terminated vector attribute value.

#define DRMAA_WCT_HLIMIT   "drmaa_wct_hlimit"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_WCT_SLIMIT   "drmaa_wct_slimit"

Not relevant for the current GridWay implementation, will be ignored

#define DRMAA_WD   "drmaa_wd"

Pre-defined string to refer to the job working directory. The GridWay DRMAA implementation will generate a job template file with name DRMAA_JOB_NAME in the job working directory (DRMAA_WD). It is a MANDATORY attribute value and MUST BE DEFINED. Plase note that ALL FILES ARE NAMED RELATIVE TO THE WORKING DIRECTORY. Also this is a LOCAL PATH NAME, this directory will be "recreated" in the remote host, and it will be the working directory of the job on the execution host. The default value is DRMAA_PLACEHOLDER_WD.