PTB-MR / mrpro

MR image reconstruction and processing.
https://ptb-mr.github.io/mrpro/
Apache License 2.0
13 stars 3 forks source link

Remove @pytest.mark.filterwarnings('ignore::FutureWarning') for pytorch >= 2.4.1 #373

Open ckolbPTB opened 2 months ago

ckolbPTB commented 2 months ago

@pytest.mark.filterwarnings('ignore::FutureWarning') in tests/utils/test_rotation.py -> def test_pickling()only needed because there is a bug in pytorch 2.4.0 which triggers a FutureWarning when calling pickle of a tensor: https://github.com/pytorch/pytorch/issues/130658

Should be resolved with pytorch 2.4.1. See also PR #372