ldbc / ldbc_graphalytics_platforms_graphblas

LDBC Graphalytics implementation using SuiteSparse:GraphBLAS and LAGraph
Apache License 2.0
4 stars 7 forks source link

New binary file format. #43

Closed pcostanza closed 1 year ago

pcostanza commented 1 year ago

The .grb file format currently used here is a very simple format that just dumps the contest of a sparse matrix in uncompressed form, leading to very large files. This pull request instead uses a new file format directly from LAGraph that compresses the data before storing, and decompresses it after loading. The result is both smaller files and faster I/O.

In line with LAGraph, the file ending for this new binary format is .lagraph.

GLaDAP commented 1 year ago

@pcostanza Thank you!