Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LRU embedding net requires very new torch version #1537

Open
michaeldeistler opened this issue Mar 26, 2025 · 3 comments · May be fixed by #1552
Open

LRU embedding net requires very new torch version #1537

michaeldeistler opened this issue Mar 26, 2025 · 3 comments · May be fixed by #1552
Labels
bug Something isn't working

Comments

@michaeldeistler
Copy link
Contributor

🐛 Bug Description

Our test suite fail for torch v2.4.0, because the LRU requires at least v2.5.0. I am not sure how to best handle this, as I would prefer to not pin torch to such a new version. Together with #1380, this would make torch=2.5.0 the only compatible version.

To reproduce:

pip install torch==2.4.0
pytest tests/test_embedding_nets.py

The error is

FAILED tests/embedding_net_test.py::test_lru_isolated[scan-one-directional] - TypeError: associative_scan() got an unexpected keyword argument 'combine_mode'

(and many other LRU tests with the same error message)

Tagging @famura @Matthijspals FYI.

@michaeldeistler michaeldeistler added the bug Something isn't working label Mar 26, 2025
@famura
Copy link
Collaborator

famura commented Mar 26, 2025

One could add a pytest.mark.skipif which is true if the torch version is not >= 2.5 and a user warning or error when using the scan mode for the LRUEmbedding. the other mode should work as expected. I can't promise to be able to do this until next week.

Please excuse the brevity, I'm on the phone.

@Matthijspals
Copy link
Collaborator

Matthijspals commented Mar 27, 2025

Some context: the LRU recurrency can be run in two modes, either using a for loop (which is the default), or using associative / parallel scans (which are potentially much faster for long time series as it scales log(sequence length)). However even with the for loop mode, the LRUs should be very useful to embed time-series (and probably still a lot faster than many other RNNs).

The associative scan function is still in development in PyTorch - in fact gradients are not supported (but will be very soon, potentially merged in the coming days).

I think @famura's suggestion makes sense for now!

@janfb
Copy link
Contributor

janfb commented Mar 31, 2025

If we know the type of Error that will be raised it makes sense to use a

marks=pytest.mark.xfail(reason="LRU not supported ...", condition=torch.__version__ >= "2.5.0", strict=True

so that we will get an XFAIL once this is implemented.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
4 participants