Closed jakirkham closed 1 year ago
Ok looks like this is behaving as expected on CI:
{
"libxgboost-1.7.6-rapidsai_h795055c": {
"recipe": {
"c_compiler": "gcc",
"c_compiler_version": "10",
"channel_targets": "rapidsai-nightly main",
"cuda_compiler": "nvcc",
"cuda_compiler_version": "11.2",
"cxx_compiler": "gxx",
"cxx_compiler_version": "10",
"librmm": "23.10",
"nccl": "2",
"target_platform": "linux-64"
}
},
...
}
Can see the new libxgboost
packages on rapidsai-nightly
:
When inspecting recent
libxgboost
packages to find whetherlibrmm
was used to construct the hash, found the following results. Note thatnccl
is present, butlibrmm
is missing.While there are several ways to affect what is used in the package hash, this PR picksThis didn't work as theforce_use_keys
to ensurelibrmm
is always included in the package hash.librmm
key was not foundHave added
librmm
toconda_build_config.yaml
, which also should be used for hash inclusion. If that doesn't work, can try adding toforce_use_keys
with this changecc @raydouglass