Alexander Botev
Alexander Botev
Same problem still exists as described in this post https://discuss.atom.io/t/auto-indent-slightly-off/18198
This is even worse when we have something like: ``` Generic { list: Vec } ``` Where for certain cases I know `T` does not implement `Default`, so I can't...
Unfortunately, this anaconda is my only option as I'm on a department cluster. I also tried building from source, but since they have already changed the tensorflow repo that does...
Hmm, is there anything specific that I need to change during installation. When I run the build script after bazel I get: ``` Requirement 'python/dist/*.whl' looks like a filename, but...
So I just cloned the repo. Than did this and the output is: ``` $chmod +x installer.sh $./installer.sh protoc tensorboard/src/*.proto --python_out=python/ Cloning into 'tensorflow'... remote: Counting objects: 225876, done. remote:...
I think so because `tensorboard/python/tensorboard/tensorboard` is a working tensorboard which I can run. I guess there something fishy going with the wheels. If you don't get it its fine, since...
Sure if you need some more info let me know, just note that my python 3.6 is actually under anaconda. That should not matter, but I have experienced cases where...
@lebedov Hi, does there exist any interface of `cusolver` for solving the linear system `Ax=b` where `A` is already upper or lower triangular (e.g. does not need the be factored)....
@lebedov So if I follow correctly the `cusovler` code for solving `A^{-1} x = b` where A is symmetric it proceeds like this: 1. Use `DnSpotrf` to find `L` such...
Thanks a lot for the clarification.