performance optimization

Optimize Financial Applications using Intel® Math Kernel Library

Intel® Math Kernel Library (Intel® MKL) contains a wealth of highly optimized math functions that are fundamental to a wide variety of Financial Applications. Intel MKL uses Industry Standard interfaces and can be easily integrated into your current application framework. The Webinar provides an overview of Intel MKL to accelerate financial applications. Topics include:

  • Entwickler
  • Partner
  • Professoren
  • Studenten
  • Linux*
  • Microsoft Windows* (XP, Vista, 7)
  • Microsoft Windows* 8
  • Apple Mac OS X*
  • C/C++
  • Fortran
  • Anfänger
  • Fortgeschrittene
  • Intel® C++-Compiler
  • Intel® C++ Composer XE
  • Intel® Fortran Compiler
  • Intel® Fortran Composer XE
  • Intel® Math Kernel Library
  • Learning Lab
  • intel mkl
  • Intel Math Kernal Library (Intel MKL)
  • FSI
  • Financial Services
  • Intel MKL Training
  • performance optimization
  • Entwicklungstools
  • Finanzdienstleistungsbranche
  • Optimierung
  • Parallel Computing
  • MEM_TRANS_RETIRED.LOAD_LATENCY events

    There are 8 MEM_TRANS_RETIRED.LOAD_LATENCY_GT_* precise events available on Intel® Microarchitecture Codename Sandy Bridge.  The events allow you to pinpoint loads that exceeded a given latency, measured in CPU clock cycles.  For example, the MEM_TRANS_RETIRED.LOAD_LATENCY_GT_4 event is for loads exceeding 4 clocks in latency, and the MEM_TRANS_RETIRED.LOAD_LATENCY_GT_512 event is for loads longer than 512 clocks. 
  • Intel® VTune™ Amplifier XE
  • event
  • performance tuning
  • performance optimization
  • VTune Amplifier XE
  • performance profiler
  • event-based sampling
  • Optimize Code for the Most-Often Used Code Path


    Challenge

    Overcome the limitation of optimizing compilers in terms of not knowing which code-execution path is most likely to be used. For example, an optimizer can refine a long series of if statements and have it run at great speed; but if it does not know that in the majority of runs, the very last test is the one that is run, the optimizer cannot rearrange the sequence for best possible performance. It has to work on the assumption that all if tests in the sequence are equally probable.

  • Execution
  • performance optimization
  • Parallel Computing
  • Create Cache-Data Blocks


    Challenge

    Take advantage of data-cache locality with cache-data blocking. Loops with frequent iterations over large data arrays should be restructured such that the large array is subdivided into smaller blocks, or tiles. Each data element in the array is therefore reused within the data block, so that the block of data fits within the data cache, before operating on the next block or tile.

  • Memory cache
  • performance optimization
  • How-To
  • Parallel Computing
  • Align and Organize Data for Better Performance


    Challenge

    Minimize performance losses due to unaligned data. Unaligned data can be a potentially serious performance problem. It is important to remember to focus on data elements in the most CPU-intensive parts of your program.


    Solution

    Align data on natural operand size address boundaries. If the data will be accessed with vector instruction loads and stores, align the data on 16-byte boundaries. For best performance, align data as follows:

  • Memory cache
  • performance optimization
  • How-To
  • Parallel Computing
  • Seiten

    performance optimization abonnieren