Product Code Database
Example Keywords: itunes -smartphones $55
   » » Wiki: Graphblas
Tag Wiki 'Graphblas'.
Tag

GraphBLAS () is an API specification that defines standard building blocks for in the language of . GraphBLAS is built upon the notion that a can be used to represent graphs as either an or an . The GraphBLAS specification describes how (e.g. traversing and transforming graphs) can be efficiently implemented via linear algebraic methods (e.g. matrix multiplication) over different .

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 and other linear algebraic operations on sparse matrices.
(2026). 9780898719901, Society for Industrial and Applied Mathematics. .
For example, matrix-vector multiplication can be used to perform a step in a breadth-first search.

The GraphBLAS specification (and the various libraries that implement it) provides and 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 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,

9781538634721
and bioinformatics. GraphBLAS implementations have also been used in high-performance graph database applications such as FalkorDB formerly .


Specification
The GraphBLAS specification has been in development since 2013,
9781479913657
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 .


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, , and Julia programming languages.


Linear algebraic foundations
The mathematical foundations of GraphBLAS are based in linear algebra and the .
9781509035250
For additional mathematical background, see
(2018). 9780262038393, The MIT Press. .

Each graph operation in GraphBLAS operates on a , which is made up of the following elements:

Note that the zero element (i.e. the element that represents the absence of an edge in the graph) can also be reinterpreted. For example, the following algebras can be implemented in GraphBLAS:

0
-\infty
+\infty
0
0
0

All the examples above satisfy the following two conditions in their respective domains:

  • Additive identity, a \oplus 0 = a
  • Multiplicative annihilation, 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.
  • Non-blocking execution mode, which permits or asynchronous evaluation of certain operations.
  • Masked assignment, denoted A\langle M \rangle = B, which assigns elements of matrix B to matrix A only in positions where the mask matrix M is non-zero.

The GraphBLAS specification also prescribes that library implementations be .


Example code
The following is a GraphBLAS 2.1-compliant example of a breadth-first search in the C programming language.

  1. include
  2. include
  3. include
  4. include
  5. include "GraphBLAS.h"

/*

* Given a boolean n x n adjacency matrix A and a source vertex s, performs a BFS traversal
* of the graph and sets v[i] to the level in which vertex i is visited (v[s] == 1).
* If i is not reachable from s, then v[i] = 0 does not have a stored element.
* Vector v should be uninitialized on input.
*/
     
GrB_Info BFS(GrB_Vector *v, GrB_Matrix A, GrB_Index s) {
 GrB_Index n;
 GrB_Matrix_nrows(&n,A);                  // n = # of rows of A
     

 GrB_Vector_new(v,GrB_INT32,n);           // Vector v(n)
     

 GrB_Vector q;                            // vertices visited in each level
 GrB_Vector_new(&q, GrB_BOOL, n);         // Vector q(n)
 GrB_Vector_setElement(q, (bool)true, s); // q[s] = true, false everywhere else
     

 /*
  * BFS traversal and label the vertices.
  */
 int32_t level = 0;                                       // level = depth in BFS traversal
 GrB_Index nvals;
 do {
   ++level;                                               // next level (start with 1)
   GrB_apply(*v, GrB_NULL, GrB_PLUS_INT32,
             GrB_SECOND_INT32, q, level, GrB_NULL);       // v[q] = level
   GrB_vxm(q, *v, GrB_NULL, GrB_LOR_LAND_SEMIRING_BOOL,
           q, A, GrB_DESC_RC);                            // q[!v] = q ||.&& A; finds all the
                                                          // unvisited successors from current q
   GrB_Vector_nvals(&nvals, q);
 } while (nvals);                                         // if there is no successor in q, we are done.
     

 GrB_free(&q);                                            // q vector no longer needed
     

 return GrB_SUCCESS;
     
}


See also
  • Basic Linear Algebra Subprograms (BLAS)
  • LEMON Graph Library


External links

Page 1 of 1
1
Page 1 of 1
1

Account

Social:
Pages:  ..   .. 
Items:  .. 

Navigation

General: Atom Feed Atom Feed  .. 
Help:  ..   .. 
Category:  ..   .. 
Media:  ..   .. 
Posts:  ..   ..   .. 

Statistics

Page:  .. 
Summary:  .. 
1 Tags
10/10 Page Rank
5 Page Refs