-
Notifications
You must be signed in to change notification settings - Fork 0
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
Merge latest branch-0.18 #38
Commits on Nov 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a7c5d84 - Browse repository at this point
Copy the full SHA a7c5d84View commit details
Commits on Nov 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4079d81 - Browse repository at this point
Copy the full SHA 4079d81View commit details
Commits on Nov 21, 2020
-
Merge remote-tracking branch 'upstream/branch-0.17' into branch-0.17-…
…scipyinputsupport
Configuration menu - View commit details
-
Copy full SHA for 52d392d - Browse repository at this point
Copy the full SHA 52d392dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ed7d3c - Browse repository at this point
Copy the full SHA 8ed7d3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for be07bf4 - Browse repository at this point
Copy the full SHA be07bf4View commit details -
Configuration menu - View commit details
-
Copy full SHA for aac8a99 - Browse repository at this point
Copy the full SHA aac8a99View commit details
Commits on Nov 24, 2020
-
Merge remote-tracking branch 'upstream/branch-0.17' into branch-0.17-…
…scipyinputsupport
Configuration menu - View commit details
-
Copy full SHA for a0fe3da - Browse repository at this point
Copy the full SHA a0fe3daView commit details -
Configuration menu - View commit details
-
Copy full SHA for 75b96ec - Browse repository at this point
Copy the full SHA 75b96ecView commit details -
Updated docstrings to reflect SciPy compatibility, build.sh cleanup a…
…nd updates to support better build-all behavior with flags and optional non-default build dirs.
Configuration menu - View commit details
-
Copy full SHA for 261e2f5 - Browse repository at this point
Copy the full SHA 261e2f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ce0724 - Browse repository at this point
Copy the full SHA 7ce0724View commit details -
Configuration menu - View commit details
-
Copy full SHA for feb0fa5 - Browse repository at this point
Copy the full SHA feb0fa5View commit details
Commits on Nov 30, 2020
-
Merge remote-tracking branch 'upstream/branch-0.17' into branch-0.17-…
…scipyinputsupport
Configuration menu - View commit details
-
Copy full SHA for 3757f33 - Browse repository at this point
Copy the full SHA 3757f33View commit details -
Configuration menu - View commit details
-
Copy full SHA for f4df08e - Browse repository at this point
Copy the full SHA f4df08eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b87990 - Browse repository at this point
Copy the full SHA 1b87990View commit details
Commits on Dec 1, 2020
-
Merge pull request #1286 from rapidsai/branch-0.17
[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci]
Configuration menu - View commit details
-
Copy full SHA for 82d4b80 - Browse repository at this point
Copy the full SHA 82d4b80View commit details -
Merge pull request #1277 from rlratzel/branch-0.17-scipyinputsupport
[REVIEW] FEA SciPy sparse matrix input support for WCC, SCC, SSSP, and BFS
Configuration menu - View commit details
-
Copy full SHA for 0fa9833 - Browse repository at this point
Copy the full SHA 0fa9833View commit details -
Merge pull request #1287 from rapidsai/branch-0.17
[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci]
Configuration menu - View commit details
-
Copy full SHA for a291241 - Browse repository at this point
Copy the full SHA a291241View commit details -
Merge pull request #1285 from dillon-cullinan/fix-codecovblock
[REVIEW] FIX Move codecov upload to gpu build script
Configuration menu - View commit details
-
Copy full SHA for c46289a - Browse repository at this point
Copy the full SHA c46289aView commit details -
Merge pull request #1288 from rapidsai/branch-0.17
[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci]
Configuration menu - View commit details
-
Copy full SHA for 6edd42a - Browse repository at this point
Copy the full SHA 6edd42aView commit details -
Update README and some docs(#1281)
Update the README with new algorithms and multi-gpu status Also cleaned up a few other stops Authors: - BradReesWork <[email protected]> Approvers: - Alex Fender - Alex Fender URL: #1281
Configuration menu - View commit details
-
Copy full SHA for 09854cc - Browse repository at this point
Copy the full SHA 09854ccView commit details -
Merge pull request #1291 from rapidsai/branch-0.17
[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci]
Configuration menu - View commit details
-
Copy full SHA for d2cfc10 - Browse repository at this point
Copy the full SHA d2cfc10View commit details
Commits on Dec 2, 2020
-
Authors: - Alex Fender <[email protected]> Approvers: - Brad Rees URL: #1289
Configuration menu - View commit details
-
Copy full SHA for 68d152a - Browse repository at this point
Copy the full SHA 68d152aView commit details -
Merge pull request #1292 from rapidsai/branch-0.17
[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci]
Configuration menu - View commit details
-
Copy full SHA for 9f7afde - Browse repository at this point
Copy the full SHA 9f7afdeView commit details
Commits on Dec 3, 2020
-
updating raft to latest(#1293)
Authors: - divyegala <[email protected]> Approvers: - Alex Fender URL: #1293
Configuration menu - View commit details
-
Copy full SHA for 06f96c9 - Browse repository at this point
Copy the full SHA 06f96c9View commit details -
Merge pull request #1294 from rapidsai/branch-0.17
[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci]
Configuration menu - View commit details
-
Copy full SHA for 80028a9 - Browse repository at this point
Copy the full SHA 80028a9View commit details -
Add support for shortest_path_length and fix graph vertex checks(#1278)
Adds the ability to get the length/cost of path from source to destination(s). Closely follows [`networkx.shortest_path_length`](https://networkx.org/documentation/latest/reference/algorithms/generated/networkx.algorithms.shortest_paths.generic.shortest_path_length.html#networkx.algorithms.shortest_paths.generic.shortest_path_length). Similarities: 1) Takes an optional target vertex 2) If only source is provided, a `cudf` dataframe is returned with columns: `[vertex, distance]` (similar to `networkx` dictionary return) 3) If source and target are specified the exact length is returned or `sys.float_info.max` if the vertex is not reachable. Differences: 1) Requires that source be provided, as apposed to `networkx` 2) Nethod of graph traversal is not an option. Fixes: 1) Fixes #806 2) `sssp` and `cugraph.Graph.has_node` vertex checks. Added support for checking for vertexes that are not apart of the graph. in the past, `TypeError` was raised when doing a comparison check (as apposed to `ValueError`) Authors: - John Purviance <[email protected]> - BradReesWork <[email protected]> Approvers: - Alex Fender URL: #1278
Configuration menu - View commit details
-
Copy full SHA for 6b92349 - Browse repository at this point
Copy the full SHA 6b92349View commit details -
Merge pull request #1295 from rapidsai/branch-0.17
[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci]
Configuration menu - View commit details
-
Copy full SHA for 8970da0 - Browse repository at this point
Copy the full SHA 8970da0View commit details
Commits on Dec 4, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ec4c1eb - Browse repository at this point
Copy the full SHA ec4c1ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0814411 - Browse repository at this point
Copy the full SHA 0814411View commit details -
Configuration menu - View commit details
-
Copy full SHA for 68dd538 - Browse repository at this point
Copy the full SHA 68dd538View commit details -
Configuration menu - View commit details
-
Copy full SHA for c76b968 - Browse repository at this point
Copy the full SHA c76b968View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28723ed - Browse repository at this point
Copy the full SHA 28723edView commit details -
Configuration menu - View commit details
-
Copy full SHA for c537ca5 - Browse repository at this point
Copy the full SHA c537ca5View commit details -
Merge pull request #1290 from hlinsen/bc-fix
[REVIEW] BUG Update weights check in bc and graph prims wrappers
Configuration menu - View commit details
-
Copy full SHA for f45c221 - Browse repository at this point
Copy the full SHA f45c221View commit details -
Merge pull request #1296 from rapidsai/branch-0.17
[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci]
Configuration menu - View commit details
-
Copy full SHA for 966fdfc - Browse repository at this point
Copy the full SHA 966fdfcView commit details