-
Notifications
You must be signed in to change notification settings - Fork 532
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update fmt (to 11.0.2) and spdlog (to 1.14.1), add those libraries to libcuml conda host dependencies #6071
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
9981da1
Update fmt (to 11.0.2) and spdlog (to 1.14.1).
jameslamb 67fbab3
Update fmt (to 11.0.2) and spdlog (to 1.14.1).
jameslamb 6da7103
add cumlprims_mg
jameslamb 2a286c1
Merge branch 'branch-24.10' into fmt-and-spdlog
jameslamb 9687611
move rapids-cmake overrides [skip ci]
jameslamb 1ca0b5f
fix testing
jameslamb 721aa88
branch
jameslamb 557fca6
fix clones
jameslamb 8ca0180
run all CI
jameslamb c7b3321
Merge branch 'branch-24.10' into fmt-and-spdlog
jameslamb 0654919
use cumlprims_mg packages
jameslamb a1d76d4
try to avoid cloning cumlprims_mg
jameslamb 5b812f0
add host dependencies on fmt and spdlog in libcuml
jameslamb 7724113
explicitly pin fmt and spdlog in test environment
jameslamb 2024f9e
Merge branch 'branch-24.10' of github.com:rapidsai/cuml into fmt-and-…
jameslamb af19c93
remove testing-only details
jameslamb 5382685
Merge branch 'fmt-and-spdlog' of github.com:jameslamb/cuml into fmt-a…
jameslamb 9d3de8d
revert testing changes in dependencies.yaml
jameslamb c587389
remove scripts
jameslamb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are in the global list for the split recipe but also need to be in the
libcuml
package below in order to have run-exports on the appropriate packages. That would eliminate the need for test-time pinnings. I'm not sure which direction we want to go: do we add run-exported dependencies on these to "runtime" packages (these aren't "dev" packages) to enforce consistency, or use test-time pinnings to only ensure that we get compatible builds of librmm, etc. which are exporting these dependencies (and with which we need to avoid conflicts)?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah ok! I'm not that familiar with the ways that split recipes are different from single-package ones, thank you for pointing this out.
I'm not sure precisely what you mean about those two choices... but I can say at least that I think
cuml
/libcuml
should explicitly pinfmt
andspdlog
, given that it directly uses them: #6071 (comment) (instead of getting that pinning transitively fromlibrmm
or similar).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We talked offline and decided to add these pinnings in the top-level host environment and the build environment created from the
common_build:
list independencies.yaml
, but to not mess with run exports or adding explicit run dependencies onfmt
/spdlog
.