Adam Lewis
Adam Lewis
A consequence is that Pytype cannot straightforwardly operate upon files store in a Google Drive (since the directory structure by default takes a form such as ~/'Google Drive File Stream'/'My...
Functioning and apprently efficient Jax implementations of eigs, eigsh using implicitly restarted Lanczos, and gmres are already present in https://github.com/google/TensorNetwork (matrix-free methods are very important in tensor network computations), and...
Note that both LGMRES and bicgstab are accessible through SciPy.
It seems that, while PyTorch does indeed have complex numbers now, many operations in practice choke on them. I'm still not totally sure of this though.
This actually might be fixed and we just forget to close it - @mganahl ?
In the case that it is, #844 might be a good place to start? We'd be thrilled to have you!
For every backend except PyTorch, I think .real and .imag are harmless when applied to real input, so in those cases we can just wrap the relevant function. PyTorch will...
Yep, this one is, though I don't know whether @ahmedkrmn is working on it?
Yes, that should work in all cases except PyTorch and Symmetric. For PyTorch you'll need to do some additional type checking because calling . real and .imag throws an error...
I think the latter, yeah. On Sat, Oct 10, 2020, 13:22 MikeMerz wrote: > For PyTorch, is it better to raise an excpetion if the input is not > complex...