adsharma

Results 211 comments of adsharma

I've been working on something similar to this. [Blog post](https://adsharma.github.io/beating-the-CAP-theorem-for-graphs/) with details. Since I was not aware of `graph-ar`, I invented [my own](https://github.com/adsharma/graph-std). Proposed syntax: ``` CREATE NODE TABLE Person(ID...

Thank you for explaining! My solution is motivated by trying to serve wikidata (90 million nodes, 800+ million edges) from kuzu. The on-disk storage requirements were unacceptable due to denormalization....

I will read through the GAR spec and align where it makes sense. For example use `vertices.parquet` instead of `nodes.parquet`. Remove filename prefix and rely on the directory name for...

[DuckLake](https://duckdb.org/2025/05/27/ducklake.html) v1 didn't support writes. What it does is orthogonal to the mutability of data. The higher order bit is to use SQL catalog (not necessarily duckdb, it supports postgres...

Thank you for starting the discussion. Yes, it's a bit more challenging for graphs because of the heterogeneity of languages and implementations. In the SQL world, DuckDB folks had an...

@yangxk1 they're semantically compatible, but syntactically different. Thinking I'll write up a short blog post describing how they ended up being different and link it here. We can then discuss...

@fabratu Please see the discussion here: https://github.com/nodef/leiden-communities-openmp.py/pull/1 What are the problems in incorporating the GVE Leiden code itself into NetworkIt? Both are C++ and OpenMP based and license compatible.

The old paste is not accessible anymore. Here's something I came up with based on the current thinking: https://github.com/py2many/py2many/blob/main/tests/cases/hello-wuffs.py Wuffs project seems to have prioritized a C library and deprioritized...

Some research on why existing spectral clustering algorithms in cugraph are insufficient: https://journals.aps.org/prresearch/abstract/10.1103/PhysRevResearch.5.023006

Extracted networkx code for easier testing: https://github.com/adsharma/nx-spectral-ordering Here's my attempt to speed it up: https://github.com/adsharma/nx-spectral-ordering/commit/6bb13737cef2344ad7377411742dd05f1e3a2244 Runs an algorithm copied from cupy.dev (link in the commit), but fails functional testing. Needs...