DNNL MaxPool should get nan value when input values are all nan. test case: ``` import torch import intel_pytorch_extension from torch._six import inf, nan intel_pytorch_extension.core.enable_auto_dnnl() input = torch.full([1, 1] + 2 * [3], nan).to('dpcpp') output = F.max_pool2d(x, 3, 3) ```