MySQL* samples for the Intel® Data Analytics Acceleration Library (Intel® DAAL) are designed to show how to use this library with a MySQL database in a C++ application.
Unzip the archive with Intel® DAAL samples to your working directory (<sample_dir>).
You can use Intel® DAAL MySQL* samples on Linux*, Windows*, and macOS* operating systems. For a list of Intel® DAAL hardware and software requirements, refer to release notes for the version of Intel® DAAL you are using.
Note: Intel® DAAL is expected to work on other MySQL version as well. Let us know if you have any troubles with the distribution you are using.
You can download and install the MySQL* application from the http://dev.mysql.com/downloads/ web page. To be able to use MySQL* C++ samples, make sure to configure the ODBC connector for the user who has permissions to create tables in the database. Also, make sure to replace the mySQL_test and mySQL_test_32 database names in the datasource_mysql.cpp sample file with the actual database name you plan to use:
If your ODBC connector on Windows* is installed in a directory different from C:\Program Files (x86)\Windows Kits\8.1\Lib\winv6.3\um\, make sure to update the ODBC_PATH variable in the launcher.bat script with the correct path before running the script.
Before you build the sample, you must set certain environment variables that define the location of related libraries. The Intel® DAAL includes the daalvars scripts that you can run to set environment variables:
For more information about setting environment variables and configuring Intel® DAAL, refer to Getting Started guides for the library.
To build Intel® DAAL MySQL C++ samples, go to the C++ MySQL samples directory and execute the launcher command with the build parameter:
cd <sample_dir>\cpp\mysql
launcher.bat {ia32|intel64} build
The command creates the .\_results\ia32 or .\_results\intel64 directory and builds *.exe executables and *.exe libraries, as well as creates a log file for build results.
To run Intel® DAAL MySQL C++ samples, go to the C++ MySQL samples directory and execute the launcher command with the run parameter:
cd <sample_dir>\cpp\mysql
launcher.bat {ia32|intel64} run
Select the same architecture parameter as you provided to the launcher command with the build parameter.
For each sample, the results are placed into the .\_results\ia32\<sample name>\.res or .\_results\intel64\<sample name>\.res file, depending on the specified architecture.
To build Intel® DAAL MySQL C++ samples, go to the C++ MySQL samples directory and execute the make command:
cd <sample_dir>/cpp/mysql
make {libia32|soia32|libintel64|sointel64}
compiler={intel|gnu}
mode=build
From the {libia32|soia32|libintel64|sointel64} parameters, select the one that matches the architecture parameter you provided to the daalvars.sh script and that has the prefix that matches the type of executables you want to build: lib for static and so for dynamic executables.
The command creates a directory for the chosen compiler, architecture, and library extension (a or so). For example: _results/intel_intel64_a.
To run Intel® DAAL MySQL C++ samples, go to the C++ MySQL samples directory and execute the make command in the run mode. For example, if you run the daalvars script with the intel64 target:
cd <sample_dir>/cpp/mysql
make libintel64 mode=run
The make command builds a static library for the Intel® 64 architecture and runs the executable.
To build Intel® DAAL MySQL C++ samples, go to the C++ MySQL samples directory and execute the make command:
cd <sample_dir>/cpp/mysql
make {libia32|dylibia32|libintel64|dylibintel64}
compiler={intel|gnu|clang}
mode=build
From the {libia32|dylibia32|libintel64|dylibintel64} parameters, select the one that matches the architecture parameter you provided to the daalvars.sh script and that has the prefix that matches the type of executables you want to build: lib for static and dylib for dynamic executables.
The command creates a directory for the chosen compiler, architecture, and library extension (a or dylib). For example: _results/intel_intel64_a.
To run Intel® DAAL MySQL C++ samples, go to the C++ MySQL samples directory and execute the make command in the run mode. For example, if you run the daalvars script with the intel64 target:
cd <sample_dir>/cpp/mysql
make libintel64 mode=run
The make command builds a static library for the Intel® 64 architecture and runs the executable.
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.
© Copyright 2017, Intel Corporation
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 |