4
votes
2answers
228 views
Loop versioning with GCC
I am working on auto vectorization with GCC. I am not in a position to use intrinsics or attributes due to customer requirement. (I cannot get user input to support vectorization)
…
1
vote
1answer
25 views
SSE2: How to reduce a _m128 to a word
Hello
What's the best way ( sse2 ) to reduce a _m128 ( 4 words a b c d) to one word?
I want the low part of each _m128 components:
int result = ( _m128.a & 0x000000ff ) <& …
3
votes
2answers
47 views
Which assemblers currently support the AVX instruction set?
I'd like to start and play with some AVX (advanced vector extension) instructions. I know Intel provides an emulator to test software containing these instructions (see this questi …
2
votes
1answer
53 views
How much more likely are hash collisions if I hash a bunch of hashes?
Say I'm using a hash to identify files, so I don't need it to be secure, I just need to minimize collisions. I was thinking that I could speed the hash up by running four hashes in …
1
vote
2answers
54 views
Resources for (Manual and Automatic) Loop Vectorization
I see some resources for gcc, but not for Visual Studio.
Anyone have a treasure trove of references, examples and tricks?
1
vote
2answers
896 views
How to vectorize with gcc?
The v4 series of the gcc compiler can automatically vectorize loops using the SIMD processor some modern CPUs, such as the AMD Athlon or Intel Pentium/Core chips. How is this done …
1
vote
1answer
33 views
Mono.Simd Vector3 (floats) missing?
Heya, I'm trying to use Mono's SIMD to handle coordinates(X,Y,Z) in my project,
but I only see support for Vector2 and Vector4 types. Has anyone run into this before, and are there …
3
votes
2answers
419 views
How to get GCC to use more than two SIMD registers when using intrinsics?
I am writing some code and trying to speed it up using SIMD intrinsics SSE2/3. My code is of such nature that I need to load some data into an XMM register and act on it many time …
2
votes
4answers
290 views
Practical use of automatic vectorization?
Has anyone taken advantage of the automatic vectorization that gcc can do? In the real world (as opposed to example code)? Does it take restructuring of existing code to take adv …
1
vote
2answers
149 views
Fast Saturate and shift two Halfwords in ARM asm
I have two signed 16-bit values in a 32-bit word, and I need to shift them right (divide) on constant value (it can be from 1 to 6) and saturate to byte (0..0xFF).
For example,
…
3
votes
3answers
89 views
Fast in-register sort of bytes?
Given a register of 4 bytes (or 16 for SIMD), there has to be an efficient way to sort the bytes in-register with a few instructions.
Thanks in advance.
1
vote
2answers
84 views
SSE and hyper threading
Are SSE registers shared or duplicated between logical processors (hyper threading) ?
Can I expect the same kind of speedup from parallelization for a SSE heavy program as for a no …
5
votes
4answers
240 views
SIMD programming languages
In the last couple of years, I've been doing a lot of SIMD programming and most of the time I've been relying on compiler intrinsic functions (such as the ones for SSE programming) …
2
votes
5answers
520 views
How much speed-up from converting 3D maths to SSE or other SIMD?
I am using 3D maths in my application extensively. How much speed-up can I achieve by converting my vector/matrix library to SSE, AltiVec or a similar SIMD code?
1
vote
1answer
139 views
Getting started with SSE
Hello, I want to learn more about using the SSE.
What ways are there to learn, besides the obvious reading the Intel® 64 and IA-32 Architectures Software Developer's Manuals ?
Ma …
