Click here to Skip to main content
15,905,614 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: DoDataExchange doesn't like pointers ? Pin
cagespear16-Apr-08 20:53
cagespear16-Apr-08 20:53 
QuestionRe: DoDataExchange doesn't like pointers ? Pin
David Crow17-Apr-08 2:55
David Crow17-Apr-08 2:55 
GeneralRe: DoDataExchange doesn't like pointers ? Pin
cagespear17-Apr-08 19:52
cagespear17-Apr-08 19:52 
GeneralRe: DoDataExchange doesn't like pointers ? Pin
David Crow18-Apr-08 3:24
David Crow18-Apr-08 3:24 
GeneralRe: DoDataExchange doesn't like pointers ? Pin
cagespear18-Apr-08 18:26
cagespear18-Apr-08 18:26 
AnswerRe: DoDataExchange doesn't like pointers ? Pin
Hamid_RT17-Apr-08 6:44
Hamid_RT17-Apr-08 6:44 
QuestionHow to run another object from another project Pin
kanekcwu16-Apr-08 5:15
kanekcwu16-Apr-08 5:15 
AnswerRe: How to run another object from another project Pin
CPallini16-Apr-08 5:42
mveCPallini16-Apr-08 5:42 
GeneralRe: How to run another object from another project Pin
kanekcwu16-Apr-08 15:33
kanekcwu16-Apr-08 15:33 
GeneralRe: How to run another object from another project Pin
Hamid_RT17-Apr-08 6:43
Hamid_RT17-Apr-08 6:43 
GeneralRe: How to run another object from another project Pin
David Crow18-Apr-08 3:26
David Crow18-Apr-08 3:26 
AnswerRe: How to run another object from another project Pin
Nathan Holt at EMOM16-Apr-08 10:30
Nathan Holt at EMOM16-Apr-08 10:30 
GeneralRe: How to run another object from another project Pin
kanekcwu16-Apr-08 13:42
kanekcwu16-Apr-08 13:42 
GeneralRe: How to run another object from another project Pin
Hamid_RT17-Apr-08 6:43
Hamid_RT17-Apr-08 6:43 
GeneralRe: How to run another object from another project Pin
kanekcwu17-Apr-08 14:15
kanekcwu17-Apr-08 14:15 
GeneralRe: How to run another object from another project Pin
Hamid_RT17-Apr-08 19:21
Hamid_RT17-Apr-08 19:21 
GeneralRe: How to run another object from another project Pin
kanekcwu16-Apr-08 13:56
kanekcwu16-Apr-08 13:56 
GeneralRe: How to run another object from another project Pin
Nathan Holt at EMOM16-Apr-08 15:55
Nathan Holt at EMOM16-Apr-08 15:55 
Generalabout the access violation error at the malloc sentence Pin
wendyyue16-Apr-08 4:38
wendyyue16-Apr-08 4:38 
GeneralRe: about the access violation error at the malloc sentence Pin
Cedric Moonen16-Apr-08 4:53
Cedric Moonen16-Apr-08 4:53 
QuestionRe: about the access violation error at the malloc sentence Pin
CPallini16-Apr-08 5:10
mveCPallini16-Apr-08 5:10 
GeneralRe: about the access violation error at the malloc sentence Pin
wendyyue16-Apr-08 5:26
wendyyue16-Apr-08 5:26 
GeneralRe: about the access violation error at the malloc sentence Pin
CPallini16-Apr-08 5:35
mveCPallini16-Apr-08 5:35 
GeneralRe: about the access violation error at the malloc sentence Pin
David Crow16-Apr-08 10:24
David Crow16-Apr-08 10:24 
QuestionSSE2 Pin
galois16-Apr-08 4:37
galois16-Apr-08 4:37 
I want to compare 2x2 doubles:

double p[2]={0.0,1.0};
double q[2]={0.0,1.0};

return (p[0]>q[0] || p[1]>q[1])

Now I've implemented SEE2 and coded:

__m128d _p=_mm_loadu_pd(p);
__m128d _q=_mm_loadu_pd(q);

__m128d res=_mm_cmpgt_pd(_p,_q);

return (res.m128d_f64[0]!=0.0 || res.m128d_f64[1]!=0.0)

However, this is significantly slower. Have you any suggestions?
(Actually, I'm not very satisfied with the last row.)

Regards
Marcus

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.