Click here to Skip to main content
15,904,351 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionhow to draw oscilloscope graph when an import mp3 file.... Pin
rajniyadav1a19-Jan-11 0:33
rajniyadav1a19-Jan-11 0:33 
AnswerRe: how to draw oscilloscope graph when an import mp3 file.... Pin
Andrew Brock19-Jan-11 0:54
Andrew Brock19-Jan-11 0:54 
AnswerRe: how to draw oscilloscope graph when an import mp3 file.... Pin
Cedric Moonen19-Jan-11 0:56
Cedric Moonen19-Jan-11 0:56 
QuestionApp Launch Crash Pin
john563218-Jan-11 23:47
john563218-Jan-11 23:47 
AnswerRe: App Launch Crash Pin
Andrew Brock19-Jan-11 0:11
Andrew Brock19-Jan-11 0:11 
QuestionRe: App Launch Crash [modified] Pin
Madhu Nair19-Jan-11 0:23
Madhu Nair19-Jan-11 0:23 
GeneralRe: App Launch Crash Pin
john563219-Jan-11 2:42
john563219-Jan-11 2:42 
GeneralRe: App Launch Crash Pin
Andrew Brock19-Jan-11 3:12
Andrew Brock19-Jan-11 3:12 
GeneralRe: App Launch Crash Pin
john563219-Jan-11 3:29
john563219-Jan-11 3:29 
GeneralRe: App Launch Crash Pin
Andrew Brock19-Jan-11 3:52
Andrew Brock19-Jan-11 3:52 
AnswerRe: App Launch Crash Pin
KingsGambit19-Jan-11 0:39
KingsGambit19-Jan-11 0:39 
GeneralRe: App Launch Crash Pin
Andrew Brock19-Jan-11 0:56
Andrew Brock19-Jan-11 0:56 
AnswerRe: App Launch Crash Pin
CPallini19-Jan-11 0:50
mveCPallini19-Jan-11 0:50 
AnswerRe: App Launch Crash Pin
Abhi Lahare20-Jan-11 9:02
Abhi Lahare20-Jan-11 9:02 
QuestionHow to append string with ". Pin
raju_shiva18-Jan-11 23:32
raju_shiva18-Jan-11 23:32 
AnswerRe: How to append string with ". Pin
Emilio Garavaglia18-Jan-11 23:40
Emilio Garavaglia18-Jan-11 23:40 
QuestionRounding double to a provided decimal place Pin
PankajB18-Jan-11 23:21
PankajB18-Jan-11 23:21 
AnswerRe: Rounding double to a provided decimal place Pin
T210218-Jan-11 23:41
T210218-Jan-11 23:41 
AnswerRe: Rounding double to a provided decimal place Pin
_AnsHUMAN_ 18-Jan-11 23:42
_AnsHUMAN_ 18-Jan-11 23:42 
GeneralRe: Rounding double to a provided decimal place Pin
PankajB18-Jan-11 23:49
PankajB18-Jan-11 23:49 
GeneralRe: Rounding double to a provided decimal place Pin
Cedric Moonen19-Jan-11 0:07
Cedric Moonen19-Jan-11 0:07 
AnswerRe: Rounding double to a provided decimal place Pin
User 742933819-Jan-11 0:00
professionalUser 742933819-Jan-11 0:00 
AnswerRe: Rounding double to a provided decimal place Pin
Cedric Moonen19-Jan-11 0:01
Cedric Moonen19-Jan-11 0:01 
AnswerRe: Rounding double to a provided decimal place Pin
Richard MacCutchan19-Jan-11 3:11
mveRichard MacCutchan19-Jan-11 3:11 
Questionx86 and x64 code performance in 64 bit w7 Pin
Chesnokov Yuriy18-Jan-11 22:24
professionalChesnokov Yuriy18-Jan-11 22:24 
I used convolution operation to measure performance of the 2 configurations on 64 bit OS.
Inner Product Experiment: CPU, FPU vs. SSE*[^]

                                 x64    x86
chars       processing time: 10 ms  20 ms
shorts      processing time: 12 ms  23 ms
shorts sse2     processing time:  6 ms   6 ms
ints        processing time: 14 ms  20 ms
floats      processing time: 18 ms  50 ms
sse2 set    processing time: 14 ms  15 ms
sse2 intrin     processing time: 12 ms  12 ms
sse3 assembly   processing time: N/A    13 ms
doubles     processing time: 26 ms  25 ms
doubles sse2    processing time: 25 ms  24 ms


As can be seen there is no difference in SSE optimization but chars, shorts, ints and floats runs faster.
Especially floats runs as fast or SSE optimization.
But doubles do not show any difference.

Why there is no difference in SSE and double operations?
Чесноков

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.