DaCS API functions
The DaCS library API services are provided as functions in the C language. The protocols and constants required are made available to the compiler by including the DaCS header file dacs.h as:
#include <dacs.h>
Process management model
When working with the host and accelerators there has to be a way to uniquely identify the participants that are communicating. From an architectural perspective, each accelerator could have multiple processes simultaneously running, so it is not enough simply to identify the accelerator. Instead the unit of execution on the accelerator (the DaCS Process) must be identified using its DaCS Element Id (DE id) and its Process Id (Pid). The DE Id is retrieved when the accelerator is reserved (using dacs_reserve_children()) and the Pid when the process is started (using dacs_de_start()). Since the parent is not reserved, and no process is started on it, two constants are provided to identify the parent: DACS_DE_PARENT and DACS_PID_PARENT. Similarly, to identify the calling process itself, the constants DACS_DE_SELF and DACS_PID_SELF are provided.
Resource sharing model
API environment
To make these services accessible to the runtime code each process must create a DaCS environment. This is done by calling the special initialization service dacs_runtime_init(). When this service returns the environment is set up so that all other DaCS function calls can be invoked.
When the DaCS environment is no longer required the process must call dacs_runtime_exit() to free all resources used by the environment.
Three versions of the DaCS libraries are provided with the DaCS packages: optimized, debug and traced. The optimized libraries have minimal error checking and are intended for production use. The debug libraries have much more error checking than the optimized libraries and are intended to be used during application development. The traced libraries are the optimized libraries with performance and debug trace hooks in them. These are intended to be used to debug functional and performance problems that might be encountered. The traced libraries use the interfaces provided by the Performance Debug Tool (PDT) and require that this tool be installed. See Performance and debug trace for more information on configuring and using traced libraries, and DaCS debugging for debug libraries.
Description | Library Path |
---|---|
Optimized | /prototype/usr/lib64 |
Debug | /prototype/usr/lib64/dacs/debug |
Traced | /prototype/usr/lib64/dacs/trace |
taskset -p 0x00000001 $$The bit mask, starting with 0 from right to left, is an index to the processor affinity setting. Bit 0 is on or off for CPU 0, bit 1 for CPU 1, and bit number x is CPU number x. $$ means the current process gets the affinity setting.
taskset -p $$will return the mask setting as an integer. Using the -c option makes the taskset more usable. For example,
taskset -pc 7 $$will set the processor CPU affinity to CPU 7 for the current process. The -pc parameter sets by process and CPU number.
taskset -pc $$will return the current CPU setting for affinity for the current process. According to the man page for taskset a user must have CAP_SYS_NICE permission to change CPU affinity. See the man page for taskset for more details.
taskset 0x00000001 HelloDaCSApp Mikeor equivalently
taskset -c 0 HelloDaCSApp Mikewhere the application program is HelloDaCSApp and is passed an argument of "Mike".
On the accelerator system the adacsd launch of an AE application on a specific CBE includes setting the affinity to the CBE and its associated memory node. If the launch is on the Cell Blade as an AE no affinity is set.