1
vote
4answers
102 views
Using C intrinsics and memory alignment difficulties with classes
Ok, so I am just starting to use C intrinsics in my code and I have created a class, which simplified looks like this:
class _Vector3D
{
public:
_Vector3D()
{
aVals[0] = _mm_set …
2
votes
7answers
163 views
How to quickly find maximal element of a sum of vectors?
I have a following code in a most inner loop of my program
struct V {
float val [200]; // 0 <= val[i] <= 1
};
V a[600];
V b[250];
V c[250];
V d[350];
V e[350];
// ... in …
6
votes
4answers
271 views
Dot product - SSE2 vs BLAS
What's my best bet for computing the dot product of a vector x with a large number of vectors y_i, where x and y_i are of length 10k or so.
Shove the y's in a matrix and use an …
1
vote
1answer
333 views
Setting GCC 4.2.1 options in Xcode
Howdy,
I have a few questions about Xcode and interaction with GCC 4.2.1:
It doesn't seem as if Xcode Target Properties inspector exposes all possible GCC options. Is this corre …
2
votes
1answer
231 views
intrinsic memcmp
According to the gcc docs, memcmp is not an intrinsic function of GCC. If you wanted to speed up glibc's memcmp under gcc, you would need to use the lower level intrinsics defined …
0
votes
2answers
69 views
what is wrong with my version of _bittestandset
I am new to assembly language. It seems that gcc doesn't have _bittestandset function in intrin.h like MSVC does, so I implemented a new one. This one works fine in linux, but it g …
1
vote
1answer
436 views
How to use MSVC intrinsics to get the equivalent of this GCC code?
The following code calls the builtin functions for clz/ctz in GCC and, on other systems, has C versions. Obviously, the C versions are a bit suboptimal if the system has a builtin …
