Header files¶
oneDAL public identifiers are represented in the following header files:
Header file |
Description |
---|---|
|
The main header file of oneDAL library. |
|
A header file for a particular algorithm. The string %ALGO% should be substituted with the name of the algorithm, for example, |
|
A header file for miscellaneous data types and functionality that is intended to be used by oneDAL algorithms and applications of the analytical pipeline. The string %FUNC% should be substituted with the functionality name, for example, |
|
A header file for auxiliary functionality, such as memory allocators or type traits, that is intended to be used for the design of classes and implementation of various methods. The string %UTIL% should be substituted with the auxiliary functionality name, for example, |
Namespaces¶
oneDAL functionality is represented with a system of C++ namespaces described below:
Namespace |
oneDAL content |
---|---|
|
The namespace of the library that contains externally exposable data types, processing and service functionality of oneDAL. |
|
The namespace of the algorithm. All classes and structures related to that algorithm shall be defined within a particular namespace. To define a specific algorithm, the string %ALGORITHM% should be substituted with its name,
for example, |
|
The namespace that contains miscellaneous data types and functionality intended to be used by oneDAL algorithms and applications for algorithm customization and optimization on various stages of the analytical pipeline. |
|
The namespace that contains implementation details of the data types and functionality for the parent namespace. The namespace can be on any level in the namespace hierarchy. To define a specific namespace, the string %PARENT% should be substituted with the namespace for which the details are provided,
for example, The application shall not use any data types nor call any functionality located in the |