Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
2answers
987 views

Common SIMD techniques

Where can I find information about common SIMD tricks? I have an instruction set and know, how to write non-tricky SIMD code, but I know, SIMD now is much more powerful. It can hold complex ...
7
votes
9answers
617 views

C/C++ usage of special CPU features

I am curious, do new compilers use some extra features built into new CPUs such as MMX SSE,3DNow! and so? I mean, in original 8086 there was even no FPU, so compiler that old cannot even use it, ...
4
votes
2answers
547 views

Benefit of using multiple SIMD instruction sets simultaneously

I'm writing a highly parallel application that's multithreaded. I've already got an SSE accelerated thread class written. If I were to write an MMX accelerated thread class, then run both at the same ...
3
votes
1answer
83 views

How to convert 'long long' (or __int64) to __m64

What is the proper way to convert an __int64 value to an __m64 value for use with SSE?
3
votes
3answers
966 views

Concise SSE and MMX instruction reference with latencies and throughput

I am trying to optimize some arithmetic by using the MMX and SSE instruction sets with inline assembly. However, I have been unable to find good references for the timings and usages of these enhanced ...
2
votes
1answer
62 views

MMX sign extension

Does anyone know how to make sign extension from 16 bits words to 32 bits words using MMX registers? I would like to get two 32 bits sign extended words from two 16 bits words stored in a MMX ...
2
votes
2answers
353 views

Does Delphi support all MMX/SSE instructions?

I have this snippet of code: @combinerows: mov esi,eax and edi,Row1Mask and ebx,Row2Mask or ebx,edi //NewQ:= (Row1 and Row1Mask) or (Row2 and Row2Mask); //Result:= NewQ xor q; ...
2
votes
3answers
291 views

if/else statement in SSE intrinsics

I am trying to optimize a small piece of code with SSE intrinsics (I am a complete beginner on the topic), but I am a little stuck on the use of conditionals. My original code is: unsigned long c; ...
2
votes
2answers
281 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 ...
1
vote
1answer
89 views

Add 32 bits words with saturation

Do you know any way to add with saturation 32 bits signed words using MMX/SSE assembler instructions? I can find 8/16 bits versions but no 32 bit ones. Regards
1
vote
1answer
67 views

Mult plus shift left ops using MMX assembler instructions

I am looking for doing shl(mult(var1,var2),1) operation, where 'mult' multiply var1 and var2 (both 16 bits signed integer) and 'shl' shift left aritmetically multiplication result. Result must be ...
1
vote
3answers
167 views

MMX operation (add 16bit is not done)

I got some vectors containing unsigned chars that represent pixels from a frame. I got this function working without the MMX improvement, but I frustrated whit MMX that doesnt work ... So: I need to ...
1
vote
2answers
80 views

Assembly code for optimized bitshifting of a vector

i'm trying to write a routine that will logically bitshift by n positions to the right all elements of a vector in the most efficient way possible for the following vector types: BYTE->BYTE, ...
1
vote
1answer
119 views

AMD Geode Optimization References

I am working on doing some significant optimization of some machine vision code on an embedded AMD Geode LX. I am going as far as to rewrite the computationally intense portions in Assembly, making ...
1
vote
1answer
518 views

Stack usage with MMX intrinsics and Microsoft C++

I have an inline assembler loop that cumulatively adds elements from an int32 data array with MMX instructions. In particular, it uses the fact that the MMX registers can accommodate 16 int32s to ...
1
vote
2answers
453 views

Assembly mask logic question

This is very simple, but I haven't been able to figure it out yet. This question is regarding a assembly mmx, but it's pure logic. Imagine the following scenario: MM0: 04 03 02 01 04 03 02 01 ...
0
votes
1answer
21 views

WebSphere MQ and mmx : Not able to connect with queues

We are using WebSphere MQ and mmx , however we are facing issues while trying to connect with queue: [2/10/12 13:24:51:861 CST] 00000011 SystemOut O 13:24:51,861 INFO [ListenerThread] - Retry ...
0
votes
2answers
155 views

Accessing to mm1 register parts

Is it possible to access to a single byte in a mmx register, like a array? I've this code: movq mm1,vector1 movq mm2,vector2 psubw mm1,mm2 I want to put mm1[1],mm1[2],mm1[3]....into c++ vars, like: ...
0
votes
1answer
187 views

Help with simple assembly mmx exercise

Given a vector of bytes with length multiple of 8, how can I, using mmx instructions, convert all 2's to 5's, for example? .data v1 BYTE 1, 2, 3, 4, 1, 2, 3, 4 Thanks. edit: 2's and 5's are just ...