This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In file included from /home/serge/sources/nt2/_build/install/include/boost/simd/operator/specific/common.hpp:36:0, | |
from /home/serge/sources/nt2/_build/install/include/boost/simd/arithmetic/functions/tofloat.hpp:64, | |
from /home/serge/sources/nt2/_build/install/include/boost/simd/arithmetic/include/functions/simd/tofloat.hpp:4, | |
from /home/serge/sources/nt2/_build/install/include/boost/simd/include/functions/simd/tofloat.hpp:4, | |
from /home/serge/sources/nt2/_build/install/include/boost/simd/operator/functions/simd/common/splat.hpp:15, | |
from /home/serge/sources/nt2/_build/install/include/boost/simd/operator/include/functions/simd/splat.hpp:6, | |
from /home/serge/sources/nt2/_build/install/include/boost/simd/include/functions/simd/splat.hpp:4, | |
from /home/serge/sources/nt2/_build/install/include/boost/simd/sdk/constant/impl/simd/common.hpp:12, | |
from /home/serge/sources/nt2/_build/install/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
boost/simd/toolbox/operator/functions/load.hpp 27,2 Top | |
#include <boost/simd/include/simd.hpp> | |
#include <boost/simd/sdk/simd/pack.hpp> | |
using namespace boost::simd; | |
int main() { | |
int n = 100; | |
int * a = new int[n]; | |
pack<int> v(a);// = unaligned_load< pack<int> >(a,0); | |
delete [] a; |
NewerOlder