-
Notifications
You must be signed in to change notification settings - Fork 20
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
Sigma.js demo using node-rapids #392
Merged
Merged
Conversation
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
…due to npm changes (rapidsai#385)
…e to npm changes (rapidsai#385)
…fea-json-to-dataframe
A couple of other small corrections.
…and working wireframes for them.
thomcom
commented
May 17, 2022
…fea-json-to-dataframe
…fea-json-to-dataframe
thomcom
commented
Jun 21, 2022
thomcom
commented
Jun 21, 2022
thomcom
commented
Jun 21, 2022
trxcllnt
reviewed
Jun 22, 2022
trxcllnt
reviewed
Jun 22, 2022
trxcllnt
requested changes
Jun 22, 2022
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.
Looking good, just a few more comments about using public Series APIs instead of the private Column C++ APIs.
This is fully baked. Ship it. |
trxcllnt
reviewed
Jun 24, 2022
trxcllnt
reviewed
Jun 24, 2022
trxcllnt
reviewed
Jun 24, 2022
trxcllnt
reviewed
Jun 24, 2022
trxcllnt
approved these changes
Jun 24, 2022
Co-authored-by: Paul Taylor <[email protected]>
Co-authored-by: Paul Taylor <[email protected]>
Co-authored-by: Paul Taylor <[email protected]>
Co-authored-by: Paul Taylor <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR introduces a
api-server
demo component that provides data for theextra-large-graphs
demo at jacomyal/sigma.js#1252. Now that this is fresh and ready, I'll be cleaning up that PR for final submission starting next week.Fastify HTTP Server Demo
This project is a Fastify-based node http server that allows
commands and data to be sent to and from the NVIDIA GPUs installed
on the host machine.
Essentially, the node-rapids system is provided as a backend to any
HTTP client. At this time only limited functionality is available to
load JSON files in the
graphology
graph dataset format, plus APIrequests to request Dataframes and their Columns via
apache-arrow
.Two endpoints,
graphology/nodes
andgraphology/edges
specificallyreturn pre-formatted arrays that can be used directly with the
sigma.js renderer. An
extra-large-graphs example PR is in the works
that utilizes this GPU-accelerated data for rendering larger datasets
than available via only CPU.