开发者

C/C++ library for lazy evaluation of SIMD/SSE expressions

开发者 https://www.devze.com 2023-03-27 03:50 出处:网络
Libraries such as intel-MKL or amd-ACML provide easier interface to SIMD operations on vectors, but I want to chain several functions together. Are there readily available libraries where I can regist

Libraries such as intel-MKL or amd-ACML provide easier interface to SIMD operations on vectors, but I want to chain several functions together. Are there readily available libraries where I can register a parse tree for an expression like

log( tanh(x) + exp(x) )

and then evaluate it on all members of an array ? What I want to avoid is to make a temporary arrays of tanh(x), exp(x) and tanh(x) + exp(x) by calling the mkl or acml functions for tanh(), exp() and +.

I can unroll the loop by hand and use the sse instructions directly, but was wondering if there are C++ libraries which does this for you, i.e.

1. Handles SIMD/SSE functions  
2. Allows building of parse trees out of SIMD/SSE functions.  

I am very much a newbie 开发者_开发问答and have never used SSE or MKL/ACML before, just venturing out into new territory.


It may not do exactly what you want, but I suggest you take a look at macstl. It's a SIMD valarray implementation which uses template metaprogramming, and which can combine expressions into a single loop. You may be able to use this as is or perhaps as a basis for something closer to what you need.


Have a look at Intel ABB. It uses a just in time compilation approach IIRC. It can use vector instructions and multithreading depending on the sizes of the vectors you act upon.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号