Valid convolution

A valid convolution is a type of convolution operation that does not use any padding on the input.

For an n×n input matrix and an f×f filter, a valid convolution will return an output matrix of dimensions

nfs+1×nfs+1

where s is the stride length of the convolution.

This is in contrast to a same convolution, which pads the n×n input matrix such that the output matrix is also n×n.