Whenever we come across larger sequences that are required to be processed, say a large valued sequence is given to a digital FIR filter, Overlap add
method or Overlap save method is used, where faster processing of the signals is needed.
This can be either done by overlapping values after decomposing the input, adding zeros to make it equivalent to L (where L=N-M+1) and linear convolution of these decomposed inputs with h(n) ie OAM
or by decomposing the input, adding preceding values to each of the decomposed input to make it equivalent to L, circular convolution with h(n) and then eliminating padded number of values from each convoluted output to obtain the final output. ie OSM.
OAM and OSM are block processing techniques as seen above and computationally occupy similar memory space.