Click here to Skip to main content
15,919,479 members
Home / Discussions / Algorithms
   

Algorithms

 
AnswerRe: help me plz to find the algorithm for circle hough transform Pin
Tim Craig21-Apr-09 8:52
Tim Craig21-Apr-09 8:52 
AnswerRe: help me plz to find the algorithm for circle hough transform Pin
Yusuf21-Apr-09 11:05
Yusuf21-Apr-09 11:05 
AnswerRe: help me plz to find the algorithm for circle hough transform Pin
Alan Balkany22-Apr-09 3:29
Alan Balkany22-Apr-09 3:29 
Questioni need genetic algorithm coding for the objective function of the controllers i know.help me friends its my project Pin
trinath8118-Apr-09 20:12
trinath8118-Apr-09 20:12 
QuestionHow to get the body of an email message? Pin
Quake2Player17-Apr-09 15:01
Quake2Player17-Apr-09 15:01 
AnswerRe: How to get the body of an email message? Pin
Curtis Schlak.19-Apr-09 6:59
Curtis Schlak.19-Apr-09 6:59 
GeneralRe: How to get the body of an email message? Pin
Quake2Player19-Apr-09 9:40
Quake2Player19-Apr-09 9:40 
GeneralRe: How to get the body of an email message? Pin
Curtis Schlak.19-Apr-09 12:43
Curtis Schlak.19-Apr-09 12:43 
QuestionAlgorithm Books Pin
DBLearner17-Apr-09 6:30
DBLearner17-Apr-09 6:30 
AnswerRe: Algorithm Books Pin
SQLServerIO1-Jun-09 3:57
SQLServerIO1-Jun-09 3:57 
Questionalgorithm Pin
letaya13-Apr-09 21:06
letaya13-Apr-09 21:06 
AnswerRe: algorithm Pin
madicursar13-Apr-09 22:58
madicursar13-Apr-09 22:58 
AnswerRe: algorithm Pin
Alan Balkany14-Apr-09 3:54
Alan Balkany14-Apr-09 3:54 
AnswerRe: algorithm Pin
Pete O'Hanlon14-Apr-09 4:38
mvePete O'Hanlon14-Apr-09 4:38 
AnswerRe: algorithm Pin
Yusuf14-Apr-09 15:26
Yusuf14-Apr-09 15:26 
AnswerRe: algorithm Pin
CPallini15-Apr-09 8:48
mveCPallini15-Apr-09 8:48 
QuestionSymbian Deflate algorithm Pin
K. Sushilkumar13-Apr-09 19:02
K. Sushilkumar13-Apr-09 19:02 
AnswerRe: Symbian Deflate algorithm Pin
riced13-Apr-09 22:53
riced13-Apr-09 22:53 
AnswerRe: Symbian Deflate algorithm Pin
Yusuf14-Apr-09 15:27
Yusuf14-Apr-09 15:27 
QuestionSSE and multi-core processors Pin
epitalon9-Apr-09 2:25
epitalon9-Apr-09 2:25 
AnswerRe: SSE and multi-core processors Pin
Alan Balkany9-Apr-09 3:38
Alan Balkany9-Apr-09 3:38 
GeneralRe: SSE and multi-core processors Pin
epitalon9-Apr-09 5:16
epitalon9-Apr-09 5:16 
GeneralRe: SSE and multi-core processors Pin
led mike17-Apr-09 6:52
led mike17-Apr-09 6:52 
epitalon wrote:
Microsoft Visual Studio 2008 does not provide that.


Rather than ask the compiler to guess what type of calculation you're performing and hope it is able to optimize it for you, programmers should just stop being lazy and do it properly: align your variables/structures to 16-byte boundaries, parallelize your algorithm (fine-tune it) by hand, and then use compiler intrinsics (supported by MS, Intel and GNU compilers). Better yet, use something like SSEPlus so that your app chooses the most appropriate instruction set to use for the CPU its running on. That way you can be sure you're getting the best performance for speed-sensitive calculations.

link[^]
GeneralRe: SSE and multi-core processors Pin
epitalon23-Apr-09 22:19
epitalon23-Apr-09 22:19 
GeneralRe: SSE and multi-core processors Pin
led mike24-Apr-09 4:49
led mike24-Apr-09 4:49 

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.