Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
1k views

What makes Apple's PowerPC memcpy so fast?

I've written several copy functions in search of a good memory strategy on PowerPC. Using the Altivec or fp registers with cache hints (dcb*) doubles the performance over a simple byte copy loop for ...
2
votes
1answer
293 views

efficient way to convert scatter indices into gather indices?

I'm trying to write a stream compaction (take an array and get rid of empty elements) with SIMD intrinsics. Each iteration of the loop processes 8 elements at a time (SIMD width). With SSE ...
2
votes
2answers
272 views

Porting MMX/SSE instructions to AltiVec

Let me preface this with.. I have extremely limited experience with ASM, and even less with SIMD. But it happens that I have the following MMX/SSE optimised code, that I would like to port across to ...
2
votes
2answers
318 views

Eclipse CDT Editor support for altivec C++ extensions?

Does the Eclipse CDT C++ editor have a means of supporting the Altivec C++ language extensions, as implemented for example in the GNU g++ compilers when compiling with -maltivec? Specifically, can it ...
1
vote
3answers
196 views

Assigning same memory to class member variables using unions

I am trying to vectorize existing Vector class class Vector { public: float X,Y,Z; }; Trying to vectorize the class members without affecting other classes accessing the these member variable ...
1
vote
1answer
120 views

AltiVec vec_msum equivalent for float values

Is anybody aware of a method to achieve vec_msum functionality against a vector of float values? I'm quite new to SIMD, and although I think I'm starting to make sense of it - there are still a few ...
1
vote
1answer
168 views

Handling Altivec loads and stores regardless of PPC endianness?

I have some SIMD code in Altivec processing 32 bit integer values in parallel. In some cases I want to load the integers as little endian, in other cases as big endian (note: this choice is regardless ...