[MKL-DNN] pool2d op does not support exclusive attribute
Created by: jczaja
pool2d op is having an attribute "exclusive" that indicates how average pooling is computer when pooling window is partially out of Feature Map eg. whether to divide by pooling window size (KH*KW) or just by amount of valid feature map values pooling window is sharing with.
MKL-DNN as well as PaddlePaddle can operate in either way , so it is just lack of consideration of this atribute is a problem. MKL-DNN by defaulte operate in exclusive padding mode which is default mode of paddle pooling as well.
Issue added to track mentioned problem problem.