I am fairly new to parallel programming; I am developing a program that deals with numbers in different bases and I want to parallelize the addition method.
Firstly, it computes the linear convolution and does the carrying later, thus every iteration of the for-loop is independent (Example):
(Little Endianness btw) [2,7,1] + [8,7,5] = [10,14,6] => [0,5,7]
The question is, can I, if there are threads available, make the addition process faster by having the iterations done at the same time in different threads, and how?