Viewing a single comment thread. View all comments

Centurion902 t1_j0ztnrx wrote

Even if you wrote in C++, you would still need to vectorize everything. You can't rely on for loops for this kind of stuff because it needs to be paralelized. If you paralelized your for loops. Well, you are vectorizing your code.

4