I have some coordinates with shape (bs, x, y) and want to do bilinear interpolation on some input with shape (bs, C, H, W). When I check to the documentation, one way to do bilinear interpolation is by using " torch.nn.functional.grid_sample" but the input must be in grid. Is there any way to do this with the coordinate instead of grid?