Click here to Skip to main content
15,887,676 members
Home / Discussions / Algorithms
   

Algorithms

 
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 
Questionrow major and column major order Pin
Sadaiyappan8-Apr-09 10:49
Sadaiyappan8-Apr-09 10:49 
AnswerRe: row major and column major order Pin
Luc Pattyn8-Apr-09 11:19
sitebuilderLuc Pattyn8-Apr-09 11:19 
GeneralRe: row major and column major order Pin
Sadaiyappan8-Apr-09 11:51
Sadaiyappan8-Apr-09 11:51 
GeneralRe: row major and column major order Pin
Luc Pattyn8-Apr-09 12:34
sitebuilderLuc Pattyn8-Apr-09 12:34 
QuestionBest coding practice. Pin
Member 41945936-Apr-09 18:08
Member 41945936-Apr-09 18:08 
AnswerRe: Best coding practice. [modified] Pin
Luc Pattyn7-Apr-09 4:27
sitebuilderLuc Pattyn7-Apr-09 4:27 
GeneralRe: Best coding practice. Pin
Member 41945937-Apr-09 14:40
Member 41945937-Apr-09 14:40 
GeneralRe: Best coding practice. Pin
Luc Pattyn7-Apr-09 15:21
sitebuilderLuc Pattyn7-Apr-09 15:21 
GeneralRe: Best coding practice. Pin
Member 41945937-Apr-09 16:23
Member 41945937-Apr-09 16:23 
GeneralRe: Best coding practice. Pin
Member 419459310-Apr-09 19:55
Member 419459310-Apr-09 19:55 
GeneralRe: Best coding practice. Pin
Luc 64801111-Apr-09 0:39
Luc 64801111-Apr-09 0:39 
GeneralRe: Best coding practice. Pin
Member 419459311-Apr-09 5:51
Member 419459311-Apr-09 5:51 
GeneralRe: Best coding practice. Pin
Luc 64801111-Apr-09 6:18
Luc 64801111-Apr-09 6:18 
GeneralRe: Best coding practice. Pin
Member 419459315-Apr-09 8:29
Member 419459315-Apr-09 8:29 
GeneralRe: Best coding practice. Pin
Luc 64801115-Apr-09 8:39
Luc 64801115-Apr-09 8:39 

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.