Intel® Data Analytics Acceleration Library (Intel® DAAL) is the library of Intel® architecture optimized building blocks covering all stages of data analytics: data acquisition from a data source, preprocessing, transformation, data mining, modeling, validation, and decision making.
Intel DAAL is installed standalone and as part of the following suite:
Intel DAAL installs in the directory <install dir>/daal.
By default, <install dir> is /opt/intel/compilers_and_libraries_2017.x.xxx/linux.
For installation details, refer to Intel DAAL Installation Guide.
Run the <install dir>/daal/bin/daalvars.sh script as appropriate to your target architecture:
IA-32 architecture:
daalvars.sh ia32
Intel® 64 architecture:
daalvars.sh intel64
Optionally: Specify the Java* compiler different from the default compiler:
export JAVA_HOME=$PATH_TO_JAVA_SDK
export PATH=$JAVA_HOME/bin:$PATH
Decide on the variant of the the -daal option of the Intel® C++ Compiler 16 or higher or configure your project in the Integrated Development Environment (IDE):
For more information on the -daal compiler option, see the Intel® Compiler User and Reference Guide (default location: /opt/intel/documentation_2017/en/compiler_c/common/core/index.htm).
This short application computes Cholesky decomposition with Intel DAAL.
/*******************************************************************************
! Copyright(C) 2014-2016 Intel Corporation. All Rights Reserved.
!
! The source code, information and material ("Material") contained herein is
! owned by Intel Corporation or its suppliers or licensors, and title to such
! Material remains with Intel Corporation or its suppliers or licensors. The
! Material contains proprietary information of Intel or its suppliers and
! licensors. The Material is protected by worldwide copyright laws and treaty
! provisions. No part of the Material may be used, copied, reproduced,
! modified, published, uploaded, posted, transmitted, distributed or disclosed
! in any way without Intel's prior express written permission. No license
! under any patent, copyright or other intellectual property rights in the
! Material is granted to or conferred upon you, either expressly, by
! implication, inducement, estoppel or otherwise. Any license under such
! intellectual property rights must be express and approved by Intel in
! writing.
!
! *Third Party trademarks are the property of their respective owners.
!
! Unless otherwise agreed by Intel in writing, you may not remove or alter
! this notice or any other notice embedded in Materials by Intel or Intel's
! suppliers or licensors in any way.
!
!*******************************************************************************
! Content:
! Cholesky decomposition sample program.
!******************************************************************************/
#include "daal.h"
#include <iostream>
using namespace daal;
using namespace daal::algorithms;
using namespace daal::data_management;
using namespace daal::services;
const size_t dimension = 3;
double inputArray[dimension *dimension] =
{
1.0, 2.0, 4.0,
2.0, 13.0, 23.0,
4.0, 23.0, 77.0
};
int main(int argc, char *argv[])
{
/* Create input numeric table from array */
SharedPtr<NumericTable> inputData = SharedPtr<NumericTable>(new Matrix<double>(dimension, dimension, inputArray));
/* Create the algorithm object for computation of the Cholesky decomposition using the default method */
cholesky::Batch<> algorithm;
/* Set input for the algorithm */
algorithm.input.set(cholesky::data, inputData);
/* Compute Cholesky decomposition */
algorithm.compute();
/* Get pointer to Cholesky factor */
SharedPtr<Matrix<double> > factor =
staticPointerCast<Matrix<double>, NumericTable>(algorithm.getResult()->get(cholesky::choleskyFactor));
/* Print the first element of the Cholesky factor */
std::cout << "The first element of the Cholesky factor: " << (*factor)[0][0];
return 0;
}
Paste the application code into the editor of your choice.
Save the file as my_first_daal_program.cpp.
Compile with the following command, providing the selected variant of the -daal compiler option, for example, -daal=parallel:
icc my_first_daal_program.cpp -daal=parallel -o my_first_daal_program
Run the application.
List the following Intel DAAL libraries on a link line, depending on Intel DAAL threading mode and linking method:
Single-threaded (non-threaded) Intel DAAL |
Multi-threaded (internally threaded) Intel DAAL |
|
---|---|---|
Static linking |
libdaal_core.a libdaal_sequential.a |
libdaal_core.a libdaal_thread.a |
Dynamic linking |
libdaal_core.so libdaal_sequential.so |
libdaal_core.so libdaal_thread.so |
These libraries are located in the architecture-specific directory <install dir>/daal/lib/{ia32|intel64}_lin, where the architecture parameter ia32 or intel64 is the same as you provided to the daalvar.sh script during setting environment variables.
Do not change the above order of listing the libraries on a link line.
Regardless of the linking method, also add to your link line the library on which Intel DAAL libraries depend:
For example, to build your application for Intel® 64 architecture by statically linking with multi-threaded Intel DAAL:
icc
my_first_daal_program.cpp -o my_first_daal_program
$DAALROOT/lib/intel64_lin/libdaal_core.a $DAALROOT/lib/intel64_lin/libdaal_thread.a
-ltbb
-lpthread
-ldl
Build an example:
Go to the C++ examples directory and execute the make command:
cd <install dir>/daal/examples/cpp
make {libia32|soia32|libintel64|sointel64}
example=<example_name>
compiler={intel|gnu}
threading={parallel|sequential}
mode=build
Among the {libia32|soia32|libintel64|sointel64} parameters, choose the one that matches the architecture parameter you provided to the daalvars.sh script and has the prefix that matches the type of executables you want to build: lib for static and so for dynamic executables.
The names of the examples are available in the daal.lst file.
The command creates a directory for the chosen compiler, architecture, and library extension (a or so). For example: _results/intel_intel64_a.
Run an example:
Go to the C++ examples directory and execute the make command in the run mode. For example, if you ran the daalvars script with the intel64 target:
cd <install dir>/daal/examples/cpp
make libintel64 example=cholesky_batch.cpp mode=run
The make command builds the static library for the Intel 64 architecture and cholesky_batch.cpp example with Intel® compiler, assumed by default, and runs the executable.
To build and run Java code examples, use the version of the Java Virtual Machine* corresponding to the architecture parameter you provided to the daalvars.sh script during setting environment variables.
Build examples:
Go to the Java examples directory and execute the launcher command with the build parameter:
cd <install dir>/daal/examples/java
launcher.sh build $PATH_TO_JAVAC
The command builds executables*.class (for example, CholeskyBatch.class) in the
<install dir>/daal/examples/java/com/intel/daal/examples/<example name> directory.
Run examples:
Go to the Java examples directory and execute the launcher command with the run parameter:
cd <install dir>/daal/examples/java
launcher.sh {ia32|intel64} run $PATH_TO_JAVAC
Choose the same architecture parameter as you provided to the daalvars.sh script.
The output for each example is written to the file <example name>.res located in the ./_results/ia32 or ./_results/intel64 directory, depending on the specified architecture.
Set up the C++ build environment as explained under C++ Language.
Go to the directory with Python sources of Intel DAAL and run the install script:
cd <install dir>/pydaal_sources
<python home>/python setup.py install
This script compiles code using Intel DAAL for C++. It builds and installs the pyDAAL package for using Intel DAAL in Python programs.
To run Intel DAAL code examples, use the same version of Python as you used to install pyDAAL.
Go to the directory with Intel DAAL Python examples:
cd <install dir>/examples/python
To run all the examples, execute the command:
<python home>/python run_examples.py
The output for each example is written to the ./_results/intel64/<example name>.res file.
To run one specific example, execute the command:
<python home>/python <algorithm name>/<example name>.py
For example: /usr/local/bin/python3.5.1/python cholesky/cholesky_batch.py
This command prints the output to your console.
To learn more about the product, see the following resources:
Resource |
Description |
---|---|
Get access to Intel DAAL in-depth webinars and featured articles. |
|
Developer Guide and Reference for Intel® Data Analytics Acceleration Library |
View a detailed document on Intel DAAL usage. The document contains:
|
Intel® Data Analytics Acceleration Library Installation Guide |
Learn about installation options available for the product and get installation instructions. |
Learn about:
|
|
<install dir>/daal/examples folder |
Get access to the collection of programs that demonstrate usage of Intel DAAL application programming interfaces. |
Get access the collection of code samples for various algorithms that you can include in your program and immediately use with Hadoop*, Spark*, message-passing interface (MPI), or MySQL*. |
|
View full documentation library for this and other Intel software products. |
Intel, and the Intel logo are trademarks of Intel Corporation in the U.S. and/or other countries.
*Other names and brands may be claimed as the property of others.
Java is a registered trademark of Oracle and/or its affiliates.
© 2016, Intel Corporation
Optimization Notice |
---|
Intel's compilers may or may not optimize to the same degree for non-Intel microprocessors for optimizations that are not unique to Intel microprocessors. These optimizations include SSE2, SSE3, and SSSE3 instruction sets and other optimizations. Intel does not guarantee the availability, functionality, or effectiveness of any optimization on microprocessors not manufactured by Intel. Microprocessor-dependent optimizations in this product are intended for use with Intel microprocessors. Certain optimizations not specific to Intel microarchitecture are reserved for Intel microprocessors. Please refer to the applicable product User and Reference Guides for more information regarding the specific instruction sets covered by this notice. Notice revision #20110804 |