Skip to content
onesparse

onesparse

one_sparse : Sparse linear algebra and graph extension for PostgreSQL 18

Overview

IDExtensionPackageVersionCategoryLicenseLanguage
2620
onesparse
one_sparse
1.0.0
FEAT
Apache-2.0
C
AttributeHas BinaryHas LibraryNeed LoadHas DDLRelocatableTrusted
--s-d--
No
Yes
No
Yes
no
no
Relationships
Schemasonesparse
See Also
age
pgrouting
postgis

PG18 only; upstream release v1.0.0 ships extension SQL version 0.1.0

Packages

TypeRepoVersionPG Major CompatibilityPackage PatternDependencies
EXT
PIGSTY
1.0.0
18
17
16
15
14
one_sparse-
RPM
PIGSTY
1.0.0
18
17
16
15
14
onesparse_$vgraphblas, lagraph
DEB
PIGSTY
1.0.0
18
17
16
15
14
postgresql-$v-onesparselibgraphblas10, liblagraph1, liblagraphx1
Linux / PGPG18PG17PG16PG15PG14
el8.x86_64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
el8.aarch64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
el9.x86_64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
el9.aarch64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
el10.x86_64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
el10.aarch64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
d12.x86_64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
d12.aarch64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
d13.x86_64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
d13.aarch64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
u22.x86_64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
u22.aarch64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
u24.x86_64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
u24.aarch64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
u26.x86_64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
u26.aarch64
PIGSTY 1.0.0
MISS
MISS
MISS
MISS
PackageVersionOSORGSIZEFile URL
onesparse_181.0.0el8.x86_64pigsty222.5 KiBonesparse_18-1.0.0-1PIGSTY.el8.x86_64.rpm
onesparse_181.0.0el8.aarch64pigsty201.9 KiBonesparse_18-1.0.0-1PIGSTY.el8.aarch64.rpm
onesparse_181.0.0el9.x86_64pigsty195.3 KiBonesparse_18-1.0.0-1PIGSTY.el9.x86_64.rpm
onesparse_181.0.0el9.aarch64pigsty182.7 KiBonesparse_18-1.0.0-1PIGSTY.el9.aarch64.rpm
onesparse_181.0.0el10.x86_64pigsty200.2 KiBonesparse_18-1.0.0-1PIGSTY.el10.x86_64.rpm
onesparse_181.0.0el10.aarch64pigsty185.5 KiBonesparse_18-1.0.0-1PIGSTY.el10.aarch64.rpm
postgresql-18-onesparse1.0.0d12.x86_64pigsty598.3 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~bookworm_amd64.deb
postgresql-18-onesparse1.0.0d12.aarch64pigsty578.4 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~bookworm_arm64.deb
postgresql-18-onesparse1.0.0d13.x86_64pigsty592.1 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~trixie_amd64.deb
postgresql-18-onesparse1.0.0d13.aarch64pigsty574.7 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~trixie_arm64.deb
postgresql-18-onesparse1.0.0u22.x86_64pigsty693.6 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~jammy_amd64.deb
postgresql-18-onesparse1.0.0u22.aarch64pigsty681.1 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~jammy_arm64.deb
postgresql-18-onesparse1.0.0u24.x86_64pigsty645.2 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~noble_amd64.deb
postgresql-18-onesparse1.0.0u24.aarch64pigsty634.9 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~noble_arm64.deb
postgresql-18-onesparse1.0.0u26.x86_64pigsty657.7 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~resolute_amd64.deb
postgresql-18-onesparse1.0.0u26.aarch64pigsty642.3 KiBpostgresql-18-onesparse_1.0.0-1PIGSTY~resolute_arm64.deb

Source

pig build pkg one_sparse;		# build rpm/deb

Install

Make sure PGDG and PIGSTY repo available:

pig repo add pgsql -u   # add both repo and update cache

Install this extension with pig:

pig install one_sparse;		# install via package name, for the active PG version
pig install onesparse;		# install by extension name, for the current active PG version

pig install onesparse -v 18;   # install for PG 18

Create this extension with:

CREATE EXTENSION onesparse;

Usage

Sources: homepage, release v1.0.0, control file at v1.0.0, intro docs, matrix docs, vector docs, algorithm examples

OneSparse is a PostgreSQL extension that binds SuiteSparse:GraphBLAS into Postgres and exposes sparse linear algebra and graph algorithms as new types, functions, and operators. The docs treat matrix as the core type, with vector and scalar built on top of the same model. The v1.0.0 release exists, while the extension control file at that tag still declares SQL default_version = '0.1.0'.

Core Setup

CREATE EXTENSION onesparse;
SET search_path TO public,onesparse;

SELECT 'int32'::matrix;
SELECT 'int32'::vector;
SELECT 'int32:42'::scalar;

The docs site organizes the API around matrix, vector, and scalar, with interactive examples using casts and constructors.

Matrix and Vector

The matrix page shows common operations such as construction, print(), draw(), assignment, extraction, cast_to(), resize, and aggregation. The vector page documents the matching vector API including nvals(), size(), eadd(), emult(), reduce_scalar(), choose(), and apply().

SELECT print('int32(4:4)'::matrix);
SELECT draw('int32(4:4)[1:2:1 2:3:2 3:1:3]'::matrix);
SELECT eadd('int32[0:1 1:2 2:3]'::vector, 'int32[0:1 1:2 2:3]'::vector, 'plus_int32');
SELECT reduce_scalar('int32[0:1 1:2 2:3]'::vector, 'plus_monoid_int32');

Graph Algorithms

The examples page uses Matrix Market input and graph visualization with draw(...). The documented graph algorithms include:

  • bfs(graph, 1) for level and parent BFS
  • sssp(cast_to(graph, 'int32'), 1::bigint, 1) for single-source shortest path
  • pagerank(graph) for ranking vertices by link structure
  • triangle_centrality(graph) for triangle-based centrality
  • betweenness(graph, ARRAY[...]) and square_clustering(graph) for additional graph analysis

Representative example from the docs:

SELECT draw(triu(graph), (SELECT level FROM bfs(graph, 1)), false, false, true, 0.5)
FROM karate;

The same guide shows loading a graph with mmread('/home/postgres/onesparse/demo/karate.mtx').

Last updated on