This class implements a layer that implements elentwise comparison between 2 inputs
equal[i] = first_input[i] == second_input[i] ? 1 : 0;
The layer has no settings.
The layer has no trainable parameters.
Layer accepts any pair of blobs of the same size and data type.
The single output returns an integer blob of the same size where each element contains the result of the comparison of 2 input blobs.