I have a contract_path and contract sequence on a tensor that would OOM when memory_limit is None. I tried to reduce the memory consumption of the computation (I don't mind if the computation runs slow, as long as it gives me answer), but upon limiting it, I encountered the error
ValueError: invalid subscript 'Ų' in einstein sum subscripts string, subscripts must be letters
During the contract step. Is there any extra step that I have to do? I have gone through the documentation and issues, and can't find any relevant information about this.
I have a
contract_pathandcontractsequence on a tensor that would OOM whenmemory_limitisNone. I tried to reduce the memory consumption of the computation (I don't mind if the computation runs slow, as long as it gives me answer), but upon limiting it, I encountered the errorDuring the
contractstep. Is there any extra step that I have to do? I have gone through the documentation and issues, and can't find any relevant information about this.