LSTMCell equivalent in C++ frontend

I’m converting my model in Python to C++.
I want to use LSTMCell in C++ frontend but I can’t find it. No equivalent for LSTMCell in C++?

There isn’t currently (the nn API is not on par with Python’s – if you want to help change that…). You could just use one-element inputs to LSTM instead.

Best regards

Thomas