aliutkus / torchinterp1d

1D interpolation for pytorch
BSD 3-Clause "New" or "Revised" License
162 stars 19 forks source link

Use torch.searchsorted() #8

Open krihabu opened 4 years ago

krihabu commented 4 years ago

Hi! The new version of PyTorch contains a searchsorted function: https://pytorch.org/docs/master/generated/torch.searchsorted.html

Are there any plans to integrate it in your code and loose the dependency of your own torchsearchsorted module?

aliutkus commented 4 years ago

hi yes indeed, at last! I'll be glad to abandon the dependency on my searchsorted to switch to pytorch no time noW though, feel free to PR this, it should be a minor change

krihabu commented 4 years ago

I already changed it locally, so that should be no problem. It's not yet in the latest stable release though, do you want to wait for that?

xeTaiz commented 3 years ago

Since torch.searchsorted is now in the stable release, I made PR #9