SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
irmst_node_run_task.sas
Go to the documentation of this file.
1/*
2 Copyright (C) 2019 SAS Institute Inc. Cary, NC, USA
3*/
4
5/** \file
6 \brief Run a set of programs
7
8 \param [in] RUN_OPTION Specifies runtime parameters for the execution. See \link run_option.sas \endlink for details.
9 \param [in] ds_in_cardinality Controls the level of parallelization for IRM data partitioning
10 \param [in] ds_in_execution_config Lists the programs to be executed. See \link execution_config.sas \enlink for details.
11 \param [out] ds_out Output dataset containing the list of result tables produced by each executed program
12
13 \details
14 In addition the following macro utilities are called:
15
16 | Macro name | Description | Further information |
17 |---------------------------|--------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
18 | irm_session_prepare | Reads RUN_OPTION table and sets logging options | \link irm_session_prepare.sas \endlink |
19 | irm_session_cleanup | Removes all non-IRM WORK datasets/views and deletes all user-created macro variables from workspace session | \link irm_session_cleanup.sas \endlink |
20
21 \ingroup nodes
22 \author SAS Institute Inc.
23 \date 2019
24*/
25
26/* Initialize session */
27%irm_session_prepare();
28
29/* Run the programs associated to the current IRM task partition */
30%irmc_task_runner(ds_in_cardinality = &ds_in_cardinality.
31 , ds_in_execution_config = &ds_in_execution_config.
32 , partition_no = &rank.
33 , irm_fa_path = &fa_path.
34 , ds_out = &ds_out.
35 );
36
37/* Cleanup session */
38%irm_session_cleanup;