Created by: xiaolil1
test=develop
We met in-place issue when enable MKLDNN Reshape OP. For the case: no-mkldnn op ---> mkldnn op ( Reshape or other in-place supported Ops).
We investigated this issue and found the "data transform" will generate new tensor and change the input tensor of Reshape Op, while the output not, which will break the in-place between input and output.
We submit this PR solve this problem. We also filed issue #16916 (closed) to track it.