Christian Sigg
Christian Sigg
There is still no official bazel doc, but I found [this doc](https://docs.google.com/document/d/1NJiOr2vBJyrj2q1FFvl7IuoateuJyRWpjn8-6HxLWLs/edit#heading=h.5mcn15i0e1ch) helpful.
We would like to have a remove_load command as well so I can combine it with new_load to change load statements in TensorFlow's BUILD files.
> Update new_load to remove the previous conflicting definitions. I don't think that would work in our case. We want to do things like: Before: ``` load(":foo.bzl", "x", "y")``` After:...
> buildozer "new_load bar.bzl x" could remove the previous definition of x. Ah, I see. But we do sometimes simply want to drop loads completely. > is it intentional? Yes,...
I can't reproduce this. Do you have an NVIDIA GPU with sm_52 or later? What's your output of `nvidia-smi`? Next, I would try to prefix your bazel command with `LD_DEBUG=libs`
Hi Dylan. You are absolutely right. @rules_cuda needs a better home. I've talked to the bazel folks before and it sounded like adding it to bazelbuild would come with a...
Hi James, thanks for letting me know. I would be happy to upstream this to bazel-contrib. I will get in contact with the SIG.
I suspect your CUDA toolkit at `/usr/local/cuda` might have been installed with a package manager. Can you try to use a toolkit extracted to a single directory, as explained here?...
The flag is also introduced to inject a different CUDA runtime, e.g. one that dynamically loads the real CUDA runtime and forwards the calls. That can be independent though of...
It almost looks like you are picking up [these copts](https://cs.opensource.google/tensorflow/tensorflow/+/master:third_party/toolchains/preconfig/ubuntu16.04/clang/cc_toolchain_config.bzl;drc=b50396b804de5b916b478bf170d4a272bbc27811;l=1379-1381). Do you have those in your ~/.bazelrc file or something? Would you mind providing the output of `bazel build --announce_rc...