2
votes
2answers
59 views
C - How to access elements of vector using GCC SSE vector extension (very hard question for GCC experts)
Usually I work with 3D vectors using following types:
typedef vec3_t float[3];
initializing vectors using smth. like:
vec3_t x_basis = {1.0, 0.0, 0.0};
vec3_t y_basis = {0.0, 1 …
1
vote
1answer
24 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 ) <& …
1
vote
2answers
78 views
Benchmarking SSE instructions
I'm benchmarking some SSE code (multiplying 4 floats by 4 floats) against traditional C code doing the same thing. I think my benchmark code must be incorrect in some way because i …
3
votes
8answers
218 views
Java performance in numerical algorithms
hello again
I am curious about performance of Java numerical algorithms, say for example matrix matrix double precision multiplication, using the latest JIT machines as compared f …
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?
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 …
1
vote
4answers
259 views
What’s the most efficient way to multiply 4 floats by 4 floats using SSE ?
I currently have the following code:
float a[4] = { 10, 20, 30, 40 };
float b[4] = { 0.1, 0.1, 0.1, 0.1 };
asm volatile("movups (%0), %%xmm0\n\t"
"mulps (%1), %%xmm0\ …
4
votes
3answers
308 views
Get GCC to preserve an SSE register throughout a function that uses inline asm
I'm writing a program in C that needs to do some fast math calculations. I'm using inline SSE assembly instructions to get some SIMD action (using packed double precision floating …
4
votes
1answer
73 views
SSE register return with SSE disabled
I am in the following situation:
I am writing code for a kernel that does not allow SSE instructions
I need to do floating-point arithmetic
I'm compiling for a x86_64 platform
…
1
vote
4answers
125 views
What is the maximum theoretical speed-up due to SSE for a simple binary subtraction?
In trying to figure out whether or not my code's inner loop is hitting a hardware design barrier or a lack of understanding on my part barrier. There's a bit more to it, but the s …
5
votes
2answers
235 views
Why is SSE scalar sqrt(x) slower than rsqrt(x) * x?
I've been profiling some of our core math on an Intel Core Duo, and while looking at various approaches to square root I've noticed something odd: using the SSE scalar operations, …
1
vote
4answers
63 views
Whats a good place to start learning assembly?
I need to learn assembly using SSE instructions and need gcc to link the ASM code with c code.
I have no idea where to start and google hasn't helped.
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
1answer
100 views
How to determine SSE prefetch instruction size?
I am working with code which contains inline assembly for SSE prefetch instructions. A preprocessor constant determines whether the instructions for 32-, 64- or 128-bye prefetches …
0
votes
2answers
106 views
Calling constructor from another class
If I have a class like this:
typedef union { __m128 quad; float numbers[4]; } Data
class foo
{
public:
foo() : m_Data() {}
Data m_Data;
};
and a class like this:
clas …
