-
Notifications
You must be signed in to change notification settings - Fork 565
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
Promote trustworthiness_score
to public header, add missing includes, update dependencies
#3968
Merged
rapids-bot
merged 21 commits into
rapidsai:branch-21.08
from
trxcllnt:fix/include-paths-dependency-versions-and-metrics-header
Jun 16, 2021
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
01b3f85
Update dask/distributed versions to align with cuDF
trxcllnt 8a58648
Update to Thrust v1.12.0 to align with cuDF/cuGraph
trxcllnt 74975fb
make cuML++ source include dirs PRIVATE
trxcllnt 3fc3fc0
include <csdtdef> and <cstdint>
trxcllnt d7474cf
promote trustworthiness_score to public metrics.hpp header
trxcllnt 6b66ef9
Compile Cython with C++17
trxcllnt 05dc8da
Remove annoying `-Wstrict-prototypes` warning when compiling Cython
trxcllnt 7b22d20
Merge branch 'branch-21.08' into fix/include-paths-dependency-version…
trxcllnt e9bc578
update conda recipe cmake/dask/distributed versions
trxcllnt e4a0b28
Add fatbin.ld linker script so debug symbols aren't relocated beyond …
trxcllnt e443931
use math_t type to calculate cub temp storage bytes. fixes #3885
trxcllnt 720d97e
Merge branch 'branch-21.08' of github.com:rapidsai/cuml into fix/incl…
trxcllnt e102401
revert to using dask/distributed@main
trxcllnt 918a081
do it again
trxcllnt 847ec53
Ensure auto_arima InclusiveSum intermediate storage numeric type is l…
trxcllnt c8c26c4
add statsmodels, seaborn, hdbscan, nltk to dev envs
trxcllnt 031b80c
use dask/distributed main branch in build.sh
trxcllnt 753f35d
update trustworthiness_score docstring, remove duplicate trustworthin…
trxcllnt a13a01f
import metrics.hpp
trxcllnt c0f6608
import raft/handle.hpp
trxcllnt 45597ae
Merge branch 'branch-21.08' of github.com:rapidsai/cuml into fix/incl…
trxcllnt 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,9 @@ | |
|
||
#pragma once | ||
|
||
#include <cstddef> | ||
#include <cstdint> | ||
|
||
namespace raft { | ||
class handle_t; | ||
} | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -343,8 +343,8 @@ class WorkingSet { | |
// Determine temporary device storage requirements for cub | ||
size_t cub_bytes2 = 0; | ||
cub::DeviceRadixSort::SortPairs( | ||
NULL, cub_bytes, f_idx.data(), f_idx_sorted.data(), f_sorted.data(), | ||
f_sorted.data(), n_train, 0, 8 * sizeof(int), stream); | ||
NULL, cub_bytes, f_sorted.data(), f_sorted.data(), f_idx.data(), | ||
f_idx_sorted.data(), n_train, 0, 8 * sizeof(math_t), stream); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
cub::DeviceSelect::If(NULL, cub_bytes2, f_idx.data(), f_idx.data(), | ||
d_num_selected, n_train, dummy_select_op, stream); | ||
cub_bytes = max(cub_bytes, cub_bytes2); | ||
|
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
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.
What are these new dependencies for? Just curious.
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.
They're required in cuML Python tests, but only listed in the
rapids-test-env
metapackage.