- Source: GraphBLAS
GraphBLAS ( ) is an API specification that defines standard building blocks for graph algorithms in the language of linear algebra. GraphBLAS is built upon the notion that a sparse matrix can be used to represent graphs as either an adjacency matrix or an incidence matrix. The GraphBLAS specification describes how graph operations (e.g. traversing and transforming graphs) can be efficiently implemented via linear algebraic methods (e.g. matrix multiplication) over different semirings.
The development of GraphBLAS and its various implementations is an ongoing community effort, including representatives from industry, academia, and government research labs.
Background
Graph algorithms have long taken advantage of the idea that a graph can be represented as a matrix, and graph operations can be performed as linear transformations and other linear algebraic operations on sparse matrices.: xxv–xxvi For example, matrix-vector multiplication can be used to perform a step in a breadth-first search.: 32–33
The GraphBLAS specification (and the various libraries that implement it) provides data structures and functions to compute these linear algebraic operations. In particular, GraphBLAS specifies sparse matrix objects which map well to graphs where vertices are likely connected to relatively few neighbors (i.e. the degree of a vertex is significantly smaller than the total number of vertices in the graph). The specification also allows for the use of different semirings to accomplish operations in a variety of mathematical contexts.
Originally motivated by the need for standardization in graph analytics, similar to its namesake BLAS, the GraphBLAS standard has also begun to interest people outside the graph community, including researchers in machine learning, and bioinformatics. GraphBLAS implementations have also been used in high-performance graph database applications such as RedisGraph.
= Specification
=The GraphBLAS specification has been in development since 2013, and has reached version 2.1.0 as of December 2023. While formally a specification for the C programming language, a variety of programming languages have been used to develop implementations in the spirit of GraphBLAS, including C++, Java, and Nvidia CUDA.
= Compliant implementations and language bindings
=There are currently two fully-compliant reference implementations of the GraphBLAS specification. Bindings assuming a compliant specification exist for the Python, MATLAB, and Julia programming languages.
Linear algebraic foundations
The mathematical foundations of GraphBLAS are based in linear algebra and the duality between matrices and graphs.
Each graph operation in GraphBLAS operates on a semiring, which is made up of the following elements:
A scalar addition operator (
⊕
{\displaystyle \oplus }
)
A scalar multiplication operator (
⊗
{\displaystyle \otimes }
)
A set (or domain)
Note that the zero element (i.e. the element that represents the absence of an edge in the graph) can also be reinterpreted.: "VII. 0-Element: No Graph Edge" For example, the following algebras can be implemented in GraphBLAS:
All the examples above satisfy the following two conditions in their respective domains:
Additive identity,
a
⊕
0
=
a
{\displaystyle a\oplus 0=a}
Multiplicative annihilation,
a
⊗
0
=
0
{\displaystyle a\otimes 0=0}
For instance, a user can specify the min-plus algebra over the domain of double-precision floating point numbers with GrB_Semiring_new(&min_plus_semiring, GrB_MIN_FP64, GrB_PLUS_FP64).
Functionality
While the GraphBLAS specification generally allows significant flexibility in implementation, some functionality and implementation details are explicitly described:
GraphBLAS objects, including matrices and vectors, are opaque data structures.: 2.4 GraphBLAS Opaque Objects
Non-blocking execution mode, which permits lazy or asynchronous evaluation of certain operations.: 2.5.1 Execution modes
Masked assignment, denoted
A
⟨
M
⟩
=
B
{\displaystyle A\langle M\rangle =B}
, which assigns elements of matrix
B
{\displaystyle B}
to matrix
A
{\displaystyle A}
only in positions where the mask matrix
M
{\displaystyle M}
is non-zero.: 3.5.4 Masks
The GraphBLAS specification also prescribes that library implementations be thread-safe.: 2.5.2 Multi-threaded execution
Example code
The following is a GraphBLAS 2.1-compliant example of a breadth-first search in the C programming language.: 294
See also
Basic Linear Algebra Subprograms (BLAS)
LEMON Graph Library
References
External links
GraphBLAS Forum