cloudhan
cloudhan
> Is there any reason why the cuda_objects can't carry linking dependencies? It is not "can't" per se, it is just not implemented. > I don't think that scales well...
Another problem arised when it comes to transitive rdc (allow cuda_library to consume cuda_library and propagate the rdc objects). Previously, it was pretty simple and `rdc=True` was designed to mark...
We don't have a dedicated main page for the docs, so the main page is actually generated from the README.md. But the path in the README.md is left as relative,...
You need to configure the cuda toolchain manually to achieve it.
Out of curiosity, why do you want to use ccache with bazel?
The toolchain are instantiated from https://github.com/bazel-contrib/rules_cuda/tree/main/cuda/templates
BTW, bazel also has local cache
Oops, it seems I have remenbered it incorrectly. The `_cc_toolchain` is an implicit attribute to all cuda rules, but is not generally customizable here. IIRC, there is no way to...
@wudisheng You are describing a different problem. To make nvcc to use clang as host compiler (NOTE: you must ensure the host compiler for cuda and cc compiler for cc...
@wyhao31 I think you can avoid a patch by `bazel build --features=-host_compiler_path ...`, this will (should, I am not quite sure =) ) disable the `--ccbin ` to be added...