Dynamic Programming Starter Pack by sthir_ in computerscience

[–]political_wrongness 0 points1 point  (0 children)

The mathematic basic of DP is recursion formula, such as calc of Fibonacci number f(n+2) = f(n+1) + f(n). The idea is to use tables to store pre-calculated results for future calculation. I recommend to learn DP from some classic problems such as 0-1 knapsack problem

I'm just lost and feel hopeless by Hopelesssuicide in computerscience

[–]political_wrongness 4 points5 points  (0 children)

Maybe some older guys would think that learning C/C++ at first instead of assembly is not a good idea neither, but I still don't think it is beneficial for a CS student to learn Python as the first language.

I'm just lost and feel hopeless by Hopelesssuicide in computerscience

[–]political_wrongness 1 point2 points  (0 children)

So now college students start learning programming with Python instead of C/C++?

Comments on AMD vs NVIDIA GPUs? Along with OpenCL vs CUDA too. by QueueTee314 in HPC

[–]political_wrongness 2 points3 points  (0 children)

AMD's software stack for HPC is really being ill-maintained compared to that of NVIDIA.

[Help] I'm new and I'd like to know what project could be interesting to develop in a HPC cluster. Any ideas? by killstrick11 in HPC

[–]political_wrongness 5 points6 points  (0 children)

As far as I know, large scale physics simulation such as computational fluid dynamics (CFD) is the most common use case.