Interested in optimization for scientific computing, where to start?

Click For Summary
SUMMARY

The discussion focuses on optimizing scientific computing with Python, emphasizing the importance of understanding low-level programming languages. Python, being a high-level language, abstracts many complexities, which can lead to performance issues in scientific applications. The recommended languages for deeper understanding and optimization include C, C++, Fortran, and Julia. Learning C is particularly highlighted as it provides insights into memory management and can enhance the performance of Python libraries like NumPy and SciPy.

PREREQUISITES
  • Basic understanding of Python programming
  • Familiarity with high-level vs. low-level programming concepts
  • Knowledge of scientific libraries such as NumPy and SciPy
  • Awareness of memory management in programming
NEXT STEPS
  • Learn C programming to understand low-level operations and memory management
  • Explore C++ for object-oriented programming in scientific computing
  • Investigate Fortran for its applications in scientific research
  • Study Julia for high-level syntax with low-level performance advantages
USEFUL FOR

Students in computational physics, software developers interested in scientific computing, and anyone looking to optimize Python performance in scientific applications.

rem1618
Messages
14
Reaction score
0
I've just started programming with Python this summer, and I'm taking a course in computational physics this semester. I've been really enjoying it and programming in general, but I don't have much knowledge in computer science save for intro stuff (string/list methods, functions/classes, precision digits, a bit of dynamic programming), and I'm interested in learning more. Basically, I don't even know what I don't know. For example, what should I look into in order to understand something like this?

(top answer)
http://stackoverflow.com/questions/...-slower-than-builtin-in-arithmetic-operations
 
Technology news on Phys.org
You should know that there are different programming languages (bummer!).

A computer doesn't directly understand those strings of commands you're giving him, it's not smart enough, and for that you need another program(s) that translates those strings into something the computer understands, what we call machine code. For some languages you only need one program or two to get from human code to machine code, we call these languages "low-level languages", because they're closer to the string of 1's and 0's. For others you need several jumps, and we call them "high-level languages". As a result of those jumps, high-level languages tend to produce code that's easier to understand/write while being slower overall, while low-level languages tend to be the opposite.

Where does Python come? Python is a high-level language, and most of the under-the-hood stuff is hidden from the coder unless you use specific libraries. Those stuff are taken care-of for you by a translating program that's called an "interpreter", and you won't need to understand all those "blocks" and "bytes" stuff to code in Python at all!

However, while many Python coders don't even try to understand those, I think everyone should, as sometimes the interpreter (which gives you the errors) gives you weird low-level unintelligible errors, and you need to understand them to use the Python scientific libraries (numpy,scipy...etc) to their fullest.Which is why I recommend you learn a low-level language, and I recommend you learn C specifically. (fun fact: Python is made using C! And that stackoverflow question is about CPython, a Python library for calling pseudo-C code into Python) You shouldn't really "learn" it, you're not supposed to write everything you do in Python in C, just learn how things work. Learning C is by far the best way to learn how low-level stuff works, and it will enable you to write faster code in Numpy once you understand how computer memory works.

Also you might want to properly learn a low-level language for scientific computing, since you've probably noticed that Python is slow, while C is great, it's not at all user-friendly and it lacks scientific libraries as it's intended for use for CS specialists. And here I can recommend C++ (C with object oriented stuff), Fortran (I hate it, but it's incredible as it's intended for scientists) or Julia ( a "high-level" language with low-level performance, a bit biased here since I develop libraries in it!).
 

Similar threads

  • · Replies 13 ·
Replies
13
Views
3K
  • Sticky
  • · Replies 13 ·
Replies
13
Views
8K
  • · Replies 17 ·
Replies
17
Views
5K
Replies
29
Views
5K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 21 ·
Replies
21
Views
2K
  • · Replies 30 ·
2
Replies
30
Views
7K
  • · Replies 3 ·
Replies
3
Views
6K
  • · Replies 6 ·
Replies
6
Views
2K