Git Product home page Git Product logo

daal's Introduction

Intel(R) Data Analytics Acceleration Library

Intel(R) Data Analytics Acceleration Library (Intel(R) DAAL) helps speed up big data analysis by providing highly optimized algorithmic building blocks for all stages of data analytics (preprocessing, transformation, analysis, modeling, validation, and decision making) in batch, online, and distributed processing modes of computation.

License

Intel DAAL is licensed under Apache License 2.0.

Online Documentation

You can find the latest Intel DAAL documentation on the Intel(R) Data Analytics Acceleration Library 2017 Documentation web page.

How to Contribute

We welcome community contributions to Intel DAAL. If you have an idea how to improve the product:

We will review your contribution and, if any additional fixes or modifications are necessary, may give some feedback to guide you. When accepted, your pull request will be merged into our internal and GitHub* repositories.

Intel DAAL is licensed under Apache License, Version 2.0. By contributing to the project, you agree to the license and copyright terms therein and release your contribution under these terms.

Intel DAAL supports the IA-32 and Intel(R) 64 architectures. For a detailed explanation of these architecture names, read the Intel Architecture Platform Terminology for Development Tools article.

The lists below contain the system requirements necessary to support application development with Intel DAAL. We tested Intel DAAL on the operating systems and with the compilers listed below, but Intel DAAL is expected to work on many more Linux* distributions as well.

Let us know if you have any troubles with the distribution you are using.

Supported Operating Systems:

  • Windows 10*
  • Windows 8*
  • Windows 8.1*
  • Windows 7* - Note: SP1 is required for use of Intel® AVX instructions
  • Windows Server* 2012
  • Windows Server* 2016
  • Red Hat* Enterprise Linux* 6
  • Red Hat* Enterprise Linux* 7
  • Red Hat Fedora* 25
  • SUSE Linux Enterprise Server* 12
  • SUSE Linux Enterprise Server* 12 SP1
  • Debian* GNU/Linux 8
  • Ubuntu* 16.04
  • Ubuntu* 16.10
  • macOS* 10.12
  • macOS* 10.13

Supported C/C++* compilers for Windows* OS:

  • Intel(R) C++ Compiler 16.0 for Windows* OS
  • Intel(R) C++ Compiler 17.0 for Windows* OS
  • Intel(R) C++ Compiler 18.0 for Windows* OS
  • Microsoft Visual Studio* 2013
  • Microsoft Visual Studio* 2015
  • Microsoft Visual Studio* 2017

Supported C/C++* compilers for Linux* OS:

  • Intel(R) C++ Compiler 16.0 for Linux* OS
  • Intel(R) C++ Compiler 17.0 for Linux* OS
  • Intel(R) C++ Compiler 18.0 for Linux* OS
  • •GNU Compiler Collection 5.0 and later

Supported C/C++* compilers for macOS*:

  • Intel(R) C++ Compiler 16.0 for OS X*
  • Intel(R) C++ Compiler 17.0 for OS X*
  • Intel(R) C++ Compiler 18.0 for OS X*
  • Clang* from Xcode* 8
  • Clang* from Xcode* 9

Supported Java* compilers:

  • Java* SE 7 from Sun Microsystems, Inc.
  • Java* SE 8 from Sun Microsystems, Inc.

MPI implementations that Intel® DAAL has been validated against:

Database

  • MySQL 5.x
  • KDB+ 3.4

Hadoop* implementations that Intel® DAAL has been validated against:

  • Hadoop* 2.6 and above

Note: Intel® DAAL is expected to work on many more Hadoop* distributions as well. Let us know if you have trouble with the distribution you use.

Spark* implementations that Intel® DAAL has been validated against:

  • Spark* 2.0

Installation

You can install Intel DAAL from the provided binary packages or from the GitHub* sources.

For platform-specific getting started documents, see the following pages:

Installing from the Binaries

You can download an archive from the GitHub* release page at https://github.com/01org/daal/releases. This archive contains a script to set the environment variables for library usage in the daal/bin directory.

If you have issues with running the script, you may need to replace the INSTALLDIR string in daal/bin/daalvars.sh and/or daal/bin/daalvars.csh with the name of the directory where you unpacked the archive.

Installing from the Sources

Required Software

Installation Steps

  1. Clone the sources from GitHub* as follows:

     git clone --recursive https://github.com/01org/daal.git
    
  2. Set the PATH environment variable to the MSYS2* bin directory (Windows* only); for example:

     set PATH=C:\msys64\usr\bin;%PATH%
    
  3. Set an environment variable for Microsoft Visual Studio* (Windows* only); for example:

     call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
    
  4. Set an environment variable for one of the supported C/C++ compilers

  5. Set an environment variable for one of the supported Java* compilers; for example:

     set PATH=C:\Program Files\Java\jdk1.8.0_77\bin;%PATH%
     set INCLUDE=C:\Program Files\Java\jdk1.8.0_77\include;C:\Program Files\Java\jdk1.8.0_77\include\win32;%INCLUDE%
    
  6. Install Intel(R) Threading Building Blocks (Intel(R) TBB) (Windows* only)

    Download and install free Community License Intel TBB. See this page for more details.

    Copy Intel TBB header files and libraries into Intel DAAL folder. E.g.: xcopy /I /Y /Q /E "C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2017.2.187\windows\redist" %DAALDIR%\externals\tbb\win\redist xcopy /I /Y /Q /E "C:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2017.2.187\windows\tbb" %DAALDIR%\externals\tbb\win\tbb

  7. Build Intel DAAL via the command-line interface with the following commands, depending on your platform:

  • on Linux* using Intel(R) C++ Compiler:

        make daal PLAT=lnx32e
    
  • on Linux* using GNU Compiler Collection*:

        make daal PLAT=lnx32e COMPILER=gnu
    
  • on macOS* using Intel(R) C++ Compiler:

        make daal PLAT=mac32e
    
  • on macOS* using Clang*:

        make daal PLAT=mac32e COMPILER=clang
    
  • on Windows* using Intel(R) C++ Compiler:

        make daal PLAT=win32e
    
  • on Windows* using Microsoft Visual* C++ Compiler:

        make daal PLAT=win32e COMPILER=vc
    

Built libraries are located in the __release_{os_name}/daal directory.

Python*

Intel DAAL can be also used with Python* interfaces. You can find the pyDAAL package at http://anaconda.org/intel/pydaal.

See Also

daal's People

Watchers

Alain Lompo avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.