Cudnn_convolution_backward is not a member of 'at'

Hi,
I’m trying to adapt my code from version 1.10.2 to 1.11.0 (for now). I was using cudnn_convolution_backward in 1.10.2 but I’m unable to use in 1.11.0. It throws an error saying

error: ‘cudnn_convolution_backward’ is not a member of ‘at’

but I can see that the function is in the namespace at even for version 1.11.0:

I don’t see the difference between 1.11.0 and 1.10.2:

The cudnn_* methods are not exposed anymore and you should be able to drop the cudnn_ prefix in newer PyTorch versions.

Can I also just use the torch.ops.aten.convolution_backward function (cuz I’m using C++ method in Python anyway) for pytorch versions > 1.11.0?